(self)
| 544 | # skip test rather than accept PermissionError from all platforms |
| 545 | @unittest.skipIf(platform.system() == "AIX", "AIX returns PermissionError") |
| 546 | def test_lockf(self): |
| 547 | self._lock(fcntl.lockf, "lockf") |
| 548 | |
| 549 | def test_flock(self): |
| 550 | self._lock(fcntl.flock, "flock") |