From 8609cda961a773f6eaafe7944f73d70407500ac7 Mon Sep 17 00:00:00 2001 From: Martin Panter Date: Fri, 23 Sep 2016 23:45:56 +0000 Subject: [PATCH] Issue #28221: Remove unused assignment from test_asyncore_server() The later value of FOO is fine. The test just needs to verify that the server converted it to lowercase. --- Lib/test/test_ssl.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/Lib/test/test_ssl.py b/Lib/test/test_ssl.py index f162c6eee62c..551558304fcd 100644 --- a/Lib/test/test_ssl.py +++ b/Lib/test/test_ssl.py @@ -2688,8 +2688,6 @@ def test_socketserver(self): def test_asyncore_server(self): """Check the example asyncore integration.""" - indata = "TEST MESSAGE of mixed case\n" - if support.verbose: sys.stdout.write("\n")