(self, name, namelist)
| 1436 | |
| 1437 | class PyZipFileTests(unittest.TestCase): |
| 1438 | def assertCompiledIn(self, name, namelist): |
| 1439 | if name + 'o' not in namelist: |
| 1440 | self.assertIn(name + 'c', namelist) |
| 1441 | |
| 1442 | def requiresWriteAccess(self, path): |
| 1443 | # effective_ids unavailable on windows |
no test coverage detected