Commit 73094215 authored by Guido van Rossum's avatar Guido van Rossum

Issue #27907: variable rename. (Ville Skyttä) (Merge 3.5->3.6)

parents 74942c92 09c22ada
...@@ -763,11 +763,11 @@ class EventLoopTestsMixin: ...@@ -763,11 +763,11 @@ class EventLoopTestsMixin:
addr = lsock.getsockname() addr = lsock.getsockname()
message = b'test data' message = b'test data'
reponse = None response = None
expected_response = b'roger' expected_response = b'roger'
def client(): def client():
global response nonlocal response
try: try:
csock = socket.socket() csock = socket.socket()
if client_ssl is not None: if client_ssl is not None:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment