aboutsummaryrefslogtreecommitdiff
path: root/discord/user.py
diff options
context:
space:
mode:
authorRapptz <[email protected]>2017-05-18 05:15:06 -0400
committerRapptz <[email protected]>2017-05-18 05:15:06 -0400
commit852699500453ea9565ec5d678e99a49bf64c2395 (patch)
tree188b7a19a7565ea49500943b5e43a369542a0891 /discord/user.py
parentFix User == Member comparisons. (diff)
downloaddiscord.py-852699500453ea9565ec5d678e99a49bf64c2395.tar.xz
discord.py-852699500453ea9565ec5d678e99a49bf64c2395.zip
Minor speedup when doing comparisons.
Shred 2 getattr calls + 1 global lookup to 1 global lookup.
Diffstat (limited to 'discord/user.py')
-rw-r--r--discord/user.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/discord/user.py b/discord/user.py
index e5cb8f5f..e078bc3d 100644
--- a/discord/user.py
+++ b/discord/user.py
@@ -35,7 +35,9 @@ import asyncio
Profile = namedtuple('Profile', 'premium user mutual_guilds connected_accounts premium_since')
-class BaseUser(discord.abc.User):
+_BaseUser = discord.abc.User
+
+class BaseUser(_BaseUser):
__slots__ = ('name', 'id', 'discriminator', 'avatar', 'bot', '_state')
def __init__(self, *, state, data):
@@ -50,7 +52,7 @@ class BaseUser(discord.abc.User):
return '{0.name}#{0.discriminator}'.format(self)
def __eq__(self, other):
- return isinstance(other, discord.abc.User) and other.id == self.id
+ return isinstance(other, _BaseUser) and other.id == self.id
def __ne__(self, other):
return not self.__eq__(other)