[Python-checkins] r86199 - python/branches/release27-maint/Lib/test/test_os.py

brian.curtin python-checkins at python.org
Fri Nov 5 16:28:19 CET 2010


Author: brian.curtin
Date: Fri Nov  5 16:28:19 2010
New Revision: 86199

Log:
Backport r85525 from #10098.


Modified:
   python/branches/release27-maint/Lib/test/test_os.py

Modified: python/branches/release27-maint/Lib/test/test_os.py
==============================================================================
--- python/branches/release27-maint/Lib/test/test_os.py	(original)
+++ python/branches/release27-maint/Lib/test/test_os.py	Fri Nov  5 16:28:19 2010
@@ -750,7 +750,7 @@
         # Let the interpreter startup before we send signals. See #3137.
         count, max = 0, 20
         while count < max and proc.poll() is None:
-            if m[0] == '0':
+            if m[0] == '1':
                 break
             time.sleep(0.5)
             count += 1


More information about the Python-checkins mailing list