Commit 1a4dc62a authored by Guido van Rossum's avatar Guido van Rossum

Issue #27907: variable rename. (Ville Skyttä)

parent 2f953b02
...@@ -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