(self)
| 115 | @requires_alarm |
| 116 | @unittest.skipUnless(hasattr(os, "pipe"), "requires os.pipe()") |
| 117 | def test_interrupted_write_text(self): |
| 118 | self.check_interrupted_write("xy", b"xy", mode="w", encoding="ascii") |
| 119 | |
| 120 | @support.no_tracing |
| 121 | def check_reentrant_write(self, data, **fdopen_kwargs): |
nothing calls this directly
no test coverage detected