summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2015-09-04 19:00:06 (GMT)
committerGuido van Rossum <guido@python.org>2015-09-04 19:00:06 (GMT)
commit647bae6c520237b01d75e51adbc6048d95db30bc (patch)
tree100c2f999bf57f5a7fe91b9c005c58687299ad47 /Misc
parent874dbe895d94eccbc8eac7214cc7ea86e0d2cb50 (diff)
downloadcpython-647bae6c520237b01d75e51adbc6048d95db30bc.zip
cpython-647bae6c520237b01d75e51adbc6048d95db30bc.tar.gz
cpython-647bae6c520237b01d75e51adbc6048d95db30bc.tar.bz2
Issue #24635: Fixed flakiness in test_typing.py.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 17b514a..ba82b67 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -88,6 +88,9 @@ Core and Builtins
Library
-------
+- Issue #24635: Fixed a bug in typing.py where isinstance([], typing.Iterable)
+ would return True once, then False on subsequent calls.
+
- Issue #24989: Fixed buffer overread in BytesIO.readline() if a position is
set beyond size. Based on patch by John Leitch.