[issue2236] Distutils' mkpath implementation ignoring the "mode" parameter

2010-09-18 Thread Senthil Kumaran
Senthil Kumaran added the comment: Buildbots are green now after fixing the mode issue in the tests in r84889,r84890,r84891 -- status: open -> closed ___ Python tracker ___

[issue2236] Distutils' mkpath implementation ignoring the "mode" parameter

2010-09-18 Thread Carlos Henrique Romano
Carlos Henrique Romano 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 ___ Python tracker

[issue2236] Distutils' mkpath implementation ignoring the "mode" parameter

2010-09-18 Thread Antoine Pitrou
Antoine Pitrou added the comment: All buildbots are red. -- assignee: tarek -> orsenthil nosy: +pitrou ___ Python tracker ___ ___ Pyth

[issue2236] Distutils' mkpath implementation ignoring the "mode" parameter

2010-09-17 Thread Senthil Kumaran
Senthil Kumaran 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 _

[issue2236] Distutils' mkpath implementation ignoring the "mode" parameter

2010-09-17 Thread R. David Murray
R. David Murray 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 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 -> closed _

[issue2236] Distutils' mkpath implementation ignoring the "mode" parameter

2010-09-14 Thread Carlos Henrique Romano
Carlos Henrique Romano added the comment: Improving tests -- Added file: http://bugs.python.org/file18887/python-distutils_mkpath_filemode-v2.diff ___ Python tracker ___ ___

[issue2236] Distutils' mkpath implementation ignoring the "mode" parameter

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

[issue2236] Distutils' mkpath implementation ignoring the "mode" parameter

2010-09-14 Thread Carlos Henrique Romano
Carlos Henrique Romano 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 __

[issue2236] Distutils' mkpath implementation ignoring the "mode" parameter

2010-08-26 Thread Greg Ward
Greg Ward 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-08-26 Thread Éric Araujo
Changes by Éric Araujo : -- versions: +Python 3.2 -Python 2.6, Python 3.0 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[issue2236] Distutils' mkpath implementation ignoring the "mode" parameter

2010-06-28 Thread Greg Ward
Greg Ward 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 tracker

[issue2236] Distutils' mkpath implementation ignoring the "mode" parameter

2010-06-12 Thread Éric Araujo
Éric Araujo 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 ___ __

[issue2236] Distutils' mkpath implementation ignoring the "mode" parameter

2009-02-04 Thread Akira Kitada
Akira Kitada 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 __

[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: python2.5-distutils_mkpath_file