| 3627 | |
| 3628 | |
| 3629 | class FakeConnection: |
| 3630 | def send(self, payload): |
| 3631 | pass |
| 3632 | |
| 3633 | def recv(self): |
| 3634 | return '#ERROR', pyqueue.Empty() |
| 3635 | |
| 3636 | class TestManagerExceptions(unittest.TestCase): |
| 3637 | # Issue 106558: Manager exceptions avoids creating cyclic references. |
no outgoing calls
searching dependent graphs…