(self, hashId)
| 48 | self.lock = RLock() |
| 49 | |
| 50 | def task_done(self, hashId): |
| 51 | Queue.Queue.task_done(self) |
| 52 | try: |
| 53 | with self.lock: |
| 54 | del self.pending[hashId] |
| 55 | except KeyError: |
| 56 | pass |
| 57 | |
| 58 | def get(self, block=True, timeout=None): |
| 59 | retval = Queue.Queue.get(self, block, timeout) |
no outgoing calls
no test coverage detected