[issue1470] py3k unit tests are removing %TEMP% dir on Windows

2007-11-19 Thread Christian Heimes
Christian Heimes added the comment: Thanks, I've changed the code slightly. __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list Unsubscr

[issue1470] py3k unit tests are removing %TEMP% dir on Windows

2007-11-19 Thread Martin v. Löwis
Martin v. Löwis added the comment: It seems that this patch has broken a lot of buildbots, e.g. http://www.python.org/dev/buildbot/all/x86%20gentoo%20trunk/builds/2625/step-test/0 -- nosy: +loewis __ Tracker <[EMAIL PROTECTED]>

[issue1470] py3k unit tests are removing %TEMP% dir on Windows

2007-11-19 Thread Christian Heimes
Christian Heimes added the comment: My bad, os.removedirs is removing all parent directories until it hits a non empty dir. Fixed in r59063 and r59064 -- resolution: -> fixed status: open -> closed versions: +Python 2.6 __ Tracker <[EMAIL PROTECTED]>

[issue1470] py3k unit tests are removing %TEMP% dir on Windows

2007-11-19 Thread Christian Heimes
Christian Heimes added the comment: I may have nailed down the issue to test_shutil.test_copytree_simple __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bug

[issue1470] py3k unit tests are removing %TEMP% dir on Windows

2007-11-19 Thread Christian Heimes
New submission from Christian Heimes: The unit test suite of py3k is removing the official %TEMP% directory of Windows. It's not only causing errors in the test suite but also creating havoc with other apps. I'm not sure if it is related to my PCbuild9 or some changes to the unit test suite. Sin