aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/asyncio/unix_events.py
Commit message (Expand)AuthorAge
* asyncio: use directly socket.socketpair() (#4597)Victor Stinner2017-11-28
* bpo-32066: Support pathlib.Path in create_unix_connection; sock arg should be...Yury Selivanov2017-11-20
* bpo-29617: Remove Python 3.3 support from asyncio (GH-232)INADA Naoki2017-04-25
* Merge 3.5 (issue #28704)Yury Selivanov2016-11-15
|\
| * Issue #28704: Fix create_unix_server to support Path-like objectsYury Selivanov2016-11-15
* | Merge 3.5 (issue #28652)Yury Selivanov2016-11-09
|\|
| * Issue #28652: Make loop methods reject socket kinds they do not support.Yury Selivanov2016-11-09
* | Merge 3.5 (issue #28399)Yury Selivanov2016-10-09
|\|
| * Issue #28399: Remove UNIX socket from FS before binding.Yury Selivanov2016-10-09
* | Merge 3.5 (asyncio)Yury Selivanov2016-10-07
|\|
| * asyncio: Only allow Unix Stream sockets for loop.create_unix_server/connectionYury Selivanov2016-10-07
* | Merge 3.5 (issue #28369)Yury Selivanov2016-10-05
|\|
| * Issue #28369: Raise an error when transport's FD is used with add_readerYury Selivanov2016-10-05
* | Merge 3.5 (issue #28368)Yury Selivanov2016-10-05
|\|
| * Issue #28368: Refuse monitoring processes if the child watcher has no loop at...Yury Selivanov2016-10-05
* | Merge 3.5 (asyncio, issue #26909)Yury Selivanov2016-09-15
|\|
| * Issue #26909: Fix slow pipes IO in asyncio.Yury Selivanov2016-09-15
* | Merge 3.5 (asyncio)Yury Selivanov2016-09-11
|\|
| * asyncio: Add set_protocol / get_protocol methods to TransportsYury Selivanov2016-09-11
* | Merge asyncio from 3.5Guido van Rossum2016-08-31
|\|
| * Fix ordering issues in UNIX read/write pipe transport constructors.Guido van Rossum2016-08-31
| * Don't select for read on character devices in _UnixWritePipeTransport.Guido van Rossum2016-08-31
* | Merge 3.5 (Issue #27041)Yury Selivanov2016-05-16
|\|
| * Issue #27041: asyncio: Add loop.create_future methodYury Selivanov2016-05-16
* | Merge 3.5 (asyncio)Yury Selivanov2016-05-13
|\|
| * asyncio: Fix unix pipe transport 'repr' methodsYury Selivanov2016-05-13
* | Merge 3.5 (asyncio)Victor Stinner2016-04-01
|\|
| * asyncio: Don't log ConnectionAbortedErrorVictor Stinner2016-04-01
* | Add a source parameter to warnings.warn()Victor Stinner2016-03-23
|/
* asyncio: Cleanup Future APIYury Selivanov2015-11-17
* asyncio: Add Transport.is_closing()Yury Selivanov2015-11-16
* asyncio: Sync with upstream (compat module)Yury Selivanov2015-08-04
* Issue #23353, asyncio: Workaround CPython bug #23353Victor Stinner2015-02-02
* Issue #23347, asyncio: Make BaseSubprocessTransport.wait() privateVictor Stinner2015-01-30
* asyncio: sync with TulipVictor Stinner2015-01-30
* Issue #23243, asyncio: Emit a ResourceWarning when an event loop or a transportVictor Stinner2015-01-29
* asyncio: sync with TulipVictor Stinner2015-01-29
* asyncio: SSL transports now clear their reference to the waiterVictor Stinner2015-01-29
* asyncio: Close the transport on subprocess creation failureVictor Stinner2015-01-15
* Issue #23243: Fix asyncio._UnixWritePipeTransport.close()Victor Stinner2015-01-15
* asyncio: sync with TulipVictor Stinner2015-01-15
* asyncio: sync with TulipVictor Stinner2015-01-09
* asyncio: Truncate to 80 columnsVictor Stinner2015-01-09
* asyncio, tulip issue 209: Fix subprocess for close_fds=False on Python 3.3Victor Stinner2014-12-11
* Closes #22922: More EventLoop methods fail if the loop is closed. Initial patchVictor Stinner2014-12-04
* asyncio: Coroutine objects are now rejected with a TypeError by the followingVictor Stinner2014-11-20
* - Issue #22841: Reject coroutines in asyncio add_signal_handler().Guido van Rossum2014-11-14
* asyncio: Move loop attribute to _FlowControlMixinVictor Stinner2014-11-05
* asyncio.unix_events: Move import statement to match tulip codeYury Selivanov2014-09-24
* asyncio: sync with TulipVictor Stinner2014-08-25