(self)
| 3636 | class TestManagerExceptions(unittest.TestCase): |
| 3637 | # Issue 106558: Manager exceptions avoids creating cyclic references. |
| 3638 | def setUp(self): |
| 3639 | with warnings_helper.ignore_fork_in_thread_deprecation_warnings(): |
| 3640 | self.mgr = multiprocessing.Manager() |
| 3641 | |
| 3642 | def tearDown(self): |
| 3643 | self.mgr.shutdown() |