diff options
author | 4kir4 <4kir4.1i@gmail.com> | 2017-03-20 06:44:46 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2017-03-20 06:44:46 (GMT) |
commit | e46fb8611867fa3b407a813f53137929b7cb4a10 (patch) | |
tree | 9165a0264f38ddfd82cce4080b190f1b5225e95d /Misc | |
parent | 64508780d72769e4c7afc67a511c057261c578f6 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |