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 eric.araujo, jcea, ncoghlan, r.david.murray, skrah, vstinner
Date 2011-05-05.13:34:12
SpamBayes Score 9.3921824e-07
Marked as misclassified No
Message-id <1304602453.13.0.606744262937.issue11873@psf.upfronthosting.co.za>
In-reply-to
Content
Ah ah, this bug is funny :-) test_regexp doesn't fail because of a race condition or a file system issue, but because of the regex!

The regex "ba.*" is applied on the fullname, not only on the basename. If the temporary contains "ba", the test fails :-) Replace tempfile.mkdtemp() by tempfile.mkdtemp(prefix='bar') in CommandLineTests.setUp() to always reproduce this bug.
History
Date User Action Args
2011-05-05 13:34:19vstinnersetrecipients: + vstinner, jcea, ncoghlan, eric.araujo, r.david.murray, skrah
2011-05-05 13:34:13vstinnersetmessageid: <1304602453.13.0.606744262937.issue11873@psf.upfronthosting.co.za>
2011-05-05 13:34:12vstinnerlinkissue11873 messages
2011-05-05 13:34:12vstinnercreate