| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | [commands] Only replace annotation if one was given | Rapptz | 2021-04-07 | 1 | -1/+3 |
| | | |||||
| * | Add `__all__` to remaining modules | Nadir Chowdhury | 2021-04-07 | 36 | -26/+210 |
| | | |||||
| * | Add Embed.__bool__ | Rapptz | 2021-04-07 | 1 | -0/+22 |
| | | | | | Fixes #6661 | ||||
| * | Revert "Remove unused group functionality" | Rapptz | 2021-04-07 | 1 | -0/+12 |
| | | | | | This reverts commit d69b2f0af563993bdae425f4bb92fb555a238933. | ||||
| * | Fix AttributeError on HTTPClient.send_file to be send_files | Steve C | 2021-04-07 | 1 | -1/+1 |
| | | |||||
| * | Use `format_map` instead of `format` for `Route.url` | Nadir Chowdhury | 2021-04-06 | 1 | -1/+1 |
| | | |||||
| * | Add source_channel and source_guild to Webhook | Zomatree | 2021-04-06 | 2 | -1/+133 |
| | | |||||
| * | use `typing.AsyncIterator` for iterators | Nadir Chowdhury | 2021-04-06 | 1 | -30/+48 |
| | | |||||
| * | [commands] Use typing.get_type_hints to resolve ForwardRefs | Nadir Chowdhury | 2021-04-06 | 1 | -6/+25 |
| | | |||||
| * | Use non-underscore TypeVar in enum code | Rapptz | 2021-04-06 | 1 | -3/+3 |
| | | |||||
| * | Fix some regressions from create_task change | Rapptz | 2021-04-06 | 2 | -2/+2 |
| | | |||||
| * | Remove unused group functionality | Rapptz | 2021-04-06 | 1 | -12/+0 |
| | | |||||
| * | Reformat HTTPClient and add interaction endpoints | Rapptz | 2021-04-06 | 1 | -105/+484 |
| | | |||||
| * | Make enum code work with typecheckers | Rapptz | 2021-04-06 | 1 | -12/+23 |
| | | | | | | This also makes it so invalid enum values fall back to a proxy type that still works similar to actual values. | ||||
| * | Add on_interaction event and Interaction class. | Rapptz | 2021-04-06 | 5 | -0/+147 |
| | | | | | | This is the first pass at the functionality. It's currently a bit incomplete. | ||||
| * | Add support for setting application_id | Rapptz | 2021-04-06 | 2 | -0/+29 |
| | | |||||
| * | [commands] Fix classmethod converters not working. | Rapptz | 2021-04-05 | 1 | -7/+4 |
| | | | | | Protocols sure are annoying. | ||||
| * | [commands] Revert conversion code back to how it was originally | Rapptz | 2021-04-05 | 1 | -8/+7 |
| | | |||||
| * | [commands] Fix AttributeError for classes missing convert attribute | ToxicKidz | 2021-04-05 | 1 | -1/+1 |
| | | |||||
| * | Update changelog for v1.7.1 | Rapptz | 2021-04-05 | 1 | -0/+10 |
| | | |||||
| * | [commands] Fix logic in Cog.has_error_handler() | Rapptz | 2021-04-05 | 1 | -1/+1 |
| | | |||||
| * | [commands] Address incorrect use of subclass (from type perspective) | Michael H | 2021-04-05 | 1 | -4/+5 |
| | | | | This is a follow up from #6641 | ||||
| * | [commands] Add more type information to public API of converters | Michael H | 2021-04-05 | 1 | -18/+18 |
| | | |||||
| * | Remove 3.6 check for `loop.shutdown_asyncgens()` | Nadir Chowdhury | 2021-04-05 | 1 | -2/+1 |
| | | |||||
| * | Use `asyncio.create_task` over `asyncio.ensure_future` | Nadir Chowdhury | 2021-04-05 | 4 | -9/+9 |
| | | |||||
| * | Remove fail-safe for retrieving all tasks | Nadir Chowdhury | 2021-04-05 | 1 | -7/+1 |
| | | |||||
| * | Use covariant TypeVar for protocol | Michael H | 2021-04-05 | 1 | -1/+1 |
| | | |||||
| * | [commands] Fix @classmethod converters | Michael H | 2021-04-05 | 1 | -6/+9 |
| | | |||||
| * | Fix versionadded not showing in docs for Attachment.content_type | Logan | 2021-04-05 | 1 | -1/+1 |
| | | |||||
| * | Remove deprecated client methods | Vaskel | 2021-04-05 | 1 | -50/+0 |
| | | |||||
| * | Add discord.utils.utcnow() helper function to ease migration | Rapptz | 2021-04-04 | 2 | -0/+17 |
| | | |||||
| * | Remove special casing of MAX_ASYNCIO_SECONDS in sleep_until | Rapptz | 2021-04-04 | 1 | -4/+0 |
| | | | | | This compatibility code goes away in Python versions greater than 3.7 | ||||
| * | Convert datetimes to aware datetimes with UTC. | Rapptz | 2021-04-04 | 15 | -61/+83 |
| | | | | | | Naive datetimes will now be interpreted as local time throughout the library. | ||||
| * | Remove some lingering userbot classes in the documentation | Rapptz | 2021-04-04 | 1 | -24/+0 |
| | | |||||
| * | Use 3.8 for ReadTheDocs builds | Rapptz | 2021-04-04 | 1 | -1/+1 |
| | | |||||
| * | Use typing.Protocol instead of abc.ABCMeta | James | 2021-04-04 | 4 | -100/+98 |
| | | |||||
| * | Flatten AsyncIterator.flatten | James | 2021-04-04 | 1 | -42/+1 |
| | | |||||
| * | Remove userbot functionality | Rapptz | 2021-04-04 | 16 | -1541/+59 |
| | | | | | | This has a lot of legacy and cruft so there may be some stuff I've missed but this first pass is enough to get a clear separation. | ||||
| * | Remove asyncio.Task subclass in preference to task names | Rapptz | 2021-04-04 | 1 | -17/+1 |
| | | |||||
| * | Convert two missing places to f-strings | Rapptz | 2021-04-04 | 2 | -2/+2 |
| | | |||||
| * | Remove encoding header from generated code | Rapptz | 2021-04-04 | 1 | -4/+1 |
| | | |||||
| * | [commands] Use positional only parameter for Context.invoke | Rapptz | 2021-04-04 | 1 | -12/+2 |
| | | |||||
| * | Modernize code to use f-strings | Rapptz | 2021-04-04 | 67 | -378/+262 |
| | | | | | | This also removes the encoding on the top, since Python 3 does it by default. It also changes some methods to use `yield from`. | ||||
| * | Bump minimum Python version to 3.8 | Rapptz | 2021-04-04 | 1 | -4/+2 |
| | | |||||
| * | Version bump for development | Rapptz | 2021-04-04 | 1 | -2/+2 |
| | | |||||
| * | Version bump to v1.7v1.7.0 | Rapptz | 2021-04-04 | 1 | -2/+2 |
| | | |||||
| * | Add missing documentation for StoreChannelConverter | Rapptz | 2021-04-04 | 2 | -1/+4 |
| | | |||||
| * | Add missing StoreChannel documentation | Rapptz | 2021-04-04 | 1 | -4/+13 |
| | | |||||
| * | Fix StoreChannel reference in changelog | Rapptz | 2021-04-04 | 1 | -1/+1 |
| | | |||||
| * | Add content_type to changelog | Rapptz | 2021-04-03 | 1 | -0/+1 |
| | | |||||