Browse Source

Change regex from \d+ to [0-9]+ for performance reasons.

\d+ includes unicode characters while [0-9]+ doesn't.
pull/60/head
Rapptz 9 years ago
parent
commit
ebcb532c38
  1. 2
      discord/client.py
  2. 4
      discord/message.py

2
discord/client.py

@ -206,7 +206,7 @@ class Client:
if isinstance(mentions, list):
return [user.id for user in mentions]
elif mentions == True:
return re.findall(r'<@(\d+)>', content)
return re.findall(r'<@([0-9]+)>', content)
else:
return []

4
discord/message.py

@ -132,7 +132,7 @@ class Message(object):
This allows you receive the user IDs of mentioned users
even in a private message context.
"""
return re.findall(r'<@(\d+)>', self.content)
return re.findall(r'<@([0-9]+)>', self.content)
@utils.cached_property
def raw_channel_mentions(self):
@ -142,7 +142,7 @@ class Message(object):
This allows you receive the channel IDs of mentioned users
even in a private message context.
"""
return re.findall(r'<#(\d+)>', self.content)
return re.findall(r'<#([0-9]+)>', self.content)
def _handle_upgrades(self, channel_id):
self.server = None

Loading…
Cancel
Save