* morituri/common/task.py:

Add documentation.
	  Use a _task counter instead of duplicating tasks to
	  __tasks; this allows us to add tasks after starting.
	  Catch Exceptions during next() so that we don't get
	  stuck in a main loop that doesn't exit.
	  Raise it later when we're done.
This commit is contained in:
Thomas Vander Stichele
2009-05-25 14:51:00 +00:00
parent 10226d062d
commit ed7d5cedad
2 changed files with 50 additions and 15 deletions

View File

@@ -1,3 +1,13 @@
2009-05-25 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/task.py:
Add documentation.
Use a _task counter instead of duplicating tasks to
__tasks; this allows us to add tasks after starting.
Catch Exceptions during next() so that we don't get
stuck in a main loop that doesn't exit.
Raise it later when we're done.
2009-05-25 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/common.py: