Kaydet (Commit) d699255b authored tarafından Éric Araujo's avatar Éric Araujo

Fix small inaccuracy: there is no index function

üst 0d26798b
...@@ -303,7 +303,7 @@ class Integral(Rational): ...@@ -303,7 +303,7 @@ class Integral(Rational):
raise NotImplementedError raise NotImplementedError
def __index__(self): def __index__(self):
"""index(self)""" """someobject[self]"""
return int(self) return int(self)
@abstractmethod @abstractmethod
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment