diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-03-30 17:31:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-30 17:31:46 (GMT) |
commit | 8b8bde44f3912d8b2df5591ffc31d2d8c6dcca6c (patch) | |
tree | dbbba7ea81cac0fe4ccbc5cec45227a50decf3f3 /Misc/NEWS | |
parent | c90ff1b78cb79bc3762184e03fa81f11984aaa45 (diff) | |
download | cpython-8b8bde44f3912d8b2df5591ffc31d2d8c6dcca6c.zip cpython-8b8bde44f3912d8b2df5591ffc31d2d8c6dcca6c.tar.gz cpython-8b8bde44f3912d8b2df5591ffc31d2d8c6dcca6c.tar.bz2 |
bpo-29935: Fixed error messages in the index() method of tuple, list and deque (#887) (#907) (#909)
when pass indices of wrong type.
(cherry picked from commit d4edfc9abffca965e76ebc5957a92031a4d6c4d4)
(cherry picked from commit bf4bb2e43030661e568d5d4b046e8b9351cc164c)
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-29935: Fixed error messages in the index() method of tuple, list and deque + when pass indices of wrong type. + - bpo-28876: ``bool(range)`` works even if ``len(range)`` raises :exc:`OverflowError`. |