aboutsummaryrefslogtreecommitdiff
path: root/discord/ext/commands/bot.py
Commit message (Expand)AuthorAgeFilesLines
* [commands] Remove Bot.get_cog_commandsRapptz2019-02-231-25/+0
* Rework entire cog system and partially document it and extensions.Rapptz2019-02-231-78/+19
* Clarified add_listener documentationSkyweb2019-02-061-2/+2
* Bumped copyright years to 2019.Dante Dam2019-01-281-1/+1
* bot.unload_extension: also allow events with no modulebmintz2018-11-241-6/+4
* [lint] Fix import orderHornwitser2018-11-241-1/+2
* [lint] Remove redundant paranthesisHornwitser2018-11-241-2/+2
* [lint] Rename exception variables to excHornwitser2018-11-241-2/+2
* [lint] Limit unneccessarily broad except clausesHornwitser2018-11-241-3/+3
* [commands] Add call_once keyword-only parameter for Bot.remove_checkRapptz2018-10-111-7/+8
* Correct ClientException message raised in invocation hooks.MusicOnline2018-09-201-2/+2
* Change docstrings to raw-stringsBeatButton2018-09-141-4/+4
* [commands] Prepend mention prefixes in commands.when_mentioned_orzephyrkul2018-08-281-1/+1
* Bot.unload_extension: don't remove commands from no moduleBen Mintz2018-08-221-0/+2
* [lint] Remove unnecessary lambdasHornwitser2018-08-221-1/+1
* [lint] Remove unused importsHornwitser2018-08-221-1/+1
* [commands] Ignore bots from Bot.process_commands by default.Rapptz2018-08-221-1/+7
* [commands] Change command_prefix behaviourHornwitser2018-06-291-17/+53
* Fix Bot.get_prefix second parameter breaking.Rapptz2018-06-101-1/+1
* Drop support for Python 3.4 and make minimum version 3.5.2.Rapptz2018-06-101-42/+30
* [commands] Add ability to have case insensitive commands.Rapptz2018-03-061-0/+4
* Add intersphinxTobotimus2018-01-061-9/+9
* [commands] Fix minor spelling mistakeS Stewart2017-11-201-1/+1
* [commands] Fix NameError when given an invalid prefix.Rapptz2017-09-121-1/+1
* [commands] Raise when an invalid prefix is given.Rapptz2017-08-151-5/+18
* [commands] Remove support for pass_context=False in Command.Rapptz2017-07-181-1/+0
* First pass at commands narrative documentation.Rapptz2017-07-081-2/+2
* [commands] unload cog submoduleskhazhyk2017-07-071-0/+3
* [commands] fix unloading incorrect cogskhazhyk2017-07-031-3/+6
* [commands] clean up remove_cog documentationkhazhyk2017-07-031-3/+2
* [commands] Improve commands.when_mentioned_or documentation.Rapptz2017-07-011-2/+19
* [commands] Add Bot.check_once for a global check that is called once.Rapptz2017-06-201-11/+74
* [commands] Fix cog error detection in the default global error handler.Rapptz2017-06-131-1/+1
* [commands] Don't display default error handler if a cog local exists.Rapptz2017-06-121-2/+8
* [commands] Add docstrings for extension loading.Rapptz2017-06-051-0/+42
* 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