Browse Source

[commands] Optimise GroupMixin.get_command for the no space case.

Comes at a 30ns slowdown for the space case, however.
pull/1990/head
Rapptz 6 years ago
parent
commit
3326adf63b
  1. 4
      discord/ext/commands/core.py

4
discord/ext/commands/core.py

@ -1015,6 +1015,10 @@ class GroupMixin:
The command that was requested. If not found, returns ``None``.
"""
# fast path, no space in name.
if ' ' not in name:
return self.all_commands.get(name)
names = name.split()
obj = self.all_commands.get(names[0])
if not isinstance(obj, GroupMixin):

Loading…
Cancel
Save