Searched refs:check_interrupted_write (Results 1 – 3 of 3) sorted by relevance
/external/python/cpython2/Lib/test/ |
D | test_io.py | 3159 def check_interrupted_write(self, item, bytes, **fdopen_kwargs): member in SignalsTest 3204 self.check_interrupted_write(b"xy", b"xy", mode="wb", buffering=0) 3207 self.check_interrupted_write(b"xy", b"xy", mode="wb") 3210 self.check_interrupted_write("xy", b"xy", mode="w", encoding="ascii")
|
/external/python/cpython3/Lib/test/ |
D | test_io.py | 4132 def check_interrupted_write(self, item, bytes, **fdopen_kwargs): member in SignalsTest 4185 self.check_interrupted_write(b"xy", b"xy", mode="wb", buffering=0) 4188 self.check_interrupted_write(b"xy", b"xy", mode="wb") 4191 self.check_interrupted_write("xy", b"xy", mode="w", encoding="ascii")
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.7.3rc1.rst | 741 Fix a race condition in ``check_interrupted_write()`` of test_io: create
|