[issue1367] mkdir+chdir problem in multiple threads

Jean-Paul Calderone report at bugs.python.org
Wed Oct 31 16:01:07 CET 2007


Jean-Paul Calderone added the comment:

This isn't a bug in Python.  Working directory, which os.chdir modifies,
is process-global.  One of your threads makes a directory, then gets
suspended while another one makes a different directory and changes into
it, then the first tries to change into its directory and fails.

----------
nosy: +exarkun

__________________________________
Tracker <report at bugs.python.org>
<http://bugs.python.org/issue1367>
__________________________________


More information about the Python-bugs-list mailing list