[issue9281] Race condition with mkdir/makedirs in distutils2

2010-12-15 Thread Éric Araujo
Éric Araujo added the comment: Do you want to backport the new makedirs function to d2/_backport/__init__.py? -- keywords: +easy -patch stage: patch review -> needs patch ___ Python tracker

[issue9281] Race condition with mkdir/makedirs in distutils2

2010-11-27 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: I suggest to backport only makedirs() function. -- ___ Python tracker ___ ___ P

[issue9281] Race condition with mkdir/makedirs in distutils2

2010-11-27 Thread Éric Araujo
Éric Araujo added the comment: We could backport the new version of the function in our compat module (I’d rather not backport the whole os module), if you think it’s worth it. -- ___ Python tracker __

[issue9281] Race condition with mkdir/makedirs in distutils2

2010-11-27 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: Maybe issue #9299 could be fixed first. Next you could backport new os.makedirs() in distutils2/_backport/os.py. -- ___ Python tracker ___

[issue9281] Race condition with mkdir/makedirs in distutils2

2010-11-05 Thread Éric Araujo
Éric Araujo added the comment: Fixed in r86244 (py3k), r86245 (3.1), r86246 (2.7), thanks! For distutils2, I’d like to commit a comprehensive fix. Do you want to expand your patch to cover all instances of mkdir/makedirs? -- components: -Distutils status: pending -> open title: Race