(self, name, namelist)
| 1415 | |
| 1416 | class PyZipFileTests(unittest.TestCase): |
| 1417 | def assertCompiledIn(self, name, namelist): |
| 1418 | if name + 'o' not in namelist: |
| 1419 | self.assertIn(name + 'c', namelist) |
| 1420 | |
| 1421 | def requiresWriteAccess(self, path): |
| 1422 | # effective_ids unavailable on windows |
no test coverage detected