| 2395 | pass |
| 2396 | |
| 2397 | class CustomQueueProtocol: |
| 2398 | def __init__(self, maxsize=0): |
| 2399 | self.queue = queue.Queue(maxsize) |
| 2400 | |
| 2401 | def __getattr__(self, attribute): |
| 2402 | queue = object.__getattribute__(self, 'queue') |
| 2403 | return getattr(queue, attribute) |
| 2404 | |
| 2405 | class CustomQueueFakeProtocol(CustomQueueProtocol): |
| 2406 | # An object implementing the minimial Queue API for |
no outgoing calls
searching dependent graphs…