diff options
author | jlacoline <jean.lacoline@gmail.com> | 2017-10-19 17:49:57 (GMT) |
---|---|---|
committer | Yury Selivanov <yury@magic.io> | 2017-10-19 17:49:57 (GMT) |
commit | ea2ef5d0ca869d4550820ed53bdf56013dbb9546 (patch) | |
tree | 76872b851e52ae297c21afd8e91f00320c3d5769 /Misc | |
parent | ce9e62544571e7ade7186697d5dd065fb4c5243f (diff) | |
download | cpython-ea2ef5d0ca869d4550820ed53bdf56013dbb9546.zip cpython-ea2ef5d0ca869d4550820ed53bdf56013dbb9546.tar.gz cpython-ea2ef5d0ca869d4550820ed53bdf56013dbb9546.tar.bz2 |
bpo-31632: fix set_protocol() in _SSLProtocolTransport (#3817) (#3817)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS.d/next/Library/2017-10-04-11-37-14.bpo-31632.LiOC3C.rst | 2 |
2 files changed, 3 insertions, 0 deletions
@@ -858,6 +858,7 @@ Vladimir Kushnir Erno Kuusela Ross Lagerwall Cameron Laird +Loïc Lajeanne David Lam Thomas Lamb Valerie Lambert diff --git a/Misc/NEWS.d/next/Library/2017-10-04-11-37-14.bpo-31632.LiOC3C.rst b/Misc/NEWS.d/next/Library/2017-10-04-11-37-14.bpo-31632.LiOC3C.rst new file mode 100644 index 0000000..6178d06 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2017-10-04-11-37-14.bpo-31632.LiOC3C.rst @@ -0,0 +1,2 @@ +Fix method set_protocol() of class _SSLProtocolTransport in asyncio module. +This method was previously modifying a wrong reference to the protocol. |