| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Typehint context_managers.py | Stocker | 2021-08-20 | 1 | -10/+28 |
| | | |||||
| * | Add `__all__` to remaining modules | Nadir Chowdhury | 2021-04-07 | 1 | -0/+4 |
| | | |||||
| * | Modernize code to use f-strings | Rapptz | 2021-04-04 | 1 | -2/+0 |
| | | | | | | This also removes the encoding on the top, since Python 3 does it by default. It also changes some methods to use `yield from`. | ||||
| * | Change copyright year to present | Nihaal Sangha | 2021-01-15 | 1 | -1/+1 |
| | | |||||
| * | Bump copyright year to 2020 | Rapptz | 2020-01-19 | 1 | -1/+1 |
| | | | | | Closes #2510 | ||||
| * | Catch asyncio.CancelledError in 3.8 in typing context manager | Benjamin Mintz | 2019-06-20 | 1 | -1/+1 |
| | | | | | | | | | | | | | In python 3.8, asyncio.CancelledError is a subclass of BaseException rather than Exception, so `except Exception:` will not swallow CancelledError. This change prevents an error in 3.8 from being printed to the console when the following is run: ``` async with ctx.typing(): pass ``` | ||||
| * | Bumped copyright years to 2019. | Dante Dam | 2019-01-28 | 1 | -1/+1 |
| | | |||||
| * | [lint] Limit unneccessarily broad except clauses | Hornwitser | 2018-11-24 | 1 | -1/+1 |
| | | | | | Add exception qualifier(s) to bare except clauses swallowing exceptions. | ||||
| * | Fix NameError for typing context manager. | Rapptz | 2018-06-10 | 1 | -1/+1 |
| | | | | | Fixes #1342 | ||||
| * | Remove dead package references. | Rapptz | 2018-06-10 | 1 | -2/+0 |
| | | |||||
| * | Drop support for Python 3.4 and make minimum version 3.5.2. | Rapptz | 2018-06-10 | 1 | -11/+8 |
| | | |||||
| * | Start typing immediately when using async typing context manager. | Rapptz | 2017-04-12 | 1 | -6/+17 |
| | | |||||
| * | Update copyright year to 2017. | Rapptz | 2017-01-20 | 1 | -1/+1 |
| | | |||||
| * | Fix Messageable.typing context manager. | Rapptz | 2017-01-03 | 1 | -6/+7 |
| | | |||||
| * | Add MessageChannel.typing context manager for prolonged typing. | Rapptz | 2017-01-03 | 1 | -0/+60 |