diff options
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_io.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_io.py b/Lib/test/test_io.py index d1973e5..1ea57ac 100644 --- a/Lib/test/test_io.py +++ b/Lib/test/test_io.py @@ -2597,6 +2597,7 @@ class SignalsTest(unittest.TestCase): t = threading.Thread(target=_read) t.daemon = True r, w = os.pipe() + fdopen_kwargs["closefd"] = False try: wio = self.io.open(w, **fdopen_kwargs) t.start() |