diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-03-20 07:37:31 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-20 07:37:31 (GMT) |
commit | 4276068fe57e93b4c8d428f0b1cde8ca04b8fb99 (patch) | |
tree | 9d8c97075d46243d40cc75cbfd590bad2aff31c9 /Misc/NEWS | |
parent | 7cc071c96b95e7422f64cb436d547c952e0ca52f (diff) | |
download | cpython-4276068fe57e93b4c8d428f0b1cde8ca04b8fb99.zip cpython-4276068fe57e93b4c8d428f0b1cde8ca04b8fb99.tar.gz cpython-4276068fe57e93b4c8d428f0b1cde8ca04b8fb99.tar.bz2 |
bpo-28876: bool of large range raises OverflowError (#699) (#735)
(cherry picked from commit e46fb8611867fa3b407a813f53137929b7cb4a10)
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -10,6 +10,9 @@ Release date: XXXX-XX-XX Core and Builtins ----------------- +- bpo-28876: ``bool(range)`` works even if ``len(range)`` + raises :exc:`OverflowError`. + - bpo-29600: Fix wrapping coroutine return values in StopIteration. - Issue #29537: Restore runtime compatibility with bytecode files generated by |