From: Guido van Rossum Date: Wed, 31 Aug 2016 16:08:41 +0000 (-0700) Subject: Issue #27907: variable rename. (Ville Skyttä) X-Git-Tag: v3.6.0b1~510^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=09c22adadfd90b2d85778c9f835c5ce122f529a3;p=thirdparty%2FPython%2Fcpython.git Issue #27907: variable rename. (Ville Skyttä) --- diff --git a/Lib/test/test_asyncio/test_events.py b/Lib/test/test_asyncio/test_events.py index 5c186cebb68d..ddb0d44c23bf 100644 --- a/Lib/test/test_asyncio/test_events.py +++ b/Lib/test/test_asyncio/test_events.py @@ -763,11 +763,11 @@ class EventLoopTestsMixin: addr = lsock.getsockname() message = b'test data' - reponse = None + response = None expected_response = b'roger' def client(): - global response + nonlocal response try: csock = socket.socket() if client_ssl is not None: