From 09c22adadfd90b2d85778c9f835c5ce122f529a3 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Wed, 31 Aug 2016 09:08:41 -0700 Subject: =?UTF-8?q?Issue=20#27907:=20variable=20rename.=20(Ville=20Skytt?= =?UTF-8?q?=C3=A4)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Lib/test/test_asyncio/test_events.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib/test/test_asyncio/test_events.py b/Lib/test/test_asyncio/test_events.py index 5c186ce..ddb0d44 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: -- cgit v0.12