(self, module)
| 2443 | |
| 2444 | class SkipDocTestCase(DocTestCase): |
| 2445 | def __init__(self, module): |
| 2446 | self.module = module |
| 2447 | DocTestCase.__init__(self, None) |
| 2448 | |
| 2449 | def setUp(self): |
| 2450 | self.skipTest("DocTestSuite will not work with -O2 and above") |