Remove __long__ methods from UserString and from Demo/ classes.

This commit is contained in:
Mark Dickinson 2009-01-11 11:54:02 +00:00
parent e97637daaa
commit c7d484de9b
3 changed files with 0 additions and 10 deletions

View file

@ -315,9 +315,6 @@ def __invert__(self):
def __int__(self):
return int(self._data)
def __long__(self):
return int(self._data)
def __float__(self):
return float(self._data)