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 Michael.Felt, vstinner
Date 2019-01-04.22:42:50
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1546641770.58.0.407709063686.issue35633@roundup.psfhosted.org>
In-reply-to
Content
Does the test pass if you open the file in read+write ("w+b") mode rather than write-only ("wb") mode?

I'm talking about this line:

open(support.TESTFN, 'wb')

Note: if you want to test, you have the modify the mode twice:
  "with open('%s', 'wb') as f:" % support.TESTFN,
and
  with open(support.TESTFN, 'wb') as f:
History
Date User Action Args
2019-01-04 22:42:51vstinnersetrecipients: + vstinner, Michael.Felt
2019-01-04 22:42:50vstinnersetmessageid: <1546641770.58.0.407709063686.issue35633@roundup.psfhosted.org>
2019-01-04 22:42:50vstinnerlinkissue35633 messages
2019-01-04 22:42:50vstinnercreate