diff options
author | Guido van Rossum <guido@dropbox.com> | 2015-09-04 19:15:54 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@dropbox.com> | 2015-09-04 19:15:54 (GMT) |
commit | 1b6691053701e92490c6b68171d6d6a645f8e708 (patch) | |
tree | 5a1606858b59e65eb698122f1019077c4353971e /Misc | |
parent | 9f9a00afc028023cb67bc577606587fc163f7f2b (diff) | |
download | cpython-1b6691053701e92490c6b68171d6d6a645f8e708.zip cpython-1b6691053701e92490c6b68171d6d6a645f8e708.tar.gz cpython-1b6691053701e92490c6b68171d6d6a645f8e708.tar.bz2 |
Fix issue #24635.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -15,6 +15,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. |