(self)
| 3657 | |
| 3658 | @warnings_helper.ignore_fork_in_thread_deprecation_warnings() |
| 3659 | def test_dispatch(self): |
| 3660 | if gc.isenabled(): |
| 3661 | gc.disable() |
| 3662 | self.addCleanup(gc.enable) |
| 3663 | try: |
| 3664 | multiprocessing.managers.dispatch(FakeConnection(), None, None) |
| 3665 | except pyqueue.Empty as e: |
| 3666 | wr = weakref.ref(e) |
| 3667 | self.assertEqual(wr(), None) |
| 3668 | |
| 3669 | # |
| 3670 | # |
nothing calls this directly
no test coverage detected