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: Add _io._TextIOWrapper.errors
Type: behavior Stage:
Components: IO Versions: Python 3.1, Python 3.2, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: benjamin.peterson, pitrou, pjenvey
Priority: normal Keywords: patch

Created on 2009-06-06 01:57 by pjenvey, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
textiowrapper-errors.diff pjenvey, 2009-06-06 01:57
Messages (2)
msg88986 - (view) Author: Philip Jenvey (pjenvey) * (Python committer) Date: 2009-06-06 01:57
_pyio.TextIOWrapper provides the encoding and associated errors values, 
but _io._TextIOWrapper only provides encoding. Patch adds errors and has 
it show up in repr in both places, against py3k
msg89011 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2009-06-06 18:02
Thanks for the report! Fixed in r73259.
History
Date User Action Args
2022-04-11 14:56:49adminsetgithub: 50466
2009-06-06 18:02:32benjamin.petersonsetstatus: open -> closed

nosy: + benjamin.peterson
messages: + msg89011

resolution: fixed
2009-06-06 01:57:18pjenveycreate