]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
Issue #8796: codecs.open() calls the builtin open() function instead of using
authorVictor Stinner <victor.stinner@haypocalc.com>
Thu, 26 May 2011 23:51:18 +0000 (01:51 +0200)
committerVictor Stinner <victor.stinner@haypocalc.com>
Thu, 26 May 2011 23:51:18 +0000 (01:51 +0200)
commit98fe1a0c3bacdc51071d960d8d76b3b9f5b0d8c6
tree9f3ade330a69ba55b615ccbfcf4680939377ab84
parentc556e10b94541d7bf20e908f8eca78e7f63fc28c
Issue #8796: codecs.open() calls the builtin open() function instead of using
StreamReaderWriter. Deprecate StreamReader, StreamWriter, StreamReaderWriter,
StreamRecoder and EncodedFile() of the codec module. Use the builtin open()
function or io.TextIOWrapper instead.
Doc/library/codecs.rst
Lib/codecs.py
Lib/test/test_codecs.py
Misc/NEWS