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

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


https://hg.python.org/cpython/rev/4a1e1715efc3
changeset:   104039:4a1e1715efc3
branch:      2.7
parent:      104015:0a79ea5b3372
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
@@ -2514,8 +2514,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