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 kilowu
Recipients kilowu, python-dev, sigi, vstinner
Date 2015-03-13.03:39:53
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1426217993.34.0.223400152898.issue23566@psf.upfronthosting.co.za>
In-reply-to
Content
Or we could reuse the file created by filename in subprocess?

if filename:
    file = open(filename, "wb")
    if use_fd:
        file = file.fileno()
else:
    file = None

In this case, we need to pass two arguments(both filename and a bool use_fd) to check_xxx functions.
History
Date User Action Args
2015-03-13 03:39:53kilowusetrecipients: + kilowu, vstinner, python-dev, sigi
2015-03-13 03:39:53kilowusetmessageid: <1426217993.34.0.223400152898.issue23566@psf.upfronthosting.co.za>
2015-03-13 03:39:53kilowulinkissue23566 messages
2015-03-13 03:39:53kilowucreate