[issue9572] IOError in test_multiprocessing

Łukasz Czuja report at bugs.python.org
Tue Aug 24 09:50:45 CEST 2010


Łukasz Czuja <lukasz at czuja.pl> 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.

----------
nosy: +sniffer

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue9572>
_______________________________________


More information about the Python-bugs-list mailing list