commit | d699255b42fc075b2fc7259e1394a50bab928459 | [log] [tgz] |
---|---|---|
author | Éric Araujo <merwok@netwok.org> | Thu Dec 23 18:41:33 2010 +0000 |
committer | Éric Araujo <merwok@netwok.org> | Thu Dec 23 18:41:33 2010 +0000 |
tree | 4bc6e1da5f07bfe95441ea1cc15e7c98171259df | |
parent | 0d26798bbcd290fc58da7b66d655e3128a786a0c [diff] |
Fix small inaccuracy: there is no index function
diff --git a/Lib/numbers.py b/Lib/numbers.py index 82960f0..b5a49c6 100644 --- a/Lib/numbers.py +++ b/Lib/numbers.py
@@ -303,7 +303,7 @@ raise NotImplementedError def __index__(self): - """index(self)""" + """someobject[self]""" return int(self) @abstractmethod