[Python-checkins] cpython (3.5): Issue #28221: Remove unused assignment from test_asyncore_server()

martin.panter python-checkins at python.org
Fri Sep 23 23:35:31 EDT 2016


https://hg.python.org/cpython/rev/97ff9934ad2d
changeset:   104040:97ff9934ad2d
branch:      3.5
parent:      104034:212b10da309f
user:        Martin Panter <vadmium+py at gmail.com>
date:        Fri Sep 23 23:45:56 2016 +0000
summary:
  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.

files:
  Lib/test/test_ssl.py |  2 --
  1 files changed, 0 insertions(+), 2 deletions(-)


diff --git a/Lib/test/test_ssl.py b/Lib/test/test_ssl.py
--- a/Lib/test/test_ssl.py
+++ b/Lib/test/test_ssl.py
@@ -2688,8 +2688,6 @@
 
         def test_asyncore_server(self):
             """Check the example asyncore integration."""
-            indata = "TEST MESSAGE of mixed case\n"
-
             if support.verbose:
                 sys.stdout.write("\n")
 

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list