summaryrefslogtreecommitdiff
path: root/asyncio/tasks.py
Commit message (Expand)AuthorAgeFilesLines
* Cleanup gather(): use cancelled() method instead of using private FutureVictor Stinner2015-01-291-1/+1
* Python issue #23219: cancelling wait_for() now cancels the taskVictor Stinner2015-01-151-4/+8
* Cleanup gather()Victor Stinner2015-01-091-4/+7
* Truncate to 80 columnsVictor Stinner2015-01-091-1/+1
* Python issue #22475: fix Task.get_stack() docVictor Stinner2014-12-041-1/+1
* Initialize more Future and Task attributes in the class definition to avoidVictor Stinner2014-12-041-3/+4
* tasks.py: Sync comments updates from cpython treeYury Selivanov2014-09-241-9/+10
* Tulip issue #201: Fix a race condition in wait_for()Victor Stinner2014-08-281-6/+9
* Enhance representation of Future and Future subclassesVictor Stinner2014-07-291-19/+8
* Python issue 21163: Fix "destroy pending task" warning in test_wait_errors()Victor Stinner2014-07-161-2/+2
* Python issue 21163: Ignore "destroy pending task" warnings for private tasks inVictor Stinner2014-07-161-11/+23
* Fix some pyflakes warnings: remove unused importsVictor Stinner2014-07-111-1/+0
* Improve CoroWrapper: copy also the qualified name on Python 3.4, not only onVictor Stinner2014-07-111-1/+0
* repr(Task) and repr(CoroWrapper) now also includes where these objects wereVictor Stinner2014-07-101-1/+6
* Tulip issue #185: Add a create_task() method to event loopsVictor Stinner2014-07-081-1/+3
* Python issue 21447, 21886: Fix a race condition when setting the result of aVictor Stinner2014-07-051-1/+2
* Backed out changeset b288da71fb40Victor Stinner2014-07-031-4/+1
* Add asyncio.tasks.task_factory variableVictor Stinner2014-07-031-1/+4
* repr(Task): include also the future the task is waiting forVictor Stinner2014-07-011-0/+3
* Python issue #21163: BaseEventLoop.run_until_complete() andVictor Stinner2014-06-301-1/+4
* Move coroutine code in the new module asyncio.coroutinesVictor Stinner2014-06-291-135/+8
* Tulip issue #137: In debug mode, save traceback where Future, Task and HandleVictor Stinner2014-06-271-3/+11
* Tulip issue #137: In debug mode, add the traceback where the coroutine objectVictor Stinner2014-06-271-7/+10
* Tulip issue #177: Rewite repr() of Future, Task, Handle and TimerHandleVictor Stinner2014-06-251-20/+31
* repr(Task) now also contains the line number even if the coroutine is done: useVictor Stinner2014-06-241-2/+4
* Log an error if a Task is destroyed while it is still pending, but only onVictor Stinner2014-06-241-0/+13
* Set __qualname__ attribute of CoroWrapper in @coroutine decoratorVictor Stinner2014-06-181-4/+6
* Task.__repr__() now also handles CoroWrapperVictor Stinner2014-06-171-1/+1
* Issue #173: Enhance repr(Handle) and repr(Task)Victor Stinner2014-06-121-1/+9
* wait(): mention that the future sequence must not be emptyVictor Stinner2014-06-101-0/+2
* Rephrase Task.cancel docstringVictor Stinner2014-06-021-1/+1
* Fix docstring typo: CancellationError should be CancelledError.Guido van Rossum2014-05-281-1/+1
* Add __weakref__ slots to Handle and CoroWrapper. Fixes issue #166.Guido van Rossum2014-04-271-1/+1
* Be careful accessing instance variables in __del__ (CPython issue 21340).Guido van Rossum2014-04-271-1/+3
* Add gi_{frame,running,code} properties to CoroWrapper. Fixes issue #163.Guido van Rossum2014-04-151-0/+12
* tasks: Make sure CoroWrapper.send proxies one argument correctlyYury Selivanov2014-04-151-0/+2
* tasks: Fix CoroWrapper to workaround yield-from bug in CPythonYury Selivanov2014-04-141-1/+4
* Fix bad grammar.Guido van Rossum2014-03-311-2/+2
* Document Task.cancel() properly.Guido van Rossum2014-03-311-0/+19
* Issue #158: Task._step() now also sets self to None if an exception is raised.Victor Stinner2014-03-041-1/+1
* asyncio: remove unused imports and unused variables noticed by pyflakesVictor Stinner2014-02-201-2/+0
* Issue #136: Add get/set_debug() methods to BaseEventLoopTests. Add also aVictor Stinner2014-02-191-1/+4
* Fix spelling & typosYury Selivanov2014-02-181-1/+1
* Change as_completed() to use a Queue, to avoid O(N**2) behavior. Fixes issue ...Guido van Rossum2014-02-121-20/+33
* Issue #131: as_completed() and wait() now raises a TypeError if the list ofVictor Stinner2014-02-111-0/+4
* tasks: Fix as_completed, gather & wait to work with duplicate coroutines. Iss...Yury Selivanov2014-02-061-3/+4
* tasks.gather: Fix docstringYury Selivanov2014-02-061-1/+1
* Move async() call back to its original position. Issue 117.Guido van Rossum2014-01-281-1/+1
* wait_for() now accepts None as timeoutVictor Stinner2014-01-281-1/+4
* wait_for() now cancels the future on timeout. Patch written by GustavoVictor Stinner2014-01-221-2/+4