(self)
| 88 | |
| 89 | class BaseTestCase(unittest.TestCase): |
| 90 | def setUp(self): |
| 91 | # Try to minimize the number of children we have so this test |
| 92 | # doesn't crash on some buildbots (Alphas in particular). |
| 93 | support.reap_children() |
| 94 | |
| 95 | def tearDown(self): |
| 96 | if not mswindows: |