commit | bdbad71b9def0b86433de12cecca022eee91bd9f | [log] [tgz] |
---|---|---|
author | Serhiy Storchaka <storchaka@gmail.com> | Sun Jun 02 00:05:48 2019 +0300 |
committer | GitHub <noreply@github.com> | Sun Jun 02 00:05:48 2019 +0300 |
tree | 147c8a3e08454a95e0e4900388d88f7b65430f63 | |
parent | 1a4d9ffa1aecd7e750195f2be06d3d16c7a3a88f [diff] [blame] |
bpo-20092. Use __index__ in constructors of int, float and complex. (GH-13108)
diff --git a/Lib/test/test_index.py b/Lib/test/test_index.py index a2ac321..cbdc56c 100644 --- a/Lib/test/test_index.py +++ b/Lib/test/test_index.py
@@ -60,7 +60,7 @@ # subclasses. See issue #17576. class MyInt(int): def __index__(self): - return int(self) + 1 + return int(str(self)) + 1 my_int = MyInt(7) direct_index = my_int.__index__()