Message 413518 - Python tracker

Message413518

Author terry.reedy
Recipients docs@python, eric.araujo, mdk, terry.reedy, usetohandletrush
Date 2022-02-19.00:20:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1645230005.38.0.415257600307.issue46782@roundup.psfhosted.org>
In-reply-to
Content
The conversions from 0o777 to 511 in 3.10 and 3.11 but not in 3.9 are these:

https://docs.python.org/3/library/pathlib.html#pathlib.Path.mkdir
  Path.mkdir(mode=511, parents=False, exist_ok=False)

https://docs.python.org/3/library/os.html#os.mkdir
  os.mkdir(path, mode=511, *, dir_fd=None)

I don't know whether different sphinx versions are used for different versions of the docs.
History
Date User Action Args
2022-02-19 00:20:05terry.reedysetrecipients: + terry.reedy, eric.araujo, docs@python, mdk, usetohandletrush
2022-02-19 00:20:05terry.reedysetmessageid: <1645230005.38.0.415257600307.issue46782@roundup.psfhosted.org>
2022-02-19 00:20:05terry.reedylinkissue46782 messages
2022-02-19 00:20:05terry.reedycreate