[issue9572] IOError in test_multiprocessing

2010-08-24 Thread Brett Cannon
Brett Cannon added the comment: Fixed in r84304. Thanks for catching that, Łukasz. -- ___ Python tracker ___ ___ Python-bugs-list mail

[issue9572] IOError in test_multiprocessing

2010-08-24 Thread Łukasz Czuja
Łukasz Czuja added the comment: I was just playing around with the changes you made and it seems you've overlooked a small error/typo around line 502: 502 : n elif errno == errno.EACCES: quick fix: 502 : n elif exc.errno == errno.EACCES: Hope this helps

[issue9572] IOError in test_multiprocessing

2010-08-22 Thread Brett Cannon
Brett Cannon added the comment: Fixed in r84271. I will open another issue for the locking stuff. -- resolution: -> fixed status: open -> closed ___ Python tracker ___ _

[issue9572] IOError in test_multiprocessing

2010-08-20 Thread Brett Cannon
Brett Cannon added the comment: I think what I need to do is greatly simplify the directory creation code in set_data and make it much more robust against potential race conditions against other Python processes. I think as long as I just stop trying to make a directory when it is found to ex

[issue9572] IOError in test_multiprocessing

2010-08-11 Thread Brett Cannon
Changes by Brett Cannon : -- assignee: -> brett.cannon ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://m

[issue9572] IOError in test_multiprocessing

2010-08-11 Thread R. David Murray
Changes by R. David Murray : -- nosy: +barry, brett.cannon ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:

[issue9572] IOError in test_multiprocessing

2010-08-11 Thread Florent Xicluna
Florent Xicluna added the comment: I succeeded to reproduce one time on Debian Lenny (64 bits). ~ $ make pycremoval find . -name '*.py[co]' -exec rm -f {} ';' find . -name '__pycache__' -exec rmdir {} '+' ~ $ ./python -Wd -E -bb ./Lib/test/regrtest.py -uall -rwW -l test_multiprocessing Using

[issue9572] IOError in test_multiprocessing

2010-08-11 Thread Florent Xicluna
New submission from Florent Xicluna : This error occurred on "x86 Ubuntu 3.x" buildbot. This is the 1st test on this run. http://www.python.org/dev/buildbot/all/builders/x86%20Ubuntu%203.x/builds/1699/steps/test/logs/stdio ./python -Wd -E -bb ./Lib/test/regrtest.py -uall -rwW -l == CPython 3.2a