commit | 045e4579928768c0c40ae174aaa3bec1a53dc431 | [log] [tgz] |
---|---|---|
author | Richard Oudkerk <shibturn@gmail.com> | Mon Jun 10 16:27:45 2013 +0100 |
committer | Richard Oudkerk <shibturn@gmail.com> | Mon Jun 10 16:27:45 2013 +0100 |
tree | a0eced1d868f205a6aef4b2c13868ea22271968b | |
parent | 0e6283e68a9d6035e68a91904f13733df512dbce [diff] [blame] |
Issue #18174: Fix fd leaks in tests.
diff --git a/Lib/test/test_uuid.py b/Lib/test/test_uuid.py index 6fe2fe5..9de3d78 100644 --- a/Lib/test/test_uuid.py +++ b/Lib/test/test_uuid.py
@@ -448,6 +448,7 @@ else: os.close(fds[1]) + self.addCleanup(os.close, fds[0]) parent_value = uuid.uuid4().hex os.waitpid(pid, 0) child_value = os.read(fds[0], 100)