From: Martin Panter Date: Fri, 23 Sep 2016 23:45:56 +0000 (+0000) Subject: Issue #28221: Remove unused assignment from test_asyncore_server() X-Git-Tag: v3.6.0b2~130^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8609cda961a773f6eaafe7944f73d70407500ac7;p=thirdparty%2FPython%2Fcpython.git 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. --- 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 @@ else: def test_asyncore_server(self): """Check the example asyncore integration.""" - indata = "TEST MESSAGE of mixed case\n" - if support.verbose: sys.stdout.write("\n")