summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio
Commit message (Expand)AuthorAgeFilesLines
* Fix asyncio unittests in debug modeYury Selivanov2015-06-241-0/+2
|\
| * Fix asyncio unittests in debug modeYury Selivanov2015-06-241-0/+2
* | Issue #24400: Fix CoroWrapper for 'async def' coroutinesYury Selivanov2015-06-241-10/+40
|\ \ | |/
| * Issue #24400: Fix CoroWrapper for 'async def' coroutinesYury Selivanov2015-06-241-10/+40
| * asyncio: Merge changes from issue #24400.Yury Selivanov2015-06-241-31/+17
* | Issue #24400: Introduce a distinct type for 'async def' coroutines.Yury Selivanov2015-06-221-31/+17
* | Issue 24017: Fix asyncio.CoroWrapper to support 'async def' coroutinesYury Selivanov2015-06-011-1/+1
|\ \ | |/
| * Issue 24017: Fix asyncio.CoroWrapper to support 'async def' coroutinesYury Selivanov2015-06-011-1/+1
* | Issue 24004: Support Awaitables (pep 492) in @asyncio.coroutine decoratorYury Selivanov2015-05-311-2/+13
|\ \ | |/
| * Issue 24004: Support Awaitables (pep 492) in @asyncio.coroutine decoratorYury Selivanov2015-05-311-2/+13
* | asyncio: Drop some useless code from tasks.py.Yury Selivanov2015-05-281-7/+2
|\ \ | |/
| * asyncio: Drop some useless code from tasks.py.Yury Selivanov2015-05-281-7/+2
* | asyncio: Use 'collections.abc.Coroutine' in asyncio.iscoroutine.Yury Selivanov2015-05-131-0/+8
|\ \ | |/
| * asyncio: Use 'collections.abc.Coroutine' in asyncio.iscoroutine (in 3.5)Yury Selivanov2015-05-131-0/+8
| * Sync asyncio code from default branch.Yury Selivanov2015-05-132-55/+67
* | Issue 24179: Support 'async for' for asyncio.StreamReader.Yury Selivanov2015-05-131-0/+14
* | Issue 24178: support 'async with' for asyncio locks.Yury Selivanov2015-05-131-55/+53
* | asyncio: Make sure sys.set_coroutine_wrapper is called *only* when loop is ru...Yury Selivanov2015-05-121-35/+45
|\ \ | |/
| * asyncio: Make sure sys.set_coroutine_wrapper is called *only* when loop is ru...Yury Selivanov2015-05-121-35/+45
* | asyncio: Merge 3.4 -- Support PEP 492. Issue #24017.Yury Selivanov2015-05-124-24/+112
|\ \ | |/
| * asyncio: Support PEP 492. Issue #24017.Yury Selivanov2015-05-124-24/+112
* | Merge 3.4 (asyncio changes)Yury Selivanov2015-05-113-8/+23
|\ \ | |/
| * asyncio: async() function is deprecated in favour of ensure_future().Yury Selivanov2015-05-113-8/+23
| * Sync asyncio changes from the main repo.Yury Selivanov2015-05-112-12/+42
* | asyncio: Drop JoinableQueue from 3.5Yury Selivanov2015-05-111-6/+1
* | asyncio: Sync with github repoYury Selivanov2015-05-113-13/+48
* | Asyncio issue 222 / PR 231 (Victor Stinner) -- fix @coroutine functions witho...Guido van Rossum2015-05-033-11/+23
|\ \ | |/
| * Asyncio issue 222 / PR 231 (Victor Stinner) -- fix @coroutine functions witho...Guido van Rossum2015-05-033-11/+23
* | Fix asyncio issue 235 (merge from 3.4).Guido van Rossum2015-04-201-6/+13
|\ \ | |/
| * Fix asyncio issue 235: Queue subclass bug caused by JoinableQueue merge.Guido van Rossum2015-04-201-6/+13
* | #23464: remove JoinableQueue that was deprecated in 3.4.4.R David Murray2015-04-121-6/+1
|/
* Issue #23879, asyncio: SelectorEventLoop.sock_connect() must not call connect()Victor Stinner2015-04-071-8/+6
* asyncio: Fix _SelectorTransport.__repr__() if the event loop is closedVictor Stinner2015-03-271-1/+1
* Issue #23456: Add missing @coroutine decorators in asyncioVictor Stinner2015-03-183-0/+5
* asyncio: Fix repr(BaseSubprocessTransport) if it didn't start yetVictor Stinner2015-03-101-2/+5
* Issue #23537: Remove 2 unused private methods of asyncio.BaseSubprocessTransportVictor Stinner2015-02-271-6/+0
* asyncio, Tulip issue 220: Merge JoinableQueue with Queue.Victor Stinner2015-02-171-59/+43
* asyncio: BaseSubprocessTransport: repr() mentions when the child process isVictor Stinner2015-02-171-0/+2
* asyncio: BaseSubprocessTransport.close() doesn't try to kill the process if itVictor Stinner2015-02-101-1/+6
* asyncio: BaseEventLoop: rename _owner to _thread_idVictor Stinner2015-02-051-6/+6
* asyncio: Only call _check_resolved_address() in debug modeVictor Stinner2015-02-043-18/+36
* asyncio: BaseSelectorEventLoop uses directly the private _debug attributeVictor Stinner2015-02-041-5/+5
* asyncio, Tulip issue 221: Fix doc of QueueEmpty and QueueFullVictor Stinner2015-02-031-2/+6
* Issue #23353, asyncio: Workaround CPython bug #23353Victor Stinner2015-02-023-4/+23
* Issue #23347, asyncio: send_signal(), terminate(), kill() don't check if theVictor Stinner2015-01-301-4/+3
* Issue #23347, asyncio: Make BaseSubprocessTransport.wait() privateVictor Stinner2015-01-294-4/+4
* asyncio: sync with TulipVictor Stinner2015-01-294-87/+83
* Issue #23243, asyncio: Emit a ResourceWarning when an event loop or a transportVictor Stinner2015-01-298-5/+96
* asyncio: sync with TulipVictor Stinner2015-01-293-13/+50
* asyncio doc: document Protocol state machineVictor Stinner2015-01-291-0/+5