commit | 270581905cab2747ae8f7ee945301d6a29509cc7 | [log] [tgz] |
---|---|---|
author | Victor Stinner <vstinner@redhat.com> | Tue Jun 05 00:36:42 2018 +0200 |
committer | GitHub <noreply@github.com> | Tue Jun 05 00:36:42 2018 +0200 |
tree | 167ca14b175eeee073b478900054eba15fdac671 | |
parent | 146351860a34b3cde387930a360e57391e7b99f3 [diff] |
bpo-18174: Fix file descriptor leaks in tests (GH-7408) * test_tempfile.test_no_leak_fd() mocks os.close() but it doesn't call the original os.close() method and so leaks an open file descriptor. Fix the test by calling the original os.close() function. * test_posix.test_fdopen_directory(): close the directory file descriptor when the test completes.