sbp / phenny

Python IRC bot
http://inamidst.com/phenny/
380 stars 233 forks source link

Nonthreaded reload #5

Closed ayust closed 13 years ago

ayust commented 13 years ago

The reload module currently uses the default command processing behavior which spawns a thread. Some modules may be unhappy if they're reload()'d in a different thread than the main phenny thread - for instance sqlite3 doesn't like being shared among threads.

sbp commented 13 years ago

Included, thanks!