summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio
Commit message (Expand)AuthorAgeFilesLines
...
| * asyncio: Fix unix pipe transport 'repr' methodsYury Selivanov2016-05-131-4/+10
* | Merge 3.5 (asyncio)Yury Selivanov2016-05-131-4/+7
|\ \ | |/
| * asyncio: Break reference cycle in StreamReaderProtocol.connection_lostYury Selivanov2016-05-131-4/+7
* | Merge 3.5 (issue #26848)Yury Selivanov2016-05-131-1/+1
|\ \ | |/
| * Issue #26848: Fix asyncio/subprocess.communicate() to handle empty input.Yury Selivanov2016-05-131-1/+1
* | Issue #26778: Fixed "a/an/and" typos in code comment, documentation and errorSerhiy Storchaka2016-04-171-1/+1
|\ \ | |/
| * Issue #26778: Fixed "a/an/and" typos in code comment and documentation.Serhiy Storchaka2016-04-171-1/+1
* | Issue #15984: Merge PyUnicode doc from 3.5Martin Panter2016-04-151-1/+1
|\ \ | |/
| * Correct “an” → “a” with “Unicode”, “user”, “UTF”, etcMartin Panter2016-04-151-1/+1
* | Merge 3.5 (asyncio)Victor Stinner2016-04-015-5/+10
|\ \ | |/
| * asyncio: Don't log ConnectionAbortedErrorVictor Stinner2016-04-015-5/+10
* | Merge 3.5 (asyncio)Victor Stinner2016-04-011-6/+8
|\ \ | |/
| * asyncio: allow None as wait timeoutVictor Stinner2016-04-011-6/+8
* | Add a source parameter to warnings.warn()Victor Stinner2016-03-227-8/+16
|/
* asyncio: Remove duplicate bind addresses in create_server.Yury Selivanov2016-03-021-2/+5
* asyncio: Prevent StopIteration from being thrown into a FutureYury Selivanov2016-03-021-0/+3
* asyncio: Fix @coroutine to recognize CoroWrapper (issue #25647)Yury Selivanov2016-03-021-1/+2
* Issue #26304: Change "allows to <verb>" to "allows <verb>ing" or similarMartin Panter2016-02-101-1/+1
* Fix error message in asyncio.selector_events.Victor Stinner2016-02-011-6/+6
* Issue #26050: Add asyncio.StreamReader.readuntil() method.Yury Selivanov2016-01-111-38/+187
* Sync with asyncioAndrew Svetlov2016-01-111-1/+1
* Sync with asyncio repoAndrew Svetlov2016-01-112-7/+61
* asyncio: Skip getaddrinfo if host is already resolved.Yury Selivanov2015-12-174-45/+89
* asyncio: Make Tasks check if Futures are attached to the same event loopYury Selivanov2015-12-111-1/+7
* asyncio: Sync with githubYury Selivanov2015-12-111-0/+3
* asyncio: Fix with githubYury Selivanov2015-11-201-0/+11
* asyncio: Drop "value" parameter from Task._step method.Yury Selivanov2015-11-201-10/+12
* Issue #25593: Change semantics of EventLoop.stop().Guido van Rossum2015-11-192-21/+15
* asyncio: Error if awaiting in parallel on the same coroutineYury Selivanov2015-11-181-1/+7
* asyncio: Cleanup Future APIYury Selivanov2015-11-175-36/+42
* asyncio: Sync with githubYury Selivanov2015-11-171-3/+0
* asyncio: Optimize Task._wakeupYury Selivanov2015-11-161-2/+11
* asyncio: Add Transport.is_closing()Yury Selivanov2015-11-167-1/+23
* asyncio: Optimize asyncio.sleep(0)Yury Selivanov2015-11-051-0/+4
* Issue #25523: Further a-to-an corrections.Serhiy Storchaka2015-11-022-2/+2
* 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