summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio/tasks.py
Commit message (Expand)AuthorAgeFilesLines
* Revert da29a94367b2Yury Selivanov2015-08-021-2/+3
* asyncio: Fix code styleYury Selivanov2015-08-021-3/+2
* asyncio: sync with githubVictor Stinner2015-07-251-2/+0
* asyncio: Add asyncio.compat moduleVictor Stinner2015-07-251-3/+2
* asyncio: Drop some useless code from tasks.py.Yury Selivanov2015-05-281-7/+2
* asyncio: Support PEP 492. Issue #24017.Yury Selivanov2015-05-121-2/+6
* asyncio: async() function is deprecated in favour of ensure_future().Yury Selivanov2015-05-111-6/+21
* asyncio: sync with TulipVictor Stinner2015-01-291-1/+1
* Closes #23219: cancelling asyncio.wait_for() now cancels the taskVictor Stinner2015-01-151-4/+8
* asyncio: sync with TulipVictor Stinner2015-01-091-4/+7
* asyncio: Truncate to 80 columnsVictor Stinner2015-01-081-1/+1
* asyncio: Initialize more Future and Task attributes in the class definition toVictor Stinner2014-12-041-3/+4
* Closes #22475: asyncio doc, fix Task.get_stack() docVictor Stinner2014-12-021-1/+1
* Apply asyncio Task English fixes to docstrings as well.R David Murray2014-09-241-9/+10
* asyncio, Tulip issue 201: Fix a race condition in wait_for()Victor Stinner2014-08-281-6/+9
* asyncio: sync with TulipVictor Stinner2014-07-291-19/+8
* Issue #21163: Fix "destroy pending task" warning in test_wait_errors()Victor Stinner2014-07-161-2/+2
* Issue #21163, asyncio: Ignore "destroy pending task" warnings for private tasksVictor Stinner2014-07-161-11/+23
* asyncio: sync with TulipVictor Stinner2014-07-111-1/+0
* asyncio: sync with TulipVictor Stinner2014-07-101-1/+0
* asyncio: sync with TulipVictor Stinner2014-07-101-1/+6
* asyncio: sync with TulipVictor Stinner2014-07-081-1/+3
* Closes #21886, #21447: Fix a race condition in asyncio when setting the resultVictor Stinner2014-07-051-1/+2
* asyncio: sync with TulipVictor Stinner2014-07-021-0/+3
* Issue #21163: BaseEventLoop.run_until_complete() and test_utils.run_briefly()Victor Stinner2014-06-301-1/+4
* asyncio: sync with Tulip, add a new asyncio.coroutines moduleVictor Stinner2014-06-281-135/+8
* asyncio, Tulip issue 137: In debug mode, save traceback where Future, Task andVictor Stinner2014-06-271-3/+11
* asyncio, Tulip issue 137: In debug mode, add the traceback where the coroutineVictor Stinner2014-06-271-7/+10
* asyncio, Tulip issue 177: Rewite repr() of Future, Task, Handle and TimerHandleVictor Stinner2014-06-251-20/+31
* asyncio: repr(Task) now also contains the line number even if the coroutine isVictor Stinner2014-06-241-2/+4
* asyncio: Log an error if a Task is destroyed while it is still pendingVictor Stinner2014-06-241-0/+13
* asyncio: Set __qualname__ attribute of CoroWrapper in @coroutine decorator onVictor Stinner2014-06-171-4/+6
* asyncio: Task.__repr__() now also handles CoroWrapperVictor Stinner2014-06-161-1/+1
* asyncio: Tulip issue 173: Enhance repr(Handle) and repr(Task)Victor Stinner2014-06-121-1/+9
* Issue #21596: asyncio.wait(): mention that the sequence of futures must notVictor Stinner2014-06-101-0/+2
* Issue #21601: Document asyncio.Task.cancel(). Initial patch written by VajraskyVictor Stinner2014-06-021-2/+2
* asyncio: Add __weakref__ slots to Handle and CoroWrapper. Upstream issue #166.Guido van Rossum2014-04-271-1/+1
* asyncio: Be careful accessing instance variables in __del__ (closes #21340).Guido van Rossum2014-04-271-1/+3
* asyncio: Add gi_{frame,running,code} properties to CoroWrapper (upstream #163).Guido van Rossum2014-04-151-0/+12
* asyncio.tasks: Make sure CoroWrapper.send proxies one argument correctlyYury Selivanov2014-04-151-0/+2
* asyncio.tasks: Fix CoroWrapper to workaround yield-from bug in CPython < 3.4.1Yury Selivanov2014-04-151-1/+4
* asyncio: Document Task.cancel() properly.Victor Stinner2014-04-071-0/+19
* asyncio, Tulip issue 158: Task._step() now also sets self to None if anVictor Stinner2014-03-041-1/+1
* asyncio: remove unused imports and unused variables noticed by pyflakesVictor Stinner2014-02-201-2/+0
* asyncio, Tulip issue #136: Add get/set_debug() methods to BaseEventLoopTests.Victor Stinner2014-02-191-1/+4
* asyncio: Fix spelling and typos.Yury Selivanov2014-02-191-1/+1
* asyncio: Change as_completed() to use a Queue, to avoid O(N**2) behavior. Fix...Guido van Rossum2014-02-131-20/+33
* asyncio, Tulip issue 131: as_completed() and wait() now raises a TypeError ifVictor Stinner2014-02-111-0/+4
* asyncio.tasks: Fix as_completed, gather & wait to work with duplicate coroutinesYury Selivanov2014-02-071-3/+4
* asyncio.tasks.gather: Fix docstringYury Selivanov2014-02-061-1/+1