| Commit message (Expand) | Author | Age | Files | Lines |
* | gh-122858: Deprecate `asyncio.iscoroutinefunction` (#122875) | Wulian | 2024-08-11 | 1 | -0/+9 |
|
|
* | GH-102748: remove legacy support for generator based coroutines from `asyncio... | Kumar Aditya | 2023-03-16 | 1 | -2/+1 |
|
|
* | gh-84623: Remove unused imports in stdlib (#93773) | Victor Stinner | 2022-06-13 | 1 | -1/+0 |
|
|
* | bpo-43216: Remove @asyncio.coroutine (GH-26369) | Illia Volochii | 2021-07-01 | 1 | -162/+4 |
|
|
* | bpo-36921: Deprecate @coroutine for sake of async def (GH-13346) | Andrew Svetlov | 2019-05-16 | 1 | -0/+4 |
|
|
* | bpo-33672: Fix Task.__repr__ crash with Cython's bogus coroutines (GH-7161) | Yury Selivanov | 2018-05-28 | 1 | -36/+45 |
|
|
* | bpo-32636: Fix @asyncio.coroutine debug mode bug exposed by gh-5250 (#5291) | Nathaniel J. Smith | 2018-01-24 | 1 | -1/+2 |
|
|
* | bpo-32591: Add native coroutine origin tracking (#5250) | Nathaniel J. Smith | 2018-01-21 | 1 | -33/+0 |
|
|
* | bpo-32357: Optimize asyncio.iscoroutine() for non-native coroutines (#4915) | Yury Selivanov | 2017-12-19 | 1 | -5/+16 |
|
|
* | bpo-32311: Implement asyncio.create_task() shortcut (#4848) | Andrew Svetlov | 2017-12-15 | 1 | -5/+5 |
|
|
* | bpo-32258: Replace 'yield from' to 'await' in asyncio docs (#4779) | Andrew Svetlov | 2017-12-11 | 1 | -2/+3 |
|
|
* | bpo-32262: Fix codestyle; use f-strings formatting where necessary. (#4775) | Yury Selivanov | 2017-12-10 | 1 | -25/+18 |
|
|
* | bpo-32101: Add PYTHONDEVMODE environment variable (#4624) | Victor Stinner | 2017-11-30 | 1 | -5/+3 |
|
|
* | bpo-32166: Drop Python 3.4 code from asyncio (#4612) | Andrew Svetlov | 2017-11-29 | 1 | -80/+14 |
|
|
* | asyncio: Remove asyncio/compat.py (#4606) | Victor Stinner | 2017-11-28 | 1 | -25/+22 |
|
|
* | bpo-32047: -X dev enables asyncio debug mode (#4418) | Victor Stinner | 2017-11-20 | 1 | -11/+19 |
|
|
* | bpo-31970: Reduce performance overhead of asyncio debug mode. (#4314) | Antoine Pitrou | 2017-11-07 | 1 | -3/+5 |
|
|
* | Fix a typo in a comment in coroutines.py (GH-2267) | Johan de Jager | 2017-06-24 | 1 | -1/+1 |
|
|
* | Merge 3.5 (issue #28703) | Yury Selivanov | 2016-11-15 | 1 | -2/+14 |
|\ |
|
| * | Issue #28703: Fix asyncio.iscoroutinefunction to handle Mock objects. | Yury Selivanov | 2016-11-15 | 1 | -2/+14 |
|
|
* | | Merge 3.5 (asyncio) | Yury Selivanov | 2016-11-09 | 1 | -2/+6 |
|\ \
| |/ |
|
| * | asyncio: Fix _format_coroutine for coroutine-like objects w/o __name__ | Yury Selivanov | 2016-11-09 | 1 | -2/+6 |
|
|
* | | Issue #28544: Implement asyncio.Task in C. | Yury Selivanov | 2016-10-28 | 1 | -2/+2 |
|/ |
|
* | Issue #28372: Fix asyncio to support formatting of non-python coroutines | Yury Selivanov | 2016-10-05 | 1 | -0/+19 |
|
|
* | Misc asyncio improvements from upstream | Guido van Rossum | 2016-09-30 | 1 | -2/+2 |
|
|
* | Issue #26654: Inspect functools.partial in asyncio.Handle.__repr__. | Yury Selivanov | 2016-09-15 | 1 | -1/+1 |
|
|
* | Merge asyncio upstream. | Guido van Rossum | 2016-09-09 | 1 | -2/+2 |
|
|
* | asyncio: Fix @coroutine to recognize CoroWrapper (issue #25647) | Yury Selivanov | 2016-03-02 | 1 | -1/+2 |
|
|
* | Sync with asyncio repo | Andrew Svetlov | 2016-01-11 | 1 | -7/+10 |
|
|
* | asyncio: Error if awaiting in parallel on the same coroutine | Yury Selivanov | 2015-11-18 | 1 | -1/+7 |
|
|
* | asyncio: Add asyncio.compat module | Victor Stinner | 2015-07-25 | 1 | -4/+2 |
|
|
* | Issue #24450: Proxy gi_yieldfrom & cr_await in asyncio.CoroWrapper | Yury Selivanov | 2015-07-03 | 1 | -0/+8 |
|
|
* | Fix asyncio unittests in debug mode | Yury Selivanov | 2015-06-24 | 1 | -0/+2 |
|
|
* | Issue #24400: Fix CoroWrapper for 'async def' coroutines | Yury Selivanov | 2015-06-24 | 1 | -10/+40 |
|
|
* | asyncio: Merge changes from issue #24400. | Yury Selivanov | 2015-06-24 | 1 | -31/+17 |
|
|
* | Issue 24017: Fix asyncio.CoroWrapper to support 'async def' coroutines | Yury Selivanov | 2015-06-01 | 1 | -1/+1 |
|
|
* | Issue 24004: Support Awaitables (pep 492) in @asyncio.coroutine decorator | Yury Selivanov | 2015-05-31 | 1 | -2/+13 |
|
|
* | asyncio: Use 'collections.abc.Coroutine' in asyncio.iscoroutine (in 3.5) | Yury Selivanov | 2015-05-13 | 1 | -0/+8 |
|
|
* | asyncio: Support PEP 492. Issue #24017. | Yury Selivanov | 2015-05-12 | 1 | -13/+64 |
|
|
* | Asyncio issue 222 / PR 231 (Victor Stinner) -- fix @coroutine functions witho... | Guido van Rossum | 2015-05-03 | 1 | -6/+12 |
|
|
* | asyncio: Truncate to 80 columns | Victor Stinner | 2015-01-08 | 1 | -4/+8 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2014-07-10 | 1 | -9/+3 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2014-07-10 | 1 | -6/+18 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2014-07-07 | 1 | -2/+2 |
|
|
* | Closes #21886, #21447: Fix a race condition in asyncio when setting the result | Victor Stinner | 2014-07-05 | 1 | -0/+6 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2014-07-02 | 1 | -6/+8 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2014-06-30 | 1 | -8/+49 |
|
|
* | asyncio: sync with Tulip, add a new asyncio.coroutines module | Victor Stinner | 2014-06-28 | 1 | -0/+140 |
|
|