[issue15216] Add encoding & errors parameters to TextIOWrapper.reconfigure()

2017-12-20 Thread INADA Naoki
Change by INADA Naoki : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___ Py

[issue15216] Add encoding & errors parameters to TextIOWrapper.reconfigure()

2017-12-20 Thread INADA Naoki
INADA Naoki added the comment: New changeset 507434fd504f3ebc1da72aa77544edc0d73f136e by INADA Naoki in branch 'master': bpo-15216: io: TextIOWrapper.reconfigure() accepts encoding, errors and newline (GH-2343) https://github.com/python/cpython/commit/507434fd504f3ebc1da72aa77544edc0d73f136e

[issue15216] Add encoding & errors parameters to TextIOWrapper.reconfigure()

2017-06-22 Thread INADA Naoki
Changes by INADA Naoki : -- pull_requests: +2387 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue15216] Add encoding & errors parameters to TextIOWrapper.reconfigure()

2017-06-03 Thread Nick Coghlan
Nick Coghlan added the comment: `TextIOWrapper.reconfigure()` has been added for 3.7 as part of issue 30526 (currently covering the `line_buffering` and `write_through` options), so I've updated the issue title here to reflect that that's now the relevant API to use to address this particular