summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-03-31 08:25:59 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-03-31 08:25:59 (GMT)
commit047f3b737608c799764f5e7d083764f42c9a1b42 (patch)
tree438a4bd91273e0eb35fa05f1189e52f0f0a12fc4 /Misc/NEWS
parentab0d198c7a6b2133ba5f782d7b951fef00ae615c (diff)
parent754aab28ed5f94338641db8899f89f59895c2137 (diff)
downloadcpython-047f3b737608c799764f5e7d083764f42c9a1b42.zip
cpython-047f3b737608c799764f5e7d083764f42c9a1b42.tar.gz
cpython-047f3b737608c799764f5e7d083764f42c9a1b42.tar.bz2
Issue #22854: Merge UnsupportedOperation fixes from 3.5
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 6b6d11c..6497701 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -237,6 +237,9 @@ Core and Builtins
Library
-------
+- Issue #22854: Change BufferedReader.writable() and
+ BufferedWriter.readable() to always return False.
+
- Issue #26492: Exhausted iterator of array.array now conforms with the behavior
of iterators of other mutable sequences: it lefts exhausted even if iterated
array is extended.