[Python-checkins] r63898 - python/trunk/Lib/ctypes/test/__init__.py

thomas.heller python-checkins at python.org
Tue Jun 3 20:57:32 CEST 2008


Author: thomas.heller
Date: Mon Jun  2 22:07:46 2008
New Revision: 63898

Log:
Fix the -x flag so that is does work.

Modified:
   python/trunk/Lib/ctypes/test/__init__.py

Modified: python/trunk/Lib/ctypes/test/__init__.py
==============================================================================
--- python/trunk/Lib/ctypes/test/__init__.py	(original)
+++ python/trunk/Lib/ctypes/test/__init__.py	Mon Jun  2 22:07:46 2008
@@ -178,7 +178,7 @@
         elif flag == "-u":
             use_resources.extend(value.split(","))
         elif flag == "-x":
-            exclude.append(value.split(","))
+            exclude.extend(value.split(","))
 
     mask = "test_*.py"
     if args:


More information about the Python-checkins mailing list