summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio
Commit message (Expand)AuthorAgeFilesLines
* Issue #25523: Correct "a" article to "an" articleMartin Panter2015-11-021-1/+1
* Issue #25441: asyncio: Raise error from drain() when socket is closed.Guido van Rossum2015-10-191-0/+9
* Docs and one small improvement for issue #25304, by Vincent Michel.Guido van Rossum2015-10-051-1/+6
* Issue #23972: updates to asyncio datagram API. By Chris Laws.Guido van Rossum2015-10-052-68/+146
* Issue #25304: Add asyncio.run_coroutine_threadsafe(). By Vincent Michel.Guido van Rossum2015-10-032-17/+75
* asyncio: ensure_future() now understands awaitablesYury Selivanov2015-10-021-2/+14
* Also rewrote the guts of asyncio.Semaphore (patch by manipopopo).Guido van Rossum2015-09-291-16/+21
* Fix StreamReader.__repr__Andrew Svetlov2015-09-291-1/+1
* Issue #25233: Rewrite the guts of Queue to be more understandable and correct.Guido van Rossum2015-09-281-111/+41
* Issue #23630, asyncio: host parameter of loop.create_server() can now be aVictor Stinner2015-09-212-8/+30
* Issue #25114, asyncio: add ssl_object extra info to SSL transportsVictor Stinner2015-09-212-0/+5
* Issue #24867: Fix Task.get_stack() for 'async def' coroutinesYury Selivanov2015-08-141-1/+5
* Issue #23812: Fix getter-cancellation with many pending getters code pathYury Selivanov2015-08-061-1/+1
* asyncio: Make sure BaseException is re-raised in SSLProtocolYury Selivanov2015-08-051-1/+6
* Issue #23812: Fix asyncio.Queue.get() to avoid loosing items on cancellation.Yury Selivanov2015-08-051-9/+38
* asyncio: Sync with upstream (compat module)Yury Selivanov2015-08-046-11/+13
* asyncio: Sync with mainstreamYury Selivanov2015-08-041-1/+1
* Revert da29a94367b2Yury Selivanov2015-08-021-2/+3
* asyncio: Fix code styleYury Selivanov2015-08-021-3/+2
* Fix ResourceWarning in asyncio.BaseSubprocessTransportVictor Stinner2015-07-311-2/+7
* asyncio: sync with githubVictor Stinner2015-07-256-12/+25
* asyncio: Add asyncio.compat moduleVictor Stinner2015-07-258-30/+35
* asyncio: sync with github asyncioVictor Stinner2015-07-091-1/+1
* Issue #24450: Proxy gi_yieldfrom & cr_await in asyncio.CoroWrapperYury Selivanov2015-07-031-0/+8
* Fix asyncio unittests in debug modeYury Selivanov2015-06-241-0/+2
* 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 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
* asyncio: Drop some useless code from tasks.py.Yury Selivanov2015-05-281-7/+2
* 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
* asyncio: Make sure sys.set_coroutine_wrapper is called *only* when loop is ru...Yury Selivanov2015-05-121-35/+45
* asyncio: Support PEP 492. Issue #24017.Yury Selivanov2015-05-124-24/+112
* 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 issue 222 / PR 231 (Victor Stinner) -- fix @coroutine functions witho...Guido van Rossum2015-05-033-11/+23
* Fix asyncio issue 235: Queue subclass bug caused by JoinableQueue merge.Guido van Rossum2015-04-201-6/+13
* 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