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 nirs
Recipients
Date 2005-07-17.19:42:09
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
makedirs check if a directory exists, and call mkdir to create it. In 
rare cases, the directory might have been created by another 
process or thread in the time passed from the exists() call to the 
mkdir() call.

To prevent this rare race condition, use try: expect: to create the 
directory, then ignore "File exists" errors, which mean the directory 
was there.
History
Date User Action Args
2007-08-23 15:43:31adminlinkissue1239890 messages
2007-08-23 15:43:31admincreate