This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients kilowu, python-dev, sigi, vstinner
Date 2015-03-13.10:17:45
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <CAMpsgwbKHPcixjW-PqhH8j+QZT7GGM64aUDRRfsjuW_BH-EDVw@mail.gmail.com>
In-reply-to <20150313101429.118027.68955@psf.io>
Content
I commited a fix to repair Windows buildbots.

> Or we could reuse the file created by filename in subprocess?

I tried to pass a file descriptor from the parent to the child
process, but this option is complex. It's possible to pass a handle
with close_fds=False, but then I have to recreate a file descriptor
with a function from msvcrt.open_fshandle(). This solution looks
complex for a simple unit test.

Your solution looks simple. Would you like to work on a patch?
History
Date User Action Args
2015-03-13 10:17:45vstinnersetrecipients: + vstinner, python-dev, sigi, kilowu
2015-03-13 10:17:45vstinnerlinkissue23566 messages
2015-03-13 10:17:45vstinnercreate