Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
ea2ef5d0
Commit
ea2ef5d0
authored
Oct 19, 2017
by
jlacoline
Committed by
Yury Selivanov
Oct 19, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bpo-31632: fix set_protocol() in _SSLProtocolTransport (#3817) (#3817)
parent
ce9e6254
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
6 deletions
+15
-6
Lib/asyncio/sslproto.py
Lib/asyncio/sslproto.py
+4
-6
Lib/test/test_asyncio/test_sslproto.py
Lib/test/test_asyncio/test_sslproto.py
+8
-0
Misc/ACKS
Misc/ACKS
+1
-0
Misc/NEWS.d/next/Library/2017-10-04-11-37-14.bpo-31632.LiOC3C.rst
...S.d/next/Library/2017-10-04-11-37-14.bpo-31632.LiOC3C.rst
+2
-0
No files found.
Lib/asyncio/sslproto.py
View file @
ea2ef5d0
...
...
@@ -293,11 +293,10 @@ class _SSLPipe(object):
class
_SSLProtocolTransport
(
transports
.
_FlowControlMixin
,
transports
.
Transport
):
def
__init__
(
self
,
loop
,
ssl_protocol
,
app_protocol
):
def
__init__
(
self
,
loop
,
ssl_protocol
):
self
.
_loop
=
loop
# SSLProtocol instance
self
.
_ssl_protocol
=
ssl_protocol
self
.
_app_protocol
=
app_protocol
self
.
_closed
=
False
def
get_extra_info
(
self
,
name
,
default
=
None
):
...
...
@@ -305,10 +304,10 @@ class _SSLProtocolTransport(transports._FlowControlMixin,
return
self
.
_ssl_protocol
.
_get_extra_info
(
name
,
default
)
def
set_protocol
(
self
,
protocol
):
self
.
_app_protocol
=
protocol
self
.
_
ssl_protocol
.
_
app_protocol
=
protocol
def
get_protocol
(
self
):
return
self
.
_app_protocol
return
self
.
_
ssl_protocol
.
_
app_protocol
def
is_closing
(
self
):
return
self
.
_closed
...
...
@@ -431,8 +430,7 @@ class SSLProtocol(protocols.Protocol):
self
.
_waiter
=
waiter
self
.
_loop
=
loop
self
.
_app_protocol
=
app_protocol
self
.
_app_transport
=
_SSLProtocolTransport
(
self
.
_loop
,
self
,
self
.
_app_protocol
)
self
.
_app_transport
=
_SSLProtocolTransport
(
self
.
_loop
,
self
)
# _SSLPipe instance (None until the connection is made)
self
.
_sslpipe
=
None
self
.
_session_established
=
False
...
...
Lib/test/test_asyncio/test_sslproto.py
View file @
ea2ef5d0
...
...
@@ -121,6 +121,14 @@ class SslProtoHandshakeTests(test_utils.TestCase):
ssl_proto
.
connection_lost
(
None
)
self
.
assertIsNone
(
ssl_proto
.
_get_extra_info
(
'socket'
))
def
test_set_new_app_protocol
(
self
):
waiter
=
asyncio
.
Future
(
loop
=
self
.
loop
)
ssl_proto
=
self
.
ssl_protocol
(
waiter
)
new_app_proto
=
asyncio
.
Protocol
()
ssl_proto
.
_app_transport
.
set_protocol
(
new_app_proto
)
self
.
assertIs
(
ssl_proto
.
_app_transport
.
get_protocol
(),
new_app_proto
)
self
.
assertIs
(
ssl_proto
.
_app_protocol
,
new_app_proto
)
if
__name__
==
'__main__'
:
unittest
.
main
()
Misc/ACKS
View file @
ea2ef5d0
...
...
@@ -858,6 +858,7 @@ Vladimir Kushnir
Erno Kuusela
Ross Lagerwall
Cameron Laird
Loïc Lajeanne
David Lam
Thomas Lamb
Valerie Lambert
...
...
Misc/NEWS.d/next/Library/2017-10-04-11-37-14.bpo-31632.LiOC3C.rst
0 → 100644
View file @
ea2ef5d0
Fix method set_protocol() of class _SSLProtocolTransport in asyncio module.
This method was previously modifying a wrong reference to the protocol.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment