summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-09-23 23:45:56 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-09-23 23:45:56 (GMT)
commit8609cda961a773f6eaafe7944f73d70407500ac7 (patch)
treeb887c2702c81ecede5ae3725cdd0d2435b4e46e3 /Lib
parent3cb091e576cf3c8a71b8cff6951cfadfd8f5cd7a (diff)
downloadcpython-8609cda961a773f6eaafe7944f73d70407500ac7.zip
cpython-8609cda961a773f6eaafe7944f73d70407500ac7.tar.gz
cpython-8609cda961a773f6eaafe7944f73d70407500ac7.tar.bz2
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.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_ssl.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/test/test_ssl.py b/Lib/test/test_ssl.py
index f162c6e..5515583 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")