aboutsummaryrefslogtreecommitdiff
path: root/discord/ext/commands/bot.py
Commit message (Expand)AuthorAgeFilesLines
* [commands] Allow coroutine functions in Bot.command_prefixRapptz2016-09-171-3/+8
* [commands] Delete module when it does not have a setup function.Rapptz2016-08-101-0/+2
* [commands] Make Bot.check decorator an actual decorator.Rapptz2016-07-081-6/+4
* [commands] Added missing parenthesis in examplesPapyrusThePlant2016-07-081-8/+8
* [commands] Add the concept of global checks.Rapptz2016-06-191-1/+86
* [commands] Add `delete_after` keyword argument to utility functions.Rapptz2016-06-191-4/+82
* [commands] Only show CommandNotFound on non-empty commands.Rapptz2016-06-141-1/+1
* [commands] Fix @everyone elevation in the default help command.Rapptz2016-06-101-2/+14
* [commands] Fix issue with proper local error handlers not beign called.Rapptz2016-06-101-1/+1
* [commands] Unify Command.handle_local_error into general dispatcher.Rapptz2016-06-051-2/+1
* [commands] Fix bug where Context.command would not update.Rapptz2016-06-041-1/+0
* [commands] Dispatch command_error on command exec error.Khazhismel Kumykov2016-06-041-3/+29
* [commands] Delete frame objects when done using them.Rapptz2016-05-311-3/+7
* [commands] Add support for self-bots.Rapptz2016-05-311-2/+8
* [commands] Fix when_mentioned when handling nicknames.Rapptz2016-05-011-1/+4
* Begin working on gateway v4 support.Rapptz2016-04-271-1/+1
* [commands] Add deterministic cog unloading.Rapptz2016-04-041-0/+10
* [commands] Don't yield from inside bot utility functions.Rapptz2016-03-311-14/+5
* [commands] Add when_mentioned_or helper to have mentions and prefixes.Rapptz2016-03-051-0/+21
* [commands] Fix typo in Bot.upload docstring.Rapptz2016-03-021-1/+1
* [commands] Do not swallow AttributeErrors raised by the setup functionRapptz2016-02-241-4/+3
* [commands] Helper functions now take *args and **kwargs.Rapptz2016-02-181-30/+24
* [commands] Allow setting the bot error messages in the help command.Rapptz2016-01-231-4/+15
* [commands] Add Bot.help_attrs to customise the help command.Rapptz2016-01-231-2/+15
* [commands] Change Bot.pm_help to be an optional bool.Rapptz2016-01-231-4/+14
* [commands] Add on_command and on_command_completion events.Rapptz2016-01-141-1/+4
* [commands] Fix issue where Bot would raise if not given a description.Rapptz2016-01-141-1/+1
* [commands] Cleanup descriptions being passed.Rapptz2016-01-131-1/+1
* Proper exception chaining.Rapptz2016-01-131-2/+2
* [commands] Fix handling of nested subcommand help handling.Rapptz2016-01-121-5/+15
* [commands] Support invoking the help command with a cog name.Rapptz2016-01-121-1/+14
* [commands] Initial implementation of help command.Rapptz2016-01-111-2/+47
* [commands] Proper cleanup of cogs.Rapptz2016-01-101-1/+3
* [commands] Add basic support for extensions.Rapptz2016-01-091-1/+52
* [commands] Inject the internal variables for bot.say & co explicitly.Rapptz2016-01-091-13/+16
* [commands] Add support for cogs.Rapptz2016-01-091-4/+106
* [commands] Add support for registering more than one event listener.Rapptz2016-01-081-0/+93
* [commands] Change prefix callback signature and add when_mentioned.Rapptz2016-01-081-4/+10
* [commands] Allow registration of multiple command prefixes.Rapptz2016-01-071-3/+17
* [commands] Don't skip whitespace if the command trigger is found.Rapptz2016-01-061-1/+1
* [commands] Add CommandNotFound error.Rapptz2016-01-051-9/+13
* Initial implementation of commands extension module.Rapptz2016-01-041-0/+221