| Commit message (Expand) | Author | Age | Files | Lines |
* | bpo-45011: Fix test_asyncio without C module _asyncio (GH-27968) | Miss Islington (bot) | 2021-08-26 | 1 | -0/+2 |
|
|
* | bpo-39529: Deprecate creating new event loop in asyncio.get_event_loop() (GH-... | Serhiy Storchaka | 2021-04-25 | 1 | -10/+52 |
|
|
* | bpo-31033: Add a msg argument to Future.cancel() and Task.cancel() (GH-19979) | Chris Jerdonek | 2020-05-15 | 1 | -0/+21 |
|
|
* | bpo-38785: Prevent asyncio from crashing (GH-17144) | Andrew Svetlov | 2019-11-13 | 1 | -0/+39 |
|
|
* | bpo-35504: Fix segfaults and SystemErrors when deleting certain attrs. (GH-11... | Zackery Spytz | 2018-12-17 | 1 | -0/+7 |
|
|
* | bpo-33562: Check the global asyncio event loop policy isn't set after any tes... | Brett Cannon | 2018-06-02 | 1 | -0/+4 |
|
|
* | bpo-32643: Drop support for a few private Task and Future APIs. (#5293) | Yury Selivanov | 2018-01-24 | 1 | -4/+0 |
|
|
* | bpo-32436: Implement PEP 567 (#5027) | Yury Selivanov | 2018-01-23 | 1 | -4/+10 |
|
|
* | bpo-31721: Allow Future._log_traceback to only be set to False (#5009) | Yury Selivanov | 2017-12-25 | 1 | -0/+5 |
|
|
* | bpo-32363: Disable Task.set_exception() and Task.set_result() (#4923) | Yury Selivanov | 2017-12-25 | 1 | -1/+2 |
|
|
* | bpo-32415: Add asyncio.Task.get_loop() and Future.get_loop() (#4992) | Yury Selivanov | 2017-12-23 | 1 | -0/+1 |
|
|
* | bpo-32348: Optimize asyncio.Future schedule/add/remove callback. (#4907) | Yury Selivanov | 2017-12-18 | 1 | -21/+138 |
|
|
* | bpo-32273: Move asyncio.test_utils to test.test_asyncio (#4785) | Yury Selivanov | 2017-12-11 | 1 | -5/+2 |
|
|
* | bpo-31185: Fixed miscellaneous errors in asyncio speedup module. (#3076) | Serhiy Storchaka | 2017-09-03 | 1 | -8/+37 |
|
|
* | bpo-31250, test_asyncio: fix dangling threads (#3252) | Victor Stinner | 2017-09-01 | 1 | -0/+2 |
|
|
* | bpo-31061: fix crash in asyncio speedup module (GH-2966) | Alexander Mohr | 2017-08-02 | 1 | -0/+12 |
|
|
* | bpo-30828: Fix out of bounds write in `asyncio.CFuture.remove_done_callback()... | Yury Selivanov | 2017-07-05 | 1 | -1/+23 |
|
|
* | bpo-30508: Don't log exceptions if Task/Future "cancel()" method called (#2050) | Yury Selivanov | 2017-06-11 | 1 | -0/+8 |
|
|
* | bpo-28963: Fix out of bound iteration in asyncio.Future.remove_done_callback/... | Yury Selivanov | 2017-03-03 | 1 | -0/+29 |
|
|
* | correctly emulate error semantics of gen.throw in FutureIter_throw | Benjamin Peterson | 2016-11-14 | 1 | -0/+9 |
|
|
* | Merge 3.5 (issue #28634) | Yury Selivanov | 2016-11-07 | 1 | -0/+23 |
|\ |
|
| * | Issue #28634: Fix asyncio.isfuture() to support mocks | Yury Selivanov | 2016-11-07 | 1 | -0/+23 |
|
|
* | | Merge 3.5 (issue #28613) | Yury Selivanov | 2016-11-04 | 1 | -0/+3 |
|\ \
| |/ |
|
| * | Issue #28613: Fix get_event_loop() to return the current loop | Yury Selivanov | 2016-11-04 | 1 | -0/+3 |
|
|
* | | asyncio: Increase asyncio.Future test coverage; test both implementations. | Yury Selivanov | 2016-10-24 | 1 | -81/+75 |
|
|
* | | Issue #28492: Fix how StopIteration is raised in _asyncio.Future | Yury Selivanov | 2016-10-20 | 1 | -0/+13 |
|/ |
|
* | Merge asyncio upstream. | Guido van Rossum | 2016-09-09 | 1 | -0/+68 |
|
|
* | Issue #27041: asyncio: Add loop.create_future method | Yury Selivanov | 2016-05-16 | 1 | -8/+9 |
|
|
* | asyncio/tests: Ensure a gc_collect for __del__ testing | Yury Selivanov | 2016-05-13 | 1 | -0/+1 |
|
|
* | asyncio: Prevent StopIteration from being thrown into a Future | Yury Selivanov | 2016-03-02 | 1 | -0/+4 |
|
|
* | asyncio: Cleanup Future API | Yury Selivanov | 2015-11-17 | 1 | -4/+7 |
|
|
* | Issue #25304: Add asyncio.run_coroutine_threadsafe(). By Vincent Michel. | Guido van Rossum | 2015-10-03 | 1 | -2/+0 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2015-01-14 | 1 | -0/+1 |
|
|
* | asyncio: Truncate to 80 columns | Victor Stinner | 2015-01-08 | 1 | -8/+16 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2014-12-26 | 1 | -1/+1 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2014-12-18 | 1 | -1/+4 |
|
|
* | asyncio: Fix formatting of the "Future exception was never retrieved" in | Victor Stinner | 2014-11-20 | 1 | -23/+42 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2014-07-29 | 1 | -7/+10 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2014-07-10 | 1 | -0/+6 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2014-07-08 | 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: Fix unit tests on Windows, escape filenames in regex | Victor Stinner | 2014-06-27 | 1 | -4/+4 |
|
|
* | asyncio, Tulip issue 137: In debug mode, save traceback where Future, Task and | Victor Stinner | 2014-06-27 | 1 | -0/+59 |
|
|
* | asyncio, Tulip issue 177: Rewite repr() of Future, Task, Handle and TimerHandle | Victor Stinner | 2014-06-25 | 1 | -14/+42 |
|
|
* | asyncio: Refactor tests: add a base TestCase class | Victor Stinner | 2014-06-17 | 1 | -18/+7 |
|
|
* | asyncio: Replace "unittest.mock" with "mock" in unit tests | Victor Stinner | 2014-02-26 | 1 | -8/+8 |
|
|
* | asyncio: Fix spelling and typos. | Yury Selivanov | 2014-02-19 | 1 | -1/+1 |
|
|
* | asyncio: New error handling API. Issue #20681. | Yury Selivanov | 2014-02-18 | 1 | -6/+6 |
|
|
* | asyncio: Future.set_exception(exc) should instantiate exc if it is a class. | Victor Stinner | 2014-01-31 | 1 | -0/+5 |
|
|
* | Update asyncio from the Tulip project | Victor Stinner | 2014-01-25 | 1 | -50/+49 |
|
|