Browse Source

clean up SteamID

pull/18/merge
Rossen Georgiev 9 years ago
parent
commit
77bda5b923
  1. 31
      steam/steamid.py

31
steam/steamid.py

@ -56,38 +56,11 @@ class SteamID(int):
return "<%s(id=%s, type=%s, universe=%s, instance=%s)>" % ( return "<%s(id=%s, type=%s, universe=%s, instance=%s)>" % (
self.__class__.__name__, self.__class__.__name__,
self.id, self.id,
repr(str(self.type)), repr(self.type.name),
repr(str(self.universe)), repr(self.universe.name),
self.instance, self.instance,
) )
# def __str__(self):
# return str(self.as_64)
#
# def __int__(self):
# return self.as_64
#
# def __eq__(self, other):
# return int(self) == int(other)
#
# def __ne__(self, other):
# return int(self) != int(other)
#
# def __lt__(self, other):
# return int(self) < int(other)
#
# def __le__(self, other):
# return int(self) <= int(other)
#
# def __gt__(self, other):
# return int(self) > int(other)
#
# def __ge__(self, other):
# return int(self) >= int(other)
#
# def __hash__(self):
# return hash(self.as_64)
@property @property
def id(self): def id(self):
return int(self) & 0xFFffFFff return int(self) & 0xFFffFFff

Loading…
Cancel
Save