[Python-checkins] r42784 - python/trunk/Lib/test/leakers/test_gestalt.py

brett.cannon python-checkins at python.org
Thu Mar 2 18:47:02 CET 2006


Author: brett.cannon
Date: Thu Mar  2 18:47:01 2006
New Revision: 42784

Modified:
   python/trunk/Lib/test/leakers/test_gestalt.py
Log:
Fix mismatch opening and closing quotes on a string.


Modified: python/trunk/Lib/test/leakers/test_gestalt.py
==============================================================================
--- python/trunk/Lib/test/leakers/test_gestalt.py	(original)
+++ python/trunk/Lib/test/leakers/test_gestalt.py	Thu Mar  2 18:47:01 2006
@@ -1,8 +1,7 @@
-
 import sys
 
 if sys.platform != 'darwin':
-    raise ValueError, "This test only leaks on Mac OS X'
+    raise ValueError, "This test only leaks on Mac OS X"
 
 def leak():
     # taken from platform._mac_ver_lookup()


More information about the Python-checkins mailing list