summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio/unix_events.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-33654: Support BufferedProtocol in set_protocol() and start_tls() (GH-7130)Yury Selivanov2018-05-281-0/+4
* bpo-33332: Add signal.valid_signals() (GH-6581)Antoine Pitrou2018-05-041-2/+2
* bpo-32622: Normalize ENOTCONN to ConnectionError on macOS (GH-5369)Yury Selivanov2018-01-271-0/+11
* bpo-32662: Implement Server.start_serving() and Server.serve_forever() (#5312)Yury Selivanov2018-01-251-5/+7
* bpo-32436: Implement PEP 567 (#5027)Yury Selivanov2018-01-231-1/+1
* bpo-32410: Make SendfileNotAvailableError exception public (#5243)Andrew Svetlov2018-01-191-4/+4
* bpo-32410: Implement loop.sock_sendfile() (#4976)Andrew Svetlov2018-01-161-0/+93
* bpo-26133: Fix typos (#5010)Andrew Svetlov2017-12-261-2/+2
* bpo-26133: Clear signals list on interpreter finalizing (#5002)Andrew Svetlov2017-12-241-4/+7
* bpo-26133: Dont unsubscribe signals in UNIX even loop on interpreter shutdown...Andrew Svetlov2017-12-211-2/+8
* bpo-29970: Make ssh_handshake_timeout None by default (#4939)Andrew Svetlov2017-12-201-2/+9
* bpo-29970: Add timeout for SSL handshake in asyncioNeil Aspinall2017-12-191-7/+13
* bpo-27456: Simplify sock type checks (#4922)Yury Selivanov2017-12-191-2/+2
* bpo-27456: Ensure TCP_NODELAY is set on linux (#4231)Yury Selivanov2017-12-161-2/+2
* bpo-32262: Fix codestyle; use f-strings formatting where necessary. (#4775)Yury Selivanov2017-12-101-27/+25
* bpo-32193: Convert asyncio to async/await usage (#4753)Andrew Svetlov2017-12-081-26/+14
* bpo-32166: Drop Python 3.4 code from asyncio (#4612)Andrew Svetlov2017-11-291-49/+9
* bpo-32154: Remove asyncio.selectors (#4605)Victor Stinner2017-11-281-1/+1
* asyncio: use directly socket.socketpair() (#4597)Victor Stinner2017-11-281-4/+1
* bpo-32066: Support pathlib.Path in create_unix_connection; sock arg should be...Yury Selivanov2017-11-201-1/+2
* bpo-29617: Remove Python 3.3 support from asyncio (GH-232)INADA Naoki2017-04-251-19/+10
* Merge 3.5 (issue #28704)Yury Selivanov2016-11-151-0/+8
|\
| * Issue #28704: Fix create_unix_server to support Path-like objectsYury Selivanov2016-11-151-0/+8
* | Merge 3.5 (issue #28652)Yury Selivanov2016-11-091-2/+2
|\ \ | |/
| * Issue #28652: Make loop methods reject socket kinds they do not support.Yury Selivanov2016-11-091-2/+2
* | Merge 3.5 (issue #28399)Yury Selivanov2016-10-091-0/+11
|\ \ | |/
| * Issue #28399: Remove UNIX socket from FS before binding.Yury Selivanov2016-10-091-0/+11
* | Merge 3.5 (asyncio)Yury Selivanov2016-10-071-2/+9
|\ \ | |/
| * asyncio: Only allow Unix Stream sockets for loop.create_unix_server/connectionYury Selivanov2016-10-071-2/+9
* | Merge 3.5 (issue #28369)Yury Selivanov2016-10-051-13/+13
|\ \ | |/
| * Issue #28369: Raise an error when transport's FD is used with add_readerYury Selivanov2016-10-051-13/+13
* | Merge 3.5 (issue #28368)Yury Selivanov2016-10-051-5/+18
|\ \ | |/
| * Issue #28368: Refuse monitoring processes if the child watcher has no loop at...Yury Selivanov2016-10-051-5/+18
* | Merge 3.5 (asyncio, issue #26909)Yury Selivanov2016-09-151-15/+12
|\ \ | |/
| * Issue #26909: Fix slow pipes IO in asyncio.Yury Selivanov2016-09-151-15/+12
* | Merge 3.5 (asyncio)Yury Selivanov2016-09-121-0/+12
|\ \ | |/
| * asyncio: Add set_protocol / get_protocol methods to TransportsYury Selivanov2016-09-121-0/+12
* | Merge asyncio from 3.5Guido van Rossum2016-08-311-10/+21
|\ \ | |/
| * Fix ordering issues in UNIX read/write pipe transport constructors.Guido van Rossum2016-08-311-6/+17
| * Don't select for read on character devices in _UnixWritePipeTransport.Guido van Rossum2016-08-311-4/+4
* | Merge 3.5 (Issue #27041)Yury Selivanov2016-05-161-1/+1
|\ \ | |/
| * Issue #27041: asyncio: Add loop.create_future methodYury Selivanov2016-05-161-1/+1
* | Merge 3.5 (asyncio)Yury Selivanov2016-05-131-4/+10
|\ \ | |/
| * asyncio: Fix unix pipe transport 'repr' methodsYury Selivanov2016-05-131-4/+10
* | Merge 3.5 (asyncio)Victor Stinner2016-04-011-1/+1
|\ \ | |/
| * asyncio: Don't log ConnectionAbortedErrorVictor Stinner2016-04-011-1/+1
* | Add a source parameter to warnings.warn()Victor Stinner2016-03-221-2/+4
|/
* asyncio: Cleanup Future APIYury Selivanov2015-11-171-2/+4
* asyncio: Add Transport.is_closing()Yury Selivanov2015-11-161-0/+6
* asyncio: Sync with upstream (compat module)Yury Selivanov2015-08-041-2/+3