diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-10-31 01:19:53 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-10-31 01:19:53 (GMT) |
commit | d8fc2e1aeb3bbd3f08cdb2ea47c2122ca5f99800 (patch) | |
tree | 68585a86cf4964659dbba165b24df58258970967 | |
parent | bf0757137f01f570826ee016cb6a77b4ccc57e69 (diff) | |
download | cpython-d8fc2e1aeb3bbd3f08cdb2ea47c2122ca5f99800.zip cpython-d8fc2e1aeb3bbd3f08cdb2ea47c2122ca5f99800.tar.gz cpython-d8fc2e1aeb3bbd3f08cdb2ea47c2122ca5f99800.tar.bz2 |
this test manages the fds itself
-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() |