summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
author4kir4 <4kir4.1i@gmail.com>2017-03-20 06:44:46 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2017-03-20 06:44:46 (GMT)
commite46fb8611867fa3b407a813f53137929b7cb4a10 (patch)
tree9165a0264f38ddfd82cce4080b190f1b5225e95d /Misc
parent64508780d72769e4c7afc67a511c057261c578f6 (diff)
downloadcpython-e46fb8611867fa3b407a813f53137929b7cb4a10.zip
cpython-e46fb8611867fa3b407a813f53137929b7cb4a10.tar.gz
cpython-e46fb8611867fa3b407a813f53137929b7cb4a10.tar.bz2
bpo-28876: bool of large range raises OverflowError (#699)
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 8509f52..6de8794 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -35,6 +35,9 @@ Core and Builtins
- bpo-28893: Set correct __cause__ for errors about invalid awaitables
returned from __aiter__ and __anext__.
+- bpo-28876: ``bool(range)`` works even if ``len(range)``
+ raises :exc:`OverflowError`.
+
- bpo-29683: Fixes to memory allocation in _PyCode_SetExtra. Patch by
Brian Coleman.