commit | d8fc2e1aeb3bbd3f08cdb2ea47c2122ca5f99800 | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Sun Oct 31 01:19:53 2010 +0000 |
committer | Benjamin Peterson <benjamin@python.org> | Sun Oct 31 01:19:53 2010 +0000 |
tree | 68585a86cf4964659dbba165b24df58258970967 | |
parent | bf0757137f01f570826ee016cb6a77b4ccc57e69 [diff] [blame] |
this test manages the fds itself
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 @@ 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()