[issue24617] os.makedirs()'s [mode] not correct

2016-06-10 Thread Martin Panter
Changes by Martin Panter : -- resolution: -> fixed stage: commit review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue24617] os.makedirs()'s [mode] not correct

2016-06-10 Thread Martin Panter
Martin Panter added the comment: Okay I will avoid this problem in the future. I often use the mq extension, but I can reset the user and date with that. -- ___ Python tracker _

[issue24617] os.makedirs()'s [mode] not correct

2016-06-10 Thread Berker Peksag
Berker Peksag added the comment: Please use "hg import --no-commit" in the future. Since Mercurial doesn't keep committer's information it's hard to see who actually committed the patch in case of a problem. -- nosy: +berker.peksag ___ Python tracke

[issue24617] os.makedirs()'s [mode] not correct

2016-06-10 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4fc7753efc89 by Tommy Beadle in branch '2.7': Issue #24617: Add comment for os.mkdir about mode quirks https://hg.python.org/cpython/rev/4fc7753efc89 New changeset e6093676e93b by Tommy Beadle in branch '3.5': Issue #24617: Add comment for os.mkdir

[issue24617] os.makedirs()'s [mode] not correct

2016-06-09 Thread Martin Panter
Martin Panter added the comment: This version of the patch looks good to me -- stage: patch review -> commit review ___ Python tracker ___ ___

[issue24617] os.makedirs()'s [mode] not correct

2016-06-08 Thread Tommy Beadle
Tommy Beadle added the comment: I think that the documentation should be updated to reflect issue19930's change when that is actually committed, not as a part of this change. -- ___ Python tracker

[issue24617] os.makedirs()'s [mode] not correct

2016-06-08 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: See also issue19930. -- nosy: +serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailin

[issue24617] os.makedirs()'s [mode] not correct

2016-06-08 Thread Tommy Beadle
Changes by Tommy Beadle : Added file: http://bugs.python.org/file43305/0001-Issue-24617-Add-comment-for-os.makedirs-about-certai.patch ___ Python tracker ___ ___

[issue24617] os.makedirs()'s [mode] not correct

2016-06-04 Thread Martin Panter
Martin Panter added the comment: I think it would be good to move the sentence about FileExistsError away from your new paragraph about *mode*. Also, I would try to make the hyperlink a bit more explicit and descriptive, maybe The *mode* parameter is passed to :func:`mkdir`; see :ref:`the mkdi

[issue24617] os.makedirs()'s [mode] not correct

2016-06-03 Thread Tommy Beadle
Tommy Beadle added the comment: I've fixed the apostrophe issue by avoiding it's use. I've moved the text about the mode to mkdir and added a link to it from makedirs. -- Added file: http://bugs.python.org/file43180/0001-Issue-24617-Add-comment-for-os.makedirs-about-certai.patch

[issue24617] os.makedirs()'s [mode] not correct

2016-06-03 Thread Martin Panter
Martin Panter added the comment: Thanks for the patch Tommy. One minor quirk that bugs me: *mode*'s gets marked up with an opening quote rather than an apostrophe. Perhaps we can change it to a Unicode apostrophe (*mode*’s). Another alternative would be: the octal representation of *mode*. Bu

[issue24617] os.makedirs()'s [mode] not correct

2016-06-03 Thread Tommy Beadle
Changes by Tommy Beadle : -- nosy: +tbeadle ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python

[issue24617] os.makedirs()'s [mode] not correct

2016-06-02 Thread Tommy Beadle
Changes by Tommy Beadle : -- keywords: +patch Added file: http://bugs.python.org/file43115/0001-Issue-24617-Add-comment-for-os.makedirs-about-certai.patch ___ Python tracker ___

[issue24617] os.makedirs()'s [mode] not correct

2015-07-12 Thread eryksun
eryksun added the comment: This is not a bug, but perhaps the documentation could further clarify that the set of valid values for the mode parameter is platform dependent. The [POSIX specification][1] for mkdir() states that "[w]hen bits in mode other than the file permission bits are set, th

[issue24617] os.makedirs()'s [mode] not correct

2015-07-12 Thread John Jones
New submission from John Jones: os.makedirs() gives the optional variable mode to set the permissions on the directories it creates. While it seems to work for all triplet octal values (777,755,etc) it doesn't seem to work on values with the sticky bit (1777,1755,etc) I know that to set the v