This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: incorrect version info for TextIOWrapper write_through docs
Type: Stage: resolved
Components: Documentation Versions: Python 3.2, Python 3.3
process
Status: closed Resolution: rejected
Dependencies: Superseder:
Assigned To: docs@python Nosy List: asvetlov, chris.jerdonek, docs@python, pitrou, r.david.murray
Priority: normal Keywords: easy

Created on 2012-08-13 12:36 by chris.jerdonek, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (5)
msg168092 - (view) Author: Chris Jerdonek (chris.jerdonek) * (Python committer) Date: 2012-08-13 12:36
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.
msg168101 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2012-08-13 13:01
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.
msg168103 - (view) Author: Chris Jerdonek (chris.jerdonek) * (Python committer) Date: 2012-08-13 13:12
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)?
msg168105 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2012-08-13 13:14
See 9144014028f3. It was part of a bugfix in the 3.2 branch, therefore it wasn't exposed as a public API.
msg168107 - (view) Author: Chris Jerdonek (chris.jerdonek) * (Python committer) Date: 2012-08-13 13:19
Ah, thank you. I see.
History
Date User Action Args
2022-04-11 14:57:34adminsetgithub: 59843
2012-08-13 13:19:48chris.jerdoneksetmessages: + msg168107
2012-08-13 13:15:26pitrousetstatus: open -> closed
resolution: rejected
stage: needs patch -> resolved
2012-08-13 13:14:22pitrousetmessages: + msg168105
2012-08-13 13:12:05chris.jerdoneksetmessages: + msg168103
2012-08-13 13:01:09r.david.murraysetnosy: + r.david.murray, pitrou
messages: + msg168101
2012-08-13 12:40:35chris.jerdoneklinkissue15561 dependencies
2012-08-13 12:36:41chris.jerdonekcreate