| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | Make the bot template use f-strings over str.format | Kallum | 2021-04-07 | 1 | -2/+2 | |
| | | ||||||
| * | Fix inaccuracies with `AsyncIterator` typings | Nadir Chowdhury | 2021-04-07 | 1 | -15/+17 | |
| | | ||||||
| * | Add typings for channels and `PartialUser` | Nadir Chowdhury | 2021-04-07 | 3 | -0/+152 | |
| | | ||||||
| * | Add typing for flags | Nadir Chowdhury | 2021-04-07 | 1 | -26/+48 | |
| | | ||||||
| * | [docs] add note for possible Embed.type strings | Sebastian Law | 2021-04-07 | 1 | -0/+2 | |
| | | ||||||
| * | Fix regression in Activity relying on `try_enum` | Nadir Chowdhury | 2021-04-07 | 1 | -1/+4 | |
| | | ||||||
| * | [docs] add label to basic converters section | Sebastian Law | 2021-04-07 | 1 | -0/+2 | |
| | | ||||||
| * | Fix headers in partial webhook channel and guild objects | Rapptz | 2021-04-07 | 1 | -2/+2 | |
| | | ||||||
| * | Remove type hints from generated docs | Rapptz | 2021-04-07 | 1 | -0/+1 | |
| | | ||||||
| * | Rename discord.types file based on relevant core module file | Rapptz | 2021-04-07 | 2 | -3/+1 | |
| | | ||||||
| * | Typehint discord.Embed and introduce discord.types subpackage | Rapptz | 2021-04-07 | 4 | -93/+252 | |
| | | | | | | | | | The discord.types subpackage is currently only used to do type hinting of API payloads, it's very much incomplete right now and it'll be a rather long process. discord.Embed was typehinted and formatted using black. | |||||
| * | [commands] Update Converter list in ext.commands introduction | Shun Tannai | 2021-04-07 | 1 | -10/+16 | |
| | | ||||||
| * | [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. | |||||