[Python-checkins] r72094 - in python/trunk: Lib/distutils/tests/test_config_cmd.py Misc/NEWS

tarek.ziade python-checkins at python.org
Wed Apr 29 10:03:46 CEST 2009


Author: tarek.ziade
Date: Wed Apr 29 10:03:46 2009
New Revision: 72094

Log:
Fixed #5874 : distutils.tests.test_config_cmd is not locale-sensitive anymore

Modified:
   python/trunk/Lib/distutils/tests/test_config_cmd.py
   python/trunk/Misc/NEWS

Modified: python/trunk/Lib/distutils/tests/test_config_cmd.py
==============================================================================
--- python/trunk/Lib/distutils/tests/test_config_cmd.py	(original)
+++ python/trunk/Lib/distutils/tests/test_config_cmd.py	Wed Apr 29 10:03:46 2009
@@ -46,7 +46,7 @@
         match = cmd.search_cpp(pattern='xxx', body='// xxx')
         self.assertEquals(match, 0)
 
-        match = cmd.search_cpp(pattern='command', body='// xxx')
+        match = cmd.search_cpp(pattern='_configtest', body='// xxx')
         self.assertEquals(match, 1)
 
     def test_finalize_options(self):

Modified: python/trunk/Misc/NEWS
==============================================================================
--- python/trunk/Misc/NEWS	(original)
+++ python/trunk/Misc/NEWS	Wed Apr 29 10:03:46 2009
@@ -255,6 +255,9 @@
 Library
 -------
 
+- Issue #5874: distutils.tests.test_config_cmd is not locale-sensitive 
+  anymore.
+
 - Issue #4305: ctypes should now build again on mipsel-linux-gnu
 
 - Issue #1734234: Massively speedup ``unicodedata.normalize()`` when the


More information about the Python-checkins mailing list