v1.1.0 (2013-01-19)
-
An exception raised in
pykka.Actor.on_start()
didn't stop the actor properly. Thanks to Jay Camp for finding and fixing the bug. -
Make sure exceptions in
pykka.Actor.on_stop()
andpykka.Actor.on_failure()
is logged. -
Add
pykka.ThreadingActor.use_daemon_thread
flag for optionally running an actor on a daemon thread, so that it doesn't block the Python program from exiting. (Fixes: #14) -
Add
pykka.debug.log_thread_tracebacks()
debugging helper. (Fixes: #17)