summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio/selector_events.py
Commit message (Expand)AuthorAgeFilesLines
* gh-113538: Revert "gh-113538: Add asycio.Server.{close,abort}_clients (#11443...Guido van Rossum2024-03-121-4/+2
* gh-113538: Add asycio.Server.{close,abort}_clients (#114432)Pierre Ossman (ThinLinc team)2024-03-111-2/+4
* gh-113812: Allow DatagramTransport.sendto to send empty data (#115199)Jamie Phan2024-02-171-3/+1
* gh-109534: fix reference leak when SSL handshake fails (#114074)Jamie Phan2024-02-011-0/+4
* gh-112989: asyncio: Reduce overhead to connect sockets with SelectorEventLoop...J. Nick Koston2023-12-131-9/+5
* gh-106527: asyncio: optimize to add/remove readers and writers (#106528)J. Nick Koston2023-07-221-35/+29
* gh-106503: asyncio._SelectorSocketTransport: fix cyclic reference on close()....Andrew Geng2023-07-071-0/+1
* gh-103607: Fix `pause_reading` to work when called from `connection_made` in ...Itayazolay2023-04-271-22/+22
* gh-103462: Ensure SelectorSocketTransport.writelines registers a writer when ...Ali-Akber Saifee2023-04-131-0/+3
* GH-91166: Implement zero copy writes for `SelectorSocketTransport` in asyncio...Kumar Aditya2022-12-241-11/+75
* gh-100348: Fix ref cycle in `asyncio._SelectorSocketTransport` with `_read_re...Richard Kojedzinszky2022-12-201-0/+4
* gh-88863: Clear ref cycles to resolve leak when asyncio.open_connection raise...Dong Uk, Kang2022-11-221-1/+9
* GH-90352: fix _SelectorDatagramTransport to inherit from DatagramTransport (#...Kumar Aditya2022-10-291-1/+1
* GH-88968: Reject socket that is already used as a transport (#98010)Guido van Rossum2022-10-071-0/+3
* gh-91487: Optimize asyncio UDP speed (GH-91488)msoxzw2022-04-151-1/+5
* bpo-27929: resolve names only for AF_INET/AF_INET6 with asyncio (GH-32131)Vincent Bernat2022-03-281-1/+2
* Drop accidentally added whitespaces in asyncio internals (GH-31900)Andrew Svetlov2022-03-151-1/+1
* bpo-46805: Add low level UDP socket functions to asyncio (GH-31455)Alex Grönholm2022-03-131-0/+124
* bpo-46827: pass sock.type to getaddrinfo in sock_connect (GH-31499)Thomas Grainger2022-02-221-1/+3
* Raise TypeError if SSLSocket is passed to asyncio transport-based methods (GH...Andrew Svetlov2022-02-201-10/+5
* bpo-44011: New asyncio ssl implementation (#31275)Kumar Aditya2022-02-151-11/+20
* bpo-44011: Revert "New asyncio ssl implementation (GH-17975)" (GH-25848)Pablo Galindo2021-05-031-20/+11
* bpo-44011: New asyncio ssl implementation (#17975)Andrew Svetlov2021-05-021-11/+20
* bpo-39651: Fix asyncio proactor _write_to_self() (GH-22197)Victor Stinner2020-09-121-8/+10
* bpo-41317: Remove reader on cancellation in asyncio.loop.sock_accept() (#21595)Alex Grönholm2020-07-231-7/+6
* bpo-30064: Fix asyncio loop.sock_* race condition issue (#20369)Fantix King2020-05-271-16/+25
* bpo-39006: Fix asyncio when the ssl module is missing (GH-17524)Victor Stinner2019-12-091-10/+10
* bpo-37404: Raising value error if an SSLSocket is passed to asyncio function...idomic2019-12-071-0/+10
* bpo-37027: Return a proxy socket object from transp.get_extra_info('socket') ...Yury Selivanov2019-05-271-2/+3
* bpo-37035: Don't log OSError (GH-13548)Andrew Svetlov2019-05-271-1/+1
* bpo-32528: Make asyncio.CancelledError a BaseException. (GH-13528)Yury Selivanov2019-05-271-20/+56
* bpo-35589: Prevent buffer copy in sock_sendall() (GH-11418)Andrew Svetlov2019-05-161-7/+10
* bpo-31922: Do not connect UDP sockets when broadcast is allowed (GH-423)Vincent Michel2019-05-071-6/+11
* asyncio: __del__() keep reference to warnings.warn (GH-11491)Victor Stinner2019-01-101-3/+2
* bpo-35380: Enable TCP_NODELAY for proactor event loop (#10867)Andrew Svetlov2018-12-031-12/+1
* bpo-30064: Refactor sock_* asyncio API (#10419)Andrew Svetlov2018-11-121-40/+49
* bpo-33654: Support BufferedProtocol in set_protocol() and start_tls() (GH-7130)Yury Selivanov2018-05-281-8/+20
* bpo-31647: Fix write_eof() after close() for SelectorSocketTransport (GH-7149)twisteroid ambassador2018-05-281-1/+1
* bpo-33263: Fix FD leak in _SelectorSocketTransport (GH-6450)Vlad Starostin2018-05-211-3/+9
* bpo-32251: Implement asyncio.BufferedProtocol. (#4755)Yury Selivanov2018-01-281-16/+68
* bpo-32622: Implement loop.sendfile() (#5271)Andrew Svetlov2018-01-271-0/+39
* bpo-32436: Implement PEP 567 (#5027)Yury Selivanov2018-01-231-2/+2
* bpo-23749: Implement loop.start_tls() (#5039)Yury Selivanov2017-12-301-0/+2
* bpo-29970: Add timeout for SSL handshake in asyncioNeil Aspinall2017-12-191-14/+26
* bpo-27456: Simplify sock type checks (#4922)Yury Selivanov2017-12-191-1/+1
* bpo-32356: idempotent pause_/resume_reading; new is_reading method. (#4914)Yury Selivanov2017-12-181-8/+7
* bpo-27456: Ensure TCP_NODELAY is set on linux (#4231)Yury Selivanov2017-12-161-1/+1
* bpo-32327: Convert asyncio functions documented as coroutines to coroutines. ...Yury Selivanov2017-12-151-20/+10
* bpo-32262: Fix codestyle; use f-strings formatting where necessary. (#4775)Yury Selivanov2017-12-101-26/+26
* bpo-32193: Convert asyncio to async/await usage (#4753)Andrew Svetlov2017-12-081-9/+6