diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-05-26 23:51:18 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-05-26 23:51:18 (GMT) |
commit | 98fe1a0c3bacdc51071d960d8d76b3b9f5b0d8c6 (patch) | |
tree | 9f3ade330a69ba55b615ccbfcf4680939377ab84 /Misc/NEWS | |
parent | c556e10b94541d7bf20e908f8eca78e7f63fc28c (diff) | |
download | cpython-98fe1a0c3bacdc51071d960d8d76b3b9f5b0d8c6.zip cpython-98fe1a0c3bacdc51071d960d8d76b3b9f5b0d8c6.tar.gz cpython-98fe1a0c3bacdc51071d960d8d76b3b9f5b0d8c6.tar.bz2 |
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.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -161,6 +161,11 @@ Core and Builtins Library ------- +- 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. + - Issue #12175: BufferedReader.read(-1) now calls raw.readall() if available. - Issue #12175: FileIO.readall() now only reads the file position and size |