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: v2.7.13rc1~115 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0259c663687be2f4a12aa923da846bafee47e088;p=python 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 b7aec485ae..a17d6131a6 100644 --- a/Lib/test/test_ssl.py +++ b/Lib/test/test_ssl.py @@ -2514,8 +2514,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")