mirror of
https://github.com/python/cpython.git
synced 2025-08-19 08:11:46 +00:00
Merged revisions 71884 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r71884 | tarek.ziade | 2009-04-25 14:51:59 +0200 (Sat, 25 Apr 2009) | 1 line #5810: Fixed Distutils test_build_scripts ........
This commit is contained in:
parent
17ba0fc6e9
commit
de0d5e3247
2 changed files with 4 additions and 1 deletions
|
@ -90,7 +90,7 @@ class BuildScriptsTestCase(support.TempdirManager,
|
||||||
# On linux-g++-32 with command line `./configure --enable-ipv6
|
# On linux-g++-32 with command line `./configure --enable-ipv6
|
||||||
# --with-suffix=3`, python is compiled okay but the build scripts
|
# --with-suffix=3`, python is compiled okay but the build scripts
|
||||||
# failed when writing the name of the executable
|
# failed when writing the name of the executable
|
||||||
old = sysconfig._config_vars.get('VERSION')
|
old = sysconfig.get_config_vars().get('VERSION')
|
||||||
sysconfig._config_vars['VERSION'] = 4
|
sysconfig._config_vars['VERSION'] = 4
|
||||||
try:
|
try:
|
||||||
cmd.run()
|
cmd.run()
|
||||||
|
|
|
@ -139,6 +139,9 @@ Core and Builtins
|
||||||
Library
|
Library
|
||||||
-------
|
-------
|
||||||
|
|
||||||
|
- Issue #5810: Fixed Distutils test_build_scripts so it uses
|
||||||
|
sysconfig.get_config_vars.
|
||||||
|
|
||||||
- Issue #5741: don't disallow "%%" (which is an escape for "%") when setting
|
- Issue #5741: don't disallow "%%" (which is an escape for "%") when setting
|
||||||
a value in SafeConfigParser.
|
a value in SafeConfigParser.
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue