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.
K
Kristján Valur Jónsson committed
e1b0445ff97ef58d9888091df6c9bc2d3917ad0f
Parent: 47f27a3