[issue33971] os.mknod is subject to "umask"

2019-05-06 Thread anthony shaw
anthony shaw added the comment: NB: This issue would be good for PyCon sprints -- nosy: +anthonypjshaw ___ Python tracker ___ ___

[issue33971] os.mknod is subject to "umask"

2019-05-06 Thread anthony shaw
Change by anthony shaw : -- assignee: docs@python -> Mariatta nosy: +Mariatta ___ Python tracker ___ ___ Python-bugs-list mailing

[issue33971] os.mknod is subject to "umask"

2018-06-26 Thread James Stevens
New submission from James Stevens : As per the underlying "libc" call, the node created with "mknod" is subjected to the user's current umask setting. This is not made clear in the Python documentation, but the "libc" documentation makes this clear (see attached). -- assignee: