Searched refs:check_interrupted_write (Results 1 – 3 of 3) sorted by relevance
/aosp_15_r20/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")
|
/aosp_15_r20/external/python/cpython3/Lib/test/ |
D | test_io.py | 4407 def check_interrupted_write(self, item, bytes, **fdopen_kwargs): member in SignalsTest 4487 self.check_interrupted_write(b"xy", b"xy", mode="wb", buffering=0) 4492 self.check_interrupted_write(b"xy", b"xy", mode="wb") 4497 self.check_interrupted_write("xy", b"xy", mode="w", encoding="ascii")
|
/aosp_15_r20/external/python/cpython3/Misc/NEWS.d/ |
D | 3.8.0a1.rst | 6775 Fix a race condition in ``check_interrupted_write()`` of test_io: create
|