|
@@ -132,7 +132,7 @@ class Context(object):
|
|
|
|
|
|
@property
|
|
@property
|
|
def children(self):
|
|
def children(self):
|
|
- # children must be an empy list for every thread
|
|
|
|
|
|
+ # children must be an empty list for every thread
|
|
if self._children is None:
|
|
if self._children is None:
|
|
self._children = []
|
|
self._children = []
|
|
return self._children
|
|
return self._children
|
|
@@ -383,7 +383,7 @@ class Task(object):
|
|
_task_stack.pop()
|
|
_task_stack.pop()
|
|
|
|
|
|
def __reduce__(self):
|
|
def __reduce__(self):
|
|
- # - tasks are pickled into the name of the task only, and the reciever
|
|
|
|
|
|
+ # - tasks are pickled into the name of the task only, and the receiver
|
|
# - simply grabs it from the local registry.
|
|
# - simply grabs it from the local registry.
|
|
# - in later versions the module of the task is also included,
|
|
# - in later versions the module of the task is also included,
|
|
# - and the receiving side tries to import that module so that
|
|
# - and the receiving side tries to import that module so that
|