[issue21225] io.py: Improve docstrings for classes

2014-04-28 Thread Roundup Robot
Roundup Robot added the comment: New changeset 6e23afdee4e4 by Andrew Kuchling in branch '2.7': #21225: copy docstrings from base classes http://hg.python.org/cpython/rev/6e23afdee4e4 -- ___ Python tracker rep...@bugs.python.org

[issue21225] io.py: Improve docstrings for classes

2014-04-28 Thread Antoine Pitrou
Antoine Pitrou added the comment: I've backported Andrew's change. -- nosy: +pitrou resolution: - fixed stage: patch review - resolved status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21225

[issue21225] io.py: Improve docstrings for classes

2014-04-27 Thread Berker Peksag
Berker Peksag added the comment: Can this be closed? (or needs backport to 2.7? http://hg.python.org/cpython/file/2.7/Lib/io.py#l69) -- nosy: +berker.peksag ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21225

[issue21225] io.py: Improve docstrings for classes

2014-04-26 Thread STINNER Victor
Changes by STINNER Victor victor.stin...@gmail.com: -- nosy: +haypo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21225 ___ ___ Python-bugs-list

[issue21225] io.py: Improve docstrings for classes

2014-04-25 Thread Roundup Robot
Roundup Robot added the comment: New changeset e33a036fd784 by Andrew Kuchling in branch '3.4': #21225: copy docstrings from base classes http://hg.python.org/cpython/rev/e33a036fd784 -- nosy: +python-dev ___ Python tracker rep...@bugs.python.org

[issue21225] io.py: Improve docstrings for classes

2014-04-21 Thread R. David Murray
R. David Murray added the comment: Looks good to me. -- nosy: +r.david.murray ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21225 ___ ___

[issue21225] io.py: Improve docstrings for classes

2014-04-21 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- versions: +Python 3.4 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21225 ___ ___ Python-bugs-list

[issue21225] io.py: Improve docstrings for classes

2014-04-15 Thread A.M. Kuchling
Changes by A.M. Kuchling a...@amk.ca: -- components: +IO versions: +Python 2.7, Python 3.5 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21225 ___

[issue21225] io.py: Improve docstrings for classes

2014-04-14 Thread A.M. Kuchling
New submission from A.M. Kuchling: io.py contains the following to declare ABCs for some of its classes: class IOBase(_io._IOBase, metaclass=abc.ABCMeta): pass (and similarly for RawIOBase, BufferedIOBase, TextIOBase). _io._IOBase has an extensive docstring, but IOBase doesn't. (Python