[Python-checkins] r54316 - python/trunk/Lib/test/test_support.py

brett.cannon python-checkins at python.org
Tue Mar 13 04:05:43 CET 2007


Author: brett.cannon
Date: Tue Mar 13 04:05:40 2007
New Revision: 54316

Modified:
   python/trunk/Lib/test/test_support.py
Log:
Fix a typo where the variable name was not updated.


Modified: python/trunk/Lib/test/test_support.py
==============================================================================
--- python/trunk/Lib/test/test_support.py	(original)
+++ python/trunk/Lib/test/test_support.py	Tue Mar 13 04:05:40 2007
@@ -346,7 +346,7 @@
     time_out = TransientResource(IOError, errno=errno.ETIMEDOUT)
     socket_peer_reset = TransientResource(socket.error, errno=errno.ECONNRESET)
     ioerror_peer_reset = TransientResource(IOError, errno=errno.ECONNRESET)
-    return contextlib.nested(time_out, peer_reset, ioerror_peer_reset)
+    return contextlib.nested(time_out, socket_peer_reset, ioerror_peer_reset)
 
 
 #=======================================================================


More information about the Python-checkins mailing list