summaryrefslogtreecommitdiffstatshomepage
path: root/Lib/asyncio/tasks.py
Commit message (Collapse)AuthorAge
...
* asyncio: Add gi_{frame,running,code} properties to CoroWrapper (upstream #163).Guido van Rossum2014-04-15
|
* asyncio.tasks: Make sure CoroWrapper.send proxies one argument correctlyYury Selivanov2014-04-15
| | | | Issue #21209.
* asyncio.tasks: Fix CoroWrapper to workaround yield-from bug in CPython < 3.4.1Yury Selivanov2014-04-14
| | | | Closes issue #21209.
* asyncio: Document Task.cancel() properly.Victor Stinner2014-04-07
|
* asyncio, Tulip issue 158: Task._step() now also sets self to None if anVictor Stinner2014-03-04
| | | | exception is raised. self is set to None to break a reference cycle.
* asyncio: remove unused imports and unused variables noticed by pyflakesVictor Stinner2014-02-20
|
* asyncio, Tulip issue #136: Add get/set_debug() methods to BaseEventLoopTests.Victor Stinner2014-02-19
| | | | | | Add also a PYTHONASYNCIODEBUG environment variable to debug coroutines since Python startup, to be able to debug coroutines defined directly in the asyncio module.
* asyncio: Fix spelling and typos.Yury Selivanov2014-02-18
| | | | Thanks to Vajrasky Kok for discovering some of them.
* asyncio: Change as_completed() to use a Queue, to avoid O(N**2) behavior. ↵Guido van Rossum2014-02-12
| | | | Fixes issue #20566.
* asyncio, Tulip issue 131: as_completed() and wait() now raises a TypeError ifVictor Stinner2014-02-11
| | | | the list of futures is not a list but a Future, Task or coroutine object
* asyncio.tasks: Fix as_completed, gather & wait to work with duplicate coroutinesYury Selivanov2014-02-06
|
* asyncio.tasks.gather: Fix docstringYury Selivanov2014-02-06
|
* asyncio: wait_for() now accepts None as timeout (Victor Stinner).Guido van Rossum2014-01-29
|
* asyncio: wait_for() now cancels the future on timeout. Patch written by GustavoVictor Stinner2014-01-23
| | | | Carneiro.
* asyncio: Reincarnate CoroWrapper's docstring as a comment.Guido van Rossum2014-01-16
|
* asyncio: Fix CoroWrapper (fix my previous commit)Victor Stinner2014-01-16
| | | | Add __name__ and __doc__ to __slots__
* asyncio: Fix a typo in CoroWrapperVictor Stinner2014-01-16
| | | | __slot__ => __slots__
* Export asyncio.iscoroutine[function].Guido van Rossum2013-12-28
|
* asyncio: Add Task.current_task() class method.Guido van Rossum2013-12-06
|
* asyncio: Add 'shield' to __all__.Guido van Rossum2013-11-29
|
* asyncio: Fold some long lines.Guido van Rossum2013-11-01
|
* Rename the logger to plain "logger".Guido van Rossum2013-10-17
|
* Initial checkin of asyncio package (== Tulip, == PEP 3156).Guido van Rossum2013-10-17