summaryrefslogtreecommitdiff
path: root/Lib/asyncio/sslproto.py
Commit message (Expand)AuthorAgeFilesLines
* 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-4/+12
* bpo-34745: Fix asyncio sslproto memory issues (GH-12386)Fantix King2019-03-171-0/+4
* asyncio: __del__() keep reference to warnings.warn (GH-11491)Victor Stinner2019-01-101-3/+2
* bpo-33694: Fix typo in helper function name (GH-7522)Victor Stinner2018-06-081-1/+1
* bpo-33694: Fix race condition in asyncio proactor (GH-7498)Victor Stinner2018-06-081-20/+1
* bpo-33769: start_tls: Fix error message; cancel callbacks on error (GH-7403)Yury Selivanov2018-06-051-0/+1
* bpo-33734: asyncio/ssl: a bunch of bugfixes (#7321)Yury Selivanov2018-06-041-32/+29
* bpo-33654: Support protocol type switching in SSLTransport.set_protocol() (#7...Yury Selivanov2018-05-291-4/+7
* bpo-33674: asyncio: Fix SSLProtocol race (GH-7175)Victor Stinner2018-05-291-1/+1
* bpo-33654: Support BufferedProtocol in set_protocol() and start_tls() (GH-7130)Yury Selivanov2018-05-281-1/+31
* bpo-33037: Skip sending/receiving after SSL transport closing (GH-6044)Andrew Svetlov2018-03-101-1/+5
* bpo-32622: Implement loop.sendfile() (#5271)Andrew Svetlov2018-01-271-0/+7
* bpo-31399: Let OpenSSL verify hostname and IP address (#3462)Christian Heimes2018-01-271-6/+0
* bpo-29970: Make ssh_handshake_timeout None by default (#4939)Andrew Svetlov2017-12-201-1/+8
* bpo-29970: Add timeout for SSL handshake in asyncioNeil Aspinall2017-12-191-1/+13
* bpo-32356: idempotent pause_/resume_reading; new is_reading method. (#4914)Yury Selivanov2017-12-181-0/+6
* bpo-32262: Fix codestyle; use f-strings formatting where necessary. (#4775)Yury Selivanov2017-12-101-6/+7
* bpo-32069: Drop legacy SSL transport (#4451)Andrew Svetlov2017-11-181-16/+4
* bpo-31632: fix set_protocol() in _SSLProtocolTransport (#3817) (#3817)jlacoline2017-10-191-6/+4
* Revert "bpo-29406: asyncio SSL contexts leak sockets after calling close with...Yury Selivanov2017-06-111-24/+1
* bpo-29406: asyncio SSL contexts leak sockets after calling close with certain...Nikolay Kim2017-06-101-1/+24
* Break circular references when closing SSLTransport objects (#981)Michaël Sghaïer2017-06-091-4/+6
* Closing transport during handshake process leaks socket (#480)Nikolay Kim2017-06-091-2/+5
* bpo-29617: Remove Python 3.3 support from asyncio (GH-232)INADA Naoki2017-04-251-10/+5
* bpo-29742: asyncio get_extra_info() throws exception (#525)Nikolay Kim2017-03-121-1/+3
* Merge 3.5 (issue #28990)Yury Selivanov2016-12-161-0/+1
|\
| * Issue #28990: Fix SSL hanging if connection is closed before handshake comple...Yury Selivanov2016-12-161-0/+1
* | Merge 3.5 (issue #23749)Yury Selivanov2016-10-051-2/+5
|\ \ | |/
| * asyncio: Add "call_connection_made" arg to SSLProtocol.__init__Yury Selivanov2016-10-051-2/+5
* | Merge 3.5 (asyncio)Yury Selivanov2016-09-111-0/+6
|\ \ | |/
| * asyncio: Add set_protocol / get_protocol methods to TransportsYury Selivanov2016-09-111-0/+6
* | Merge 3.5 (asyncio)Yury Selivanov2016-06-281-0/+1
|\ \ | |/
| * asyncio: Fix NameError in sslproto _fatal_error()Yury Selivanov2016-06-281-0/+1
* | Issue #27076: Merge spelling from 3.5Martin Panter2016-05-261-1/+1
|\ \ | |/
| * Issue #27076: Doc, comment and tests spelling fixesMartin Panter2016-05-261-1/+1
* | 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-231-1/+2
|/
* asyncio: Add Transport.is_closing()Yury Selivanov2015-11-161-0/+3
* Issue #25523: Further a-to-an corrections.Serhiy Storchaka2015-11-021-1/+1
* Issue #25114, asyncio: add ssl_object extra info to SSL transportsVictor Stinner2015-09-211-0/+4
* asyncio: Make sure BaseException is re-raised in SSLProtocolYury Selivanov2015-08-051-1/+6
* asyncio: Sync with upstream (compat module)Yury Selivanov2015-08-041-2/+2
* Issue #23243, asyncio: Emit a ResourceWarning when an event loop or a transportVictor Stinner2015-01-291-0/+13
* asyncio: SSL transports now clear their reference to the waiterVictor Stinner2015-01-291-7/+13
* asyncio: Fix SSLProtocol.eof_received()Victor Stinner2015-01-291-0/+4
* asyncio: sync with TulipVictor Stinner2015-01-281-1/+0
* SSLProtocol: set the _transport attribute in the constructorVictor Stinner2015-01-151-0/+1
* Issue #22560: Fix typo: call -> call_soonVictor Stinner2015-01-151-1/+1