Jakub Kuczys
d2c6a32543
Type hint support for slices and __index__ in SequenceProxy
3 years ago
Jakub Kuczys
dc34a8f1dc
Add repr to the SequenceProxy
3 years ago
Josh
0981f122af
Add overloads to utils.sleep_until
3 years ago
Rapptz
2bf2bfc9b4
Add utils.setup_logging to help set up logging outside of Client.run
3 years ago
Rapptz
1c7747fe9d
Fix nested Annotated calls not resolving
3 years ago
Rapptz
f52a02359d
Use built-in isascii instead of regex
3 years ago
Rapptz
596f2ca222
Fix time_snowflake not being documented
3 years ago
Rapptz
5b56899676
Change snowflake_time and time_snowflake parameters to pos/kw-only
3 years ago
James Hilton-Balfe
e2d5791b67
Fix overload order on as_chunks
3 years ago
Rapptz
87bc79e6e3
Change certain sequences to use a special proxy type instead of list
This is to speed up cases where someone is just querying the length
of the underlying sequence. If anything else is done to the sequence
then it is copied from the original iterator.
This change should be mostly transparent.
3 years ago
Rapptz
98c4f2ae8b
Fix utils.copy_doc being partially unknown
3 years ago
Harshal Laheri
20d3871290
Add return type hint for some functions
3 years ago
James Hilton-Balfe
3433e13848
Prioritise async iteration before sync iteration in utils.find/get
3 years ago
Rapptz
c232631504
Refactor utils.oauth_url slightly
3 years ago
Miku Chan
40f12c8a00
Add state parameter to utils.oauth_url
Co-authored-by: Danny <[email protected] >
3 years ago
Josh
c9f777c873
Fix type annotations to adhere to latest pyright release
3 years ago
Rapptz
500bf77103
Document and export MISSING sentinel
3 years ago
Bryan Forbes
06c257760b
Update types to use Awaitable where possible
3 years ago
Bryan Forbes
8524bfb54d
Fix caching of UnionType instead of resolved typing.Union
3 years ago
Rapptz
aa18e573c3
Mark MISSING as hashable to allow it to be used in dataclasses in 3.11
3 years ago
Stocker
5aa696ccfa
Fix typing issues and improve typing completeness across the library
Co-authored-by: Danny <[email protected] >
Co-authored-by: Josh <[email protected] >
3 years ago
Rapptz
0ef369c0fa
[commands] Automatically unload top level app commands in extensions
3 years ago
Neon Jonn
adb69e7157
Fix some spelling mistakes
3 years ago
Rapptz
56e0c1b3d7
Fix typo in applications.commands scope
3 years ago
Rapptz
8213603822
Change default oauth_url scopes to include application.commands
3 years ago
Rapptz
4c8b1f9abd
Remove unused imports
3 years ago
Rapptz
26fc694189
Fix Optional normalisation not working properly
3 years ago
Rapptz
3d0c506124
Fix test_resolve_invite due to changed type
3 years ago
Nadir Chowdhury
3c6279b947
Implement Guild Scheduled Events
3 years ago
Josh
2b69b5d545
Remove discord.InvalidArgument
This uses TypeError and ValueError instead.
3 years ago
Rapptz
8226f0df2c
[commands] Require number of parameters at instantiation time
This allows it to bypass annotation evaluation for arguments that don't
matter like self and context.
3 years ago
Rapptz
5589934a59
Fix NameError in utils.get
3 years ago
Rapptz
4f85494c11
Fix Sequence inheritance in 3.8
3 years ago
Rapptz
fbb8a35de6
Relocate and fix versionchanged in find and get
3 years ago
James Hilton-Balfe
eb6f5728e2
Add support for AsyncIterables in find and get
3 years ago
Rapptz
88b520b5ab
Reformat code using black
Segments where readability was hampered were fixed by appropriate
format skipping directives. New code should hopefully be black
compatible. The moment they remove the -S option is probably the moment
I stop using black though.
3 years ago
jack1142
dc19c6c7d5
Add positional-only arguments in more places
3 years ago
Rapptz
2c89202214
Fix some minor typing issues
3 years ago
Rapptz
3113036a54
Fix typing for utils.as_chunks
3 years ago
Rapptz
539577a2dd
Bring back ParamSpec in utils
4 years ago
Rapptz
4f8e67998a
Fix copy_doc typing to not error due to overloaded ParamSpec
4 years ago
James Hilton-Balfe
61abb43b69
Fix type hints for decorators in utils
4 years ago
MrKomodoDragon
73f953eac5
Add missing return type to utils.oauth_url
4 years ago
Rapptz
4a72201617
Make json conversion functions private
4 years ago
James
608e3b5b6c
Rename types.Union -> UnionType for bpo-44732
4 years ago
Vaskel
bc75945088
Add format_dt to utils __all__
4 years ago
Rapptz
8fb998b599
Refactor utcfromtimestamp to use fromtimestamp(..., tz=utc)
4 years ago
Rapptz
88d825a803
Allow use of orjson instead of json
The difference in speed seems negligible at start up, which is when
most time is taken for actually parsing JSON. I could potentially be
missing something but profiling didn't point to any discernable
difference.
4 years ago
Rapptz
4152819a3c
Ignore linting error when accessing Python 3.10 unions
4 years ago
Rapptz
2ce44f7bd6
Add versionadded for format_dt
4 years ago