aboutsummaryrefslogtreecommitdiff
path: root/discord/ext/commands/core.py
Commit message (Expand)AuthorAgeFilesLines
* [commands] Make GroupMixin GenericJosh2021-08-211-10/+21
* [commands] De-indent after hook callRapptz2021-08-201-1/+1
* [commands] reset view when Optional argument encounters parsing errorSebastian Law2021-08-191-1/+8
* [commands][types] Type hint commands-extJosh2021-08-191-178/+379
* [commands] fix bot_has_role and is_nsfw for threadsz03h2021-07-301-7/+5
* [commands] Check for ctx.guild instead of abc.GuildChannelRapptz2021-07-281-2/+2
* Fixes minor grammatical error in Command.update Stocker2021-07-281-1/+1
* [commands] Add back CommandOnCooldown.typeRapptz2021-07-021-1/+1
* [commands] Mention that dynamic_cooldown callable can return NoneRapptz2021-07-021-3/+4
* [commands] Unwrap functions to get their module and globalnsRapptz2021-06-011-4/+22
* [commands] Add Command.extrasMichael H2021-05-291-0/+9
* [commands] Update command.parent and command.parents docsNextChai2021-05-151-4/+4
* Fix various reference issues in documentationJosh2021-05-061-3/+3
* Split annotation resolution to discord.utilsRapptz2021-04-271-97/+2
* [commands] Disallow float/complex in Literal but allow NoneRapptz2021-04-271-1/+1
* [commands] Fix regression with Union converters not workingRapptz2021-04-241-1/+3
* [commands] Disallow complicated Literal typesRapptz2021-04-241-0/+3
* [commands] Default construct flags if they're not passed as parametersRapptz2021-04-201-0/+2
* [commands] Add run_converters helper to call convertersRapptz2021-04-191-115/+10
* [commands] Add Context.current_parameterRapptz2021-04-191-0/+1
* [commands] Refactor evaluation functions to allow passing in localnsRapptz2021-04-181-8/+25
* [commands] Fix Command.clean_params to return a regular dictRapptz2021-04-111-7/+10
* [commands] Add support for Python 3.10 Union typingRapptz2021-04-111-1/+8
* [commands] use __args__ and __origin__ where applicableJosh2021-04-111-15/+26
* [commands] Refactor typing evaluation to not use get_type_hintsRapptz2021-04-101-58/+103
* [commands] Make `commands.Greedy` a `typing.Generic`James2021-04-101-3/+2
* [commands] Provide a dynamic cooldown system Dan Hess2021-04-101-7/+51
* [commands]Add typing.Literal converterSigmath Bits2021-04-101-30/+65
* Use f-strings in more places that were missed.Rapptz2021-04-081-5/+3
* [commands] Only replace annotation if one was givenRapptz2021-04-071-1/+3
* [commands] Use typing.get_type_hints to resolve ForwardRefsNadir Chowdhury2021-04-061-6/+25
* [commands] Fix classmethod converters not working.Rapptz2021-04-051-7/+4
* [commands] Revert conversion code back to how it was originallyRapptz2021-04-051-8/+7
* [commands] Fix AttributeError for classes missing convert attributeToxicKidz2021-04-051-1/+1
* [commands] Fix @classmethod converters Michael H2021-04-051-6/+9
* Use typing.Protocol instead of abc.ABCMetaJames2021-04-041-5/+0
* Modernize code to use f-stringsRapptz2021-04-041-20/+18
* [commands] allow arbitrary callables in cooldownMikey2021-03-281-2/+5
* [commands] fix documented type for Command.checksSebastian Law2021-03-241-1/+1
* Code optimisations and refactoring via SourceryNadir Chowdhury2021-02-241-3/+2
* [commands] Add Context.invoked_parentsSebastian Law2021-02-231-0/+4
* [commands] Handle positional-only parameters in bot commandsBryan Forbes2021-02-171-2/+2
* [commands] Add Command/Cog.has_error_handlerRapptz2021-01-151-0/+7
* Change copyright year to presentNihaal Sangha2021-01-151-1/+1
* Fix documented type of `Command.usage`jack11422021-01-141-1/+1
* [commands] fully remove command when CommandRegistrationError is raised for a...Sebastian Law2020-12-291-1/+7
* [commands] Correct concurrency never releasing during prepare callDan Hess2020-12-261-7/+12
* [commands] max_concurrency comes before cooldownsRapptz2020-12-171-3/+3
* Fix and add documentationMichael2020-09-231-1/+11
* [commands] Fix exception raised in Command invoke hooks.Josh2020-09-091-19/+11