[issue2236] Distutils' mkpath implementation ignoring the mode parameter

2010-09-18 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: All buildbots are red. -- assignee: tarek - orsenthil nosy: +pitrou ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2236 ___

[issue2236] Distutils' mkpath implementation ignoring the mode parameter

2010-09-18 Thread Carlos Henrique Romano
Carlos Henrique Romano chrom...@gmail.com added the comment: Updating test in order to consider umask, this is supposed to fix buildbot issues. -- Added file: http://bugs.python.org/file18927/python-distutils_mkpath_filemode-test-update.diff ___

[issue2236] Distutils' mkpath implementation ignoring the mode parameter

2010-09-18 Thread Senthil Kumaran
Senthil Kumaran orsent...@gmail.com added the comment: Buildbots are green now after fixing the mode issue in the tests in r84889,r84890,r84891 -- status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2236

[issue2236] Distutils' mkpath implementation ignoring the mode parameter

2010-09-17 Thread Senthil Kumaran
Senthil Kumaran orsent...@gmail.com added the comment: Fixed for py3k in r84861, release31-maint in r84863 and release27-maint in r84862. Thanks for patch, Carlos Henrique Romano. -- nosy: +orsenthil resolution: - fixed stage: unit test needed - committed/rejected status: open -

[issue2236] Distutils' mkpath implementation ignoring the mode parameter

2010-09-17 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: This update appears to be turning the windows buildbots red. See for example http://www.python.org/dev/buildbot/all/builders/x86 XP-4 3.1/builds/1230/steps/test/logs/stdio. -- nosy: +r.david.murray status: closed - open

[issue2236] Distutils' mkpath implementation ignoring the mode parameter

2010-09-17 Thread Senthil Kumaran
Senthil Kumaran orsent...@gmail.com added the comment: I have skipped the mode tests on windows platforms, as they are not really applicable. Lets see the buildbots status and close the bug. -- ___ Python tracker rep...@bugs.python.org

[issue2236] Distutils' mkpath implementation ignoring the mode parameter

2010-09-14 Thread Carlos Henrique Romano
Carlos Henrique Romano chrom...@gmail.com added the comment: Patch updated, now it includes test. -- nosy: +chromano Added file: http://bugs.python.org/file18885/python-distutils_mkpath_filemode-v1.diff ___ Python tracker rep...@bugs.python.org

[issue2236] Distutils' mkpath implementation ignoring the mode parameter

2010-09-14 Thread Carlos Henrique Romano
Changes by Carlos Henrique Romano chrom...@gmail.com: Removed file: http://bugs.python.org/file18885/python-distutils_mkpath_filemode-v1.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2236 ___

[issue2236] Distutils' mkpath implementation ignoring the mode parameter

2010-08-26 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- versions: +Python 3.2 -Python 2.6, Python 3.0 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2236 ___

[issue2236] Distutils' mkpath implementation ignoring the mode parameter

2010-08-26 Thread Greg Ward
Greg Ward g...@gerg.ca added the comment: I'm unassigning this since I no longer know how to commit changes to Python. Sorry, I just haven't kept track over the years, I don't follow python-dev anymore, and I could not find documentation explaining where I should commit what sort of changes.

[issue2236] Distutils' mkpath implementation ignoring the mode parameter

2010-06-28 Thread Greg Ward
Greg Ward g...@gerg.ca added the comment: Is it too late for 2.7? I have no idea. It does look as though someone has written unit tests for distutils, so the patch needs a test change too. Henrique? -- stage: - unit test needed ___ Python

[issue2236] Distutils' mkpath implementation ignoring the mode parameter

2010-06-12 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Confirmed in trunk (2.7rc2), py3k (3.2), irrelevant for distutils2. Is it too late for 2.7? -- nosy: +merwok ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2236

[issue2236] Distutils' mkpath implementation ignoring the mode parameter

2009-02-04 Thread Akira Kitada
Akira Kitada akit...@gmail.com added the comment: Still present in 2.6/3.0 -- nosy: +akitada, tarek type: resource usage - behavior versions: +Python 2.6, Python 2.7, Python 3.0, Python 3.1 -Python 2.5 ___ Python tracker rep...@bugs.python.org

[issue2236] Distutils' mkpath implementation ignoring the mode parameter

2008-03-20 Thread Sean Reifschneider
Sean Reifschneider [EMAIL PROTECTED] added the comment: This patch looks good to me. Greg? -- assignee: - gward components: +Distutils -Library (Lib) keywords: +easy nosy: +gward, jafo priority: - normal __ Tracker [EMAIL PROTECTED]

[issue2236] Distutils' mkpath implementation ignoring the mode parameter

2008-03-04 Thread Henrique Romano
New submission from Henrique Romano: The default value for mkpath's mode parameter is 0777 but it isn't used at any place; attached is a patch that just pass the parameter to os.mkdir call, this seems to fix the problem. -- components: Library (Lib) files: