diff options
author | Brian Curtin <brian.curtin@gmail.com> | 2010-11-06 01:30:41 +0000 |
---|---|---|
committer | Brian Curtin <brian.curtin@gmail.com> | 2010-11-06 01:30:41 +0000 |
commit | ecd34cbbb8823d2ce250887d55093a909b8cb94d (patch) | |
tree | 2cc9570b00958d113b14b5df55b41533f4c856ad /Lib/test/test_telnetlib.py | |
parent | 5fd730e0fbfe2b655722d89626075d5b7f2d77e7 (diff) | |
download | cpython-ecd34cbbb8823d2ce250887d55093a909b8cb94d.tar.gz cpython-ecd34cbbb8823d2ce250887d55093a909b8cb94d.zip |
Clear up ResourceWarnings
Diffstat (limited to 'Lib/test/test_telnetlib.py')
-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 6d7b6a671e0..e4210c5cf46 100644 --- a/Lib/test/test_telnetlib.py +++ b/Lib/test/test_telnetlib.py @@ -19,6 +19,7 @@ def server(evt, serv): pass finally: serv.close() + conn.close() evt.set() class GeneralTests(TestCase): |