(self, f)
| 358 | |
| 359 | @ClosedFDRaises |
| 360 | def testErrnoOnClosedReadinto(self, f): |
| 361 | f = self.ReopenForRead() |
| 362 | a = array('b', b'x'*10) |
| 363 | f.readinto(a) |
| 364 | |
| 365 | @strace_helper.requires_strace() |
| 366 | def test_syscalls_read(self): |
nothing calls this directly
no test coverage detected