| 1053 | # can be called any time the GC may run. |
| 1054 | |
| 1055 | class Circular(object): |
| 1056 | def __init__(self): |
| 1057 | self.circular = self |
| 1058 | |
| 1059 | def __del__(self): |
| 1060 | q.put(next(gen)) |
| 1061 | |
| 1062 | while True: |
| 1063 | o = Circular() |
no outgoing calls
searching dependent graphs…