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 hynek
Recipients amcnabb, hynek, neologix, r.david.murray
Date 2012-05-16.19:21:42
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1337196103.57.0.353702019022.issue14702@psf.upfronthosting.co.za>
In-reply-to
Content
I guess this is the magic in mkdir -p:

mkdir("expert", 0755)                   = -1 EACCES (Permission denied)
chdir("expert")                         = 0
mkdir("tmp", 0755)                      = -1 EEXIST (File exists)

I'm not sure how I feel about that. I think we have more or less a policy in os & shutil not to change directories unless really necessary (like make_archive).
History
Date User Action Args
2012-05-16 19:21:43hyneksetrecipients: + hynek, amcnabb, r.david.murray, neologix
2012-05-16 19:21:43hyneksetmessageid: <1337196103.57.0.353702019022.issue14702@psf.upfronthosting.co.za>
2012-05-16 19:21:43hyneklinkissue14702 messages
2012-05-16 19:21:42hynekcreate