Avoid circular reference
it clogs pickling and garbage-collecting
(cherry picked from commit 42f690f966
)
This commit is contained in:
parent
fe5a7402a9
commit
ff49d9fa95
@ -1,4 +1,3 @@
|
|||||||
|
|
||||||
init python:
|
init python:
|
||||||
class Parcel(object):
|
class Parcel(object):
|
||||||
"""
|
"""
|
||||||
@ -18,7 +17,10 @@ init python:
|
|||||||
self.wait = wait
|
self.wait = wait
|
||||||
self.label = label
|
self.label = label
|
||||||
self.func = func
|
self.func = func
|
||||||
self.queue = mailbox.parcels
|
|
||||||
|
@property
|
||||||
|
def queue(self):
|
||||||
|
return mailbox.parcels
|
||||||
|
|
||||||
def send(self):
|
def send(self):
|
||||||
self.mailed = True
|
self.mailed = True
|
||||||
|
Loading…
Reference in New Issue
Block a user