(self)
| 815 | @unittest.skipIf(sys.platform == "win32", |
| 816 | "subprocess doesn't support pass_fds on Windows") |
| 817 | def test_register_fd(self): |
| 818 | with tempfile.TemporaryFile('wb+') as fp: |
| 819 | self.check_register(fd=fp.fileno()) |
| 820 | |
| 821 | def test_register_threads(self): |
| 822 | self.check_register(all_threads=True) |
nothing calls this directly
no test coverage detected