[Python-checkins] r62103 - python/trunk/Lib/test/test_ssl.py

neal.norwitz python-checkins at python.org
Wed Apr 2 07:54:27 CEST 2008


Author: neal.norwitz
Date: Wed Apr  2 07:54:27 2008
New Revision: 62103

Modified:
   python/trunk/Lib/test/test_ssl.py
Log:
Apply same patch from 3k branch to try and prevent this test from hanging
on various platforms, most recently the Alpha Tru64.


Modified: python/trunk/Lib/test/test_ssl.py
==============================================================================
--- python/trunk/Lib/test/test_ssl.py	(original)
+++ python/trunk/Lib/test/test_ssl.py	Wed Apr  2 07:54:27 2008
@@ -380,6 +380,7 @@
                     except:
                         sys.stdout.write(''.join(traceback.format_exception(*sys.exc_info())))
                         break
+                    time.sleep(0.1)
 
             def server_close(self):
                 # Again, we want this to run in a thread, so we need to override


More information about the Python-checkins mailing list