示例#1
0
 def __str__(self):
     return (
         "**********************************\n" +
         ("ThreadQueueAction(%s):\n" % id(self)) +
         PendingAction.__str__(self) +
         "\n**********************************"
         )
示例#2
0
 def __init__(self, action, *args, **keywords):
     PendingAction.__init__(self, action, *args, **keywords)
     _PoolMixin.__init__(self)
     return