mirror of
https://github.com/python/cpython.git
synced 2025-12-09 02:35:14 +00:00
Merged revisions 72094 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r72094 | tarek.ziade | 2009-04-29 10:03:46 +0200 (Wed, 29 Apr 2009) | 1 line Fixed #5874 : distutils.tests.test_config_cmd is not locale-sensitive anymore ........
This commit is contained in:
parent
476b355d63
commit
8162382c48
2 changed files with 4 additions and 1 deletions
|
|
@ -46,7 +46,7 @@ class ConfigTestCase(support.LoggingSilencer,
|
||||||
match = cmd.search_cpp(pattern='xxx', body='// xxx')
|
match = cmd.search_cpp(pattern='xxx', body='// xxx')
|
||||||
self.assertEquals(match, 0)
|
self.assertEquals(match, 0)
|
||||||
|
|
||||||
match = cmd.search_cpp(pattern='command', body='// xxx')
|
match = cmd.search_cpp(pattern='_configtest', body='// xxx')
|
||||||
self.assertEquals(match, 1)
|
self.assertEquals(match, 1)
|
||||||
|
|
||||||
def test_finalize_options(self):
|
def test_finalize_options(self):
|
||||||
|
|
|
||||||
|
|
@ -473,6 +473,9 @@ Core and Builtins
|
||||||
Library
|
Library
|
||||||
-------
|
-------
|
||||||
|
|
||||||
|
- Issue #5874: distutils.tests.test_config_cmd is not locale-sensitive
|
||||||
|
anymore.
|
||||||
|
|
||||||
- Issue #5810: Fixed Distutils test_build_scripts so it uses
|
- Issue #5810: Fixed Distutils test_build_scripts so it uses
|
||||||
sysconfig.get_config_vars.
|
sysconfig.get_config_vars.
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue