[issue24878] Add docstrings to selected named tuples

2015-08-23 Thread Raymond Hettinger
Raymond Hettinger added the comment: Thanks Petr -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24878 ___ ___ Python-bugs-list mailing list

[issue24878] Add docstrings to selected named tuples

2015-08-23 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4432c441b639 by Raymond Hettinger in branch 'default': Issue #24878: Fix typos and line wrap https://hg.python.org/cpython/rev/4432c441b639 -- ___ Python tracker rep...@bugs.python.org

[issue24878] Add docstrings to selected named tuples

2015-08-18 Thread Petr Viktorin
Petr Viktorin added the comment: I see some typos in aifc.py: +_aifc_params.sampwidth.__doc__ = 'Ample width in bytes' +_aifc_params.compname.__doc__ = (A human-readable version ofcompression type Should that be Sample width and of compression? -- nosy: +encukou

[issue24878] Add docstrings to selected named tuples

2015-08-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset 40f2bbb922e6 by Raymond Hettinger in branch 'default': Issue #24878: Add docstrings to selected namedtuples https://hg.python.org/cpython/rev/40f2bbb922e6 -- nosy: +python-dev ___ Python tracker

[issue24878] Add docstrings to selected named tuples

2015-08-17 Thread Raymond Hettinger
Changes by Raymond Hettinger raymond.hettin...@gmail.com: -- resolution: - fixed stage: patch review - resolved status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24878 ___

[issue24878] Add docstrings to selected named tuples

2015-08-17 Thread Raymond Hettinger
Changes by Raymond Hettinger raymond.hettin...@gmail.com: Added file: http://bugs.python.org/file40197/ntdoc2.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24878 ___

[issue24878] Add docstrings to selected named tuples

2015-08-16 Thread Raymond Hettinger
Raymond Hettinger added the comment: For example: import sched help(sched.Event) class Event(Event) | Event(time, priority, action, argument, kwargs) | ... | -- | Data descriptors inherited from Event: | |

[issue24878] Add docstrings to selected named tuples

2015-08-16 Thread Raymond Hettinger
New submission from Raymond Hettinger: Add docstrings to some named tuples that could benefit from it (there was more documentation or useful information other than just the field name). This makes the help() on those named tuples much more informative. -- assignee: docs@python