[issue10999] os.chflags refers to stat constants, but the constants are not documented in the stat module

2011-03-10 Thread R. David Murray
R. David Murray added the comment: Thanks for the patch! -- resolution: -> fixed stage: needs patch -> committed/rejected status: open -> closed ___ Python tracker ___

[issue10999] os.chflags refers to stat constants, but the constants are not documented in the stat module

2011-03-10 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4f9213d3858b by R David Murray in branch '3.1': #10999: Add missing documentation for chflags constants to stat module docs http://hg.python.org/cpython/rev/4f9213d3858b New changeset de5d0b4f81c3 by R David Murray in branch '3.2': Merge #10999 fix

[issue10999] os.chflags refers to stat constants, but the constants are not documented in the stat module

2011-03-02 Thread Michal Nowikowski
Michal Nowikowski added the comment: Improved the patch: - moved code example up, just below S_* functions list -- Added file: http://bugs.python.org/file20973/documented-os_chflags-flags-v2.diff ___ Python tracker

[issue10999] os.chflags refers to stat constants, but the constants are not documented in the stat module

2011-02-12 Thread R. David Murray
R. David Murray added the comment: Looks good to me. I wonder if the existing example should be moved up above the description of the chmod flags, though. This update puts it even farther away from the functions it is an example of. -- ___ Python

[issue10999] os.chflags refers to stat constants, but the constants are not documented in the stat module

2011-02-11 Thread Michal Nowikowski
Michal Nowikowski added the comment: Is this patch ok? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http

[issue10999] os.chflags refers to stat constants, but the constants are not documented in the stat module

2011-01-27 Thread Michal Nowikowski
Michal Nowikowski added the comment: I have prepared a patch that: - documents flags for os.chflags function in stat module - adds links for these flags os module to stat module. -- components: +None keywords: +patch Added file: http://bugs.python.org/file20555/documented-os_chflags-fla

[issue10999] os.chflags refers to stat constants, but the constants are not documented in the stat module

2011-01-27 Thread Michal Nowikowski
Changes by Michal Nowikowski : -- nosy: +godfryd ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue10999] os.chflags refers to stat constants, but the constants are not documented in the stat module

2011-01-24 Thread R. David Murray
New submission from R. David Murray : Title pretty much says it all. The constants are there in the stat module, but they aren't documented. When they are documented the mentions in the os.chflags entry can be turned into cross reference links. -- assignee: docs@python messages: 1269