[issue15638] incorrect version info for TextIOWrapper write_through docs

New submission from Chris Jerdonek: The io.TextIOWrapper documentation says that the write_through argument was added in version 3.3: "Changed in version 3.3: The write_through argument has been added." http://docs.python.org/dev/library/io.html#io.TextIOWrapper However, it seems to be present in 3.2. Also, the 3.2 documentation does not mention the write_through argument. ---------- assignee: docs@python components: Documentation keywords: easy messages: 168092 nosy: asvetlov, cjerdonek, docs@python priority: normal severity: normal stage: needs patch status: open title: incorrect version info for TextIOWrapper write_through docs versions: Python 3.2, Python 3.3 _______________________________________ Python tracker <report@bugs.python.org> <http://bugs.python.org/issue15638> _______________________________________

R. David Murray added the comment: If I remember correctly it existed in one of the versions (python vs C) but not in both. Or, it existed but wasn't actually respected by one of the versions. ---------- nosy: +pitrou, r.david.murray _______________________________________ Python tracker <report@bugs.python.org> <http://bugs.python.org/issue15638> _______________________________________

Chris Jerdonek added the comment: The C version seems to have it in 3.2 as well: http://hg.python.org/cpython/file/5b629e9fde61/Modules/_io/textio.c#l818 Is it possible you were thinking of issue 15571 (not "used" in Python version but still respected)? ---------- _______________________________________ Python tracker <report@bugs.python.org> <http://bugs.python.org/issue15638> _______________________________________

Antoine Pitrou added the comment: See 9144014028f3. It was part of a bugfix in the 3.2 branch, therefore it wasn't exposed as a public API. ---------- _______________________________________ Python tracker <report@bugs.python.org> <http://bugs.python.org/issue15638> _______________________________________

Changes by Antoine Pitrou <pitrou@free.fr>: ---------- resolution: -> rejected stage: needs patch -> committed/rejected status: open -> closed _______________________________________ Python tracker <report@bugs.python.org> <http://bugs.python.org/issue15638> _______________________________________

Chris Jerdonek added the comment: Ah, thank you. I see. ---------- _______________________________________ Python tracker <report@bugs.python.org> <http://bugs.python.org/issue15638> _______________________________________
participants (3)
-
Antoine Pitrou
-
Chris Jerdonek
-
R. David Murray