(self)
| 935 | @unittest.skipUnless(hasattr(posix, 'strerror'), |
| 936 | 'test needs posix.strerror()') |
| 937 | def test_strerror(self): |
| 938 | self.assertTrue(posix.strerror(0)) |
| 939 | |
| 940 | @unittest.skipUnless(hasattr(posix, 'pipe'), 'test needs posix.pipe()') |
| 941 | def test_pipe(self): |
nothing calls this directly
no test coverage detected