diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-09-21 16:06:17 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-09-21 16:06:17 (GMT) |
commit | f7dc7fb74d7c44a60f36a69437125f5ff70e32e5 (patch) | |
tree | 5a8654a25114426d5890ce27e5de3a95088b8ea2 /Lib/asyncio/selector_events.py | |
parent | 808d6416e37bac2d8aa3ebe869f459d39e46cf0c (diff) | |
download | cpython-f7dc7fb74d7c44a60f36a69437125f5ff70e32e5.zip cpython-f7dc7fb74d7c44a60f36a69437125f5ff70e32e5.tar.gz cpython-f7dc7fb74d7c44a60f36a69437125f5ff70e32e5.tar.bz2 |
Issue #25114, asyncio: add ssl_object extra info to SSL transports
This info is required on Python 3.5 and newer to get specific information on
the SSL object, like getting the binary peer certificate (instead of getting
it as text).
Diffstat (limited to 'Lib/asyncio/selector_events.py')
-rw-r--r-- | Lib/asyncio/selector_events.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/asyncio/selector_events.py b/Lib/asyncio/selector_events.py index 4a99658..0060912 100644 --- a/Lib/asyncio/selector_events.py +++ b/Lib/asyncio/selector_events.py @@ -843,6 +843,7 @@ class _SelectorSslTransport(_SelectorTransport): self._extra.update(peercert=peercert, cipher=self._sock.cipher(), compression=self._sock.compression(), + ssl_object=self._sock, ) self._read_wants_write = False |