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 kristjan.jonsson
Recipients brett.cannon, kristjan.jonsson
Date 2009-04-02.16:08:03
SpamBayes Score 4.3787952e-07
Marked as misclassified No
Message-id <1238688485.79.0.190895395085.issue5646@psf.upfronthosting.co.za>
In-reply-to
Content
There is another issue with testing on Vista, which I have noticed but 
I don't think apply to this issue:
os.unlink(testfilename)
followed by
open(testfilename, 'w')
often fails, because the unlink() operation on vista doesn't 
immediately reflect on the disk!  You get strange and unpredictable 
regression failures because of this.  It is enough to catch the error, 
sleep for a millisecond and try again to overcome this.  If we start 
regular regression testing on Vista, this is onething that needs 
fixing, probably with a tmpfile utility function in test_support.py

Perhaps CCP could contribute a buildbot with Server2008 (=Vista) to 
test the main branches...  not making any promises.
History
Date User Action Args
2009-04-02 16:08:05kristjan.jonssonsetrecipients: + kristjan.jonsson, brett.cannon
2009-04-02 16:08:05kristjan.jonssonsetmessageid: <1238688485.79.0.190895395085.issue5646@psf.upfronthosting.co.za>
2009-04-02 16:08:04kristjan.jonssonlinkissue5646 messages
2009-04-02 16:08:03kristjan.jonssoncreate