aboutsummaryrefslogtreecommitdiff
path: root/discord/ext/commands/bot.py
Commit message (Expand)AuthorAgeFilesLines
* Use Python3Lexer instead of PythonLexer for pygments.Rapptz2017-05-221-4/+4
* [commands] Fix Context.command_failed from being incorrect.Rapptz2017-05-181-1/+0
* First pass at documentation reform.Rapptz2017-05-121-43/+46
* [commands] Fix default error handler to work with the switch.Rapptz2017-05-101-1/+1
* [commands] Re-order error handler arguments.Rapptz2017-05-101-2/+2
* [commands] Fix lack of space in when_mentionedRapptz2017-04-241-1/+1
* [commands] Make when_mentioned always have both mention formats.Rapptz2017-04-241-5/+2
* [commands] Allow loading cogs from folders.Rapptz2017-04-211-8/+9
* [commands] Add is_owner check and Bot.is_owner.Rapptz2017-03-271-0/+25
* [commands] Add BotBase.get_cog_commands to get all a cog's commands.Rapptz2017-03-211-0/+25
* [commands] Change GroupMixin.commands to all_commandsRapptz2017-03-211-5/+5
* [commands] Register cog listeners with the name of the attribute.Rapptz2017-02-221-1/+1
* Implement async checks. Fixes #380.Rapptz2017-02-121-6/+10
* [commands] Implement before and after invoke command hooks.Rapptz2017-01-271-0/+67
* [commands] Add Context.command_failed attribute.Rapptz2017-01-271-0/+1
* [commands] Rename __check to __global_check for cogs.Rapptz2017-01-261-3/+3
* [commands] Allow customising the Context class in get_context.Rapptz2017-01-261-3/+9
* Optimise attribute access when dispatching.Rapptz2017-01-251-16/+3
* Update copyright year to 2017.Rapptz2017-01-201-1/+1
* [commands] Guarantee that local error handler is called before generic.Rapptz2017-01-151-1/+1
* [commands] Split process_commands into lower level bits.Rapptz2017-01-141-49/+93
* [commands] Make Command a descriptor for #426.Rapptz2017-01-131-2/+0
* [commands] Add AutoShardedBot counterpart to AutoShardedClient.Rapptz2017-01-081-61/+69
* [commands] Fix help command from not working with recent changes.Rapptz2017-01-031-5/+5
* [commands] Remove send_ utility functions.Rapptz2017-01-031-177/+0
* Rename Server to Guild everywhere.Rapptz2017-01-031-3/+3
* [commands] Bot skip check now works with the new __eq__ changes.Rapptz2017-01-031-2/+5
* [commands] Bugfix on the teardown function call.PapyrusThePlant2017-01-011-1/+1
* Properly propagate loop. Fixes #420.Rapptz2016-12-211-1/+1
* [commands] Shield against dictionary resize in Bot.closeRapptz2016-12-171-2/+2
* [commands] Unload all cogs when gracefully exiting bot.Rapptz2016-12-171-0/+6
* [commands] Add special extension function 'teardown' for clean-up.Rapptz2016-12-171-4/+14
* [commands] Unload all extensions when gracefully closing bot.Rapptz2016-12-171-0/+10
* [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