[Python-Dev] [Python-checkins] r88691 - python/branches/py3k/Lib/test/test_telnetlib.py
Jack Diederich
jackdied at gmail.com
Tue Mar 1 02:44:34 CET 2011
More information about the Python-Dev mailing list
Tue Mar 1 02:44:34 CET 2011
- Previous message: [Python-Dev] Please sync your feature branches
- Next message: [Python-Dev] devinabox: Properly clean up the 'build' directory from test runs.
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Much thanks. On Mon, Feb 28, 2011 at 7:41 PM, antoine.pitrou <python-checkins at python.org> wrote: > Author: antoine.pitrou > Date: Tue Mar 1 01:41:10 2011 > New Revision: 88691 > > Log: > Endly, fix UnboundLocalError in telnetlib > > > > Modified: > python/branches/py3k/Lib/test/test_telnetlib.py > > Modified: python/branches/py3k/Lib/test/test_telnetlib.py > ============================================================================== > --- python/branches/py3k/Lib/test/test_telnetlib.py (original) > +++ python/branches/py3k/Lib/test/test_telnetlib.py Tue Mar 1 01:41:10 2011 > @@ -17,9 +17,10 @@ > conn, addr = serv.accept() > except socket.timeout: > pass > + else: > + conn.close() > finally: > serv.close() > - conn.close() > evt.set() > > class GeneralTests(TestCase): > _______________________________________________ > Python-checkins mailing list > Python-checkins at python.org > http://mail.python.org/mailman/listinfo/python-checkins >
- Previous message: [Python-Dev] Please sync your feature branches
- Next message: [Python-Dev] devinabox: Properly clean up the 'build' directory from test runs.
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-Dev mailing list