commit | c836a28cc1bf6c0dcbcf9c30f47b731943e21b60 | [log] [tgz] |
---|---|---|
author | Serhiy Storchaka <storchaka@gmail.com> | Sat Dec 14 21:07:09 2013 +0200 |
committer | Serhiy Storchaka <storchaka@gmail.com> | Sat Dec 14 21:07:09 2013 +0200 |
tree | 98031c255e283b43c359e3528c6eef8e602dd25c | |
parent | 84d28b4ee5983bcb048323a0e56ea4c5498a0652 [diff] [blame] |
Issue #17576: Removed deprecation warnings added in changeset 618cca51a27e.
diff --git a/Lib/test/test_index.py b/Lib/test/test_index.py index a2ac321..8785711 100644 --- a/Lib/test/test_index.py +++ b/Lib/test/test_index.py
@@ -81,8 +81,7 @@ return True bad_int = BadInt() - with self.assertWarns(DeprecationWarning): - n = operator.index(bad_int) + n = operator.index(bad_int) self.assertEqual(n, 1) bad_int = BadInt2()