]> granicus.if.org Git - python/commit
get_file() no longer leaks a FILE structure. If given a file descriptor, it calls...
authorKristján Valur Jónsson <kristjan@ccpgames.com>
Tue, 31 Mar 2009 17:43:39 +0000 (17:43 +0000)
committerKristján Valur Jónsson <kristjan@ccpgames.com>
Tue, 31 Mar 2009 17:43:39 +0000 (17:43 +0000)
commite1b0445ff97ef58d9888091df6c9bc2d3917ad0f
treeba29ec09b0fff42a988df8e41564940d782f27d4
parent47f27a346f0eb2bf067e8df2cedf7398985fd1a2
get_file() no longer leaks a FILE structure.  If given a file descriptor, it calls dup() to get a new handle.  Then both the FILE object and the fd can be closed.
This is important, because otherwise, the leaked FILE object will be closed on process exit, causing assertions on Windows, e.g. in the test_multiprocessing.py regression test.
Python/import.c