Commit bcddf677 authored by Tarek Ziadé's avatar Tarek Ziadé

#5810: Fixed Distutils test_build_scripts

parent a2dce5a9
...@@ -90,7 +90,7 @@ class BuildScriptsTestCase(support.TempdirManager, ...@@ -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()
......
...@@ -246,6 +246,9 @@ Core and Builtins ...@@ -246,6 +246,9 @@ Core and Builtins
Library Library
------- -------
- Issue #5810: Fixed Distutils test_build_scripts so it uses
sysconfig.get_config_vars.
- Issue #4951: Fixed failure in test_httpservers. - Issue #4951: Fixed failure in test_httpservers.
- Issue #3102: All global symbols that the _ctypes extension defines - Issue #3102: All global symbols that the _ctypes extension defines
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment