diff options
author | Brian Curtin <brian.curtin@gmail.com> | 2010-11-06 01:37:00 +0000 |
---|---|---|
committer | Brian Curtin <brian.curtin@gmail.com> | 2010-11-06 01:37:00 +0000 |
commit | 0c6d438a173f387b07c3d8ac615d30536d496411 (patch) | |
tree | 483ae64872060dd64bcbbbf1f3b8bd0e0927532a | |
parent | 0d6fa4da49a65b278173e7ed779f1c5aa7e6dbbc (diff) | |
download | cpython-git-0c6d438a173f387b07c3d8ac615d30536d496411.tar.gz |
Merged revisions 86228 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r86228 | brian.curtin | 2010-11-05 20:30:41 -0500 (Fri, 05 Nov 2010) | 2 lines
Clear up ResourceWarnings
........
-rw-r--r-- | Lib/test/test_telnetlib.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_telnetlib.py b/Lib/test/test_telnetlib.py index fd5c6f7c3c..321e052fa9 100644 --- a/Lib/test/test_telnetlib.py +++ b/Lib/test/test_telnetlib.py @@ -38,6 +38,7 @@ def server(evt, serv, dataq=None): pass finally: serv.close() + conn.close() evt.set() class GeneralTests(TestCase): |