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 loewis
Recipients
Date 2007-03-23.15:31:14
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
The test suite patch (54482) broke the windows build. The assertion

self.assertEqual(len(all), 4)

fails because it finds 5 directories (link is a directory), then the rest of the 
code is not executed. In turn, the tear-down code is not run, leaving the directories
behind. This causes subsequent tests to fail.

When fixing the code, I recommend to move the tear-down code into the tearDown
method of the test, to make sure it is always run.
History
Date User Action Args
2007-08-23 15:43:45adminlinkissue1273829 messages
2007-08-23 15:43:45admincreate