(self)
| 269 | self.assertEqual(cm.exception.errno, errno.EBADF) |
| 270 | |
| 271 | def test_fd_non_inheritable(self): |
| 272 | epoll = select.epoll() |
| 273 | self.addCleanup(epoll.close) |
| 274 | self.assertEqual(os.get_inheritable(epoll.fileno()), False) |
| 275 | |
| 276 | |
| 277 | if __name__ == "__main__": |
nothing calls this directly
no test coverage detected