aboutsummaryrefslogtreecommitdiff
path: root/discord/ext
Commit message (Expand)AuthorAgeFilesLines
* [commands] Remove Flag related delimiter and prefix errorRapptz2021-04-301-3/+0
* [commands] Fix Generics causing other typing converters to failRapptz2021-04-301-3/+14
* [commands] Fix Generic subcalsses used as a converterRapptz2021-04-291-0/+4
* Add utils.MISSINGNadir Chowdhury2021-04-291-9/+1
* Split annotation resolution to discord.utilsRapptz2021-04-272-98/+3
* [commands] Disallow float/complex in Literal but allow NoneRapptz2021-04-271-1/+1
* [commands] Add support for typing.Union to FlagsJosh2021-04-251-5/+11
* [commands] Fix regression with Union converters not workingRapptz2021-04-241-1/+3
* [commands] Disallow complicated Literal typesRapptz2021-04-241-0/+3
* [commands] Fix Literal converter not working within flagsRapptz2021-04-241-0/+4
* [commands] Add FlagConverter.__iter__Rapptz2021-04-241-0/+13
* [commands] Fix _HelpCommandImpl.clean_params popitemStella2021-04-231-2/+2
* [commands] Fix flag detection code in get_flagsRapptz2021-04-231-3/+3
* Fix documentation for RoleConverterjack11422021-04-211-2/+2
* [commands] Set constructible FlagConverter flags to not be requiredJosh2021-04-211-0/+3
* [commands] Allow FlagCommand subclasses to inherit optionsJosh2021-04-211-6/+20
* [commands] Add support for aliasing to FlagConverterJosh2021-04-211-4/+47
* Fix typo within `HelpCommand.verify_checks` documentationKino2021-04-211-1/+1
* [commands] Avoid creating unnecessary flag mapping copiesRapptz2021-04-201-2/+2
* [commands] Default construct flags if they're not passed as parametersRapptz2021-04-202-0/+18
* [commands] Actually expose the FlagError base errorRapptz2021-04-191-0/+1
* [commands] Initial support for FlagConverterRapptz2021-04-193-0/+608
* [commands] Add run_converters helper to call convertersRapptz2021-04-192-116/+186
* [commands] Add Context.current_parameterRapptz2021-04-192-0/+7
* [commands] Refactor evaluation functions to allow passing in localnsRapptz2021-04-181-8/+25
* [tasks] Move the Loop's sleep to be before exit conditionsSteve C2021-04-161-2/+2
* [commands] Add a converter for discord.ObjectNadir Chowdhury2021-04-162-0/+43
* Restrict snowflake regexes to 15-20 digitsNadir Chowdhury2021-04-161-6/+6
* [commands] Remove HelpCommand.clean_prefix (#6736)pikaninja2021-04-151-19/+7
* [commands] Fix missing `re` import in ContextNadir Chowdhury2021-04-151-0/+1
* [commands] Add `clean_prefix` attribute to commands.ContextMrKomodoDragon2021-04-141-0/+14
* [commands] Fix Command.clean_params to return a regular dictRapptz2021-04-111-7/+10
* [commands] Strip text to remove spaces before ellipsisKreusada2021-04-111-1/+1
* [commands] Add support for Python 3.10 Union typingRapptz2021-04-111-1/+8
* [commands] Fix errors with cooldown mappingsRapptz2021-04-111-2/+7
* [commands] use __args__ and __origin__ where applicableJosh2021-04-112-17/+27
* [commands] Fix repr for GreedyJosh2021-04-101-0/+4
* [commands] Refactor typing evaluation to not use get_type_hintsRapptz2021-04-101-58/+103
* [commands] Remove legacy ExtensionNotFound.original attributeRapptz2021-04-101-4/+1
* [commands] Minimise code duplication in channel converters Nadir Chowdhury2021-04-101-117/+23
* [commands] Make `commands.Greedy` a `typing.Generic`James2021-04-102-23/+95
* [commands] Provide a dynamic cooldown system Dan Hess2021-04-102-19/+81
* [commands]Add typing.Literal converterSigmath Bits2021-04-102-30/+99
* [commands] Raise error when a cog name is already registeredSebastian Law2021-04-081-2/+22
* Use f-strings in more places that were missed.Rapptz2021-04-087-40/+42
* [commands] Use has_error_handler instead in command_errorpikaninja2021-04-071-2/+3
* [commands] Only replace annotation if one was givenRapptz2021-04-071-1/+3
* Add `__all__` to remaining modulesNadir Chowdhury2021-04-074-2/+17
* [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