[Python-checkins] r83958 - python/branches/release27-maint/Lib/ctypes/test/test_callbacks.py

tim.golden python-checkins at python.org
Thu Aug 12 13:50:14 CEST 2010


Author: tim.golden
Date: Thu Aug 12 13:50:14 2010
New Revision: 83958

Log:
#9055: remove assertion at the end of test_8959_b since the test is about crashing, not about counting and is difficult to manage when run as a service

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

Modified: python/branches/release27-maint/Lib/ctypes/test/test_callbacks.py
==============================================================================
--- python/branches/release27-maint/Lib/ctypes/test/test_callbacks.py	(original)
+++ python/branches/release27-maint/Lib/ctypes/test/test_callbacks.py	Thu Aug 12 13:50:14 2010
@@ -205,7 +205,6 @@
                 return True #Allow windows to keep enumerating
 
             windll.user32.EnumWindows(EnumWindowsCallbackFunc, 0)
-            self.assertFalse(windowCount == 0)
 
 ################################################################
 


More information about the Python-checkins mailing list