[Python-checkins] r71889 - in python/branches/release30-maint: Lib/distutils/tests/test_build_scripts.py Misc/NEWS
tarek.ziade
python-checkins at python.org
Sat Apr 25 14:58:32 CEST 2009
Author: tarek.ziade
Date: Sat Apr 25 14:58:32 2009
New Revision: 71889
Log:
Merged revisions 71886 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r71886 | tarek.ziade | 2009年04月25日 14:53:56 +0200 (2009年4月25日) | 9 lines
Merged revisions 71884 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r71884 | tarek.ziade | 2009年04月25日 14:51:59 +0200 (2009年4月25日) | 1 line
#5810: Fixed Distutils test_build_scripts
........
................
Modified:
python/branches/release30-maint/ (props changed)
python/branches/release30-maint/Lib/distutils/tests/test_build_scripts.py
python/branches/release30-maint/Misc/NEWS
Modified: python/branches/release30-maint/Lib/distutils/tests/test_build_scripts.py
==============================================================================
--- python/branches/release30-maint/Lib/distutils/tests/test_build_scripts.py (original)
+++ python/branches/release30-maint/Lib/distutils/tests/test_build_scripts.py Sat Apr 25 14:58:32 2009
@@ -90,7 +90,7 @@
# On linux-g++-32 with command line `./configure --enable-ipv6
# --with-suffix=3`, python is compiled okay but the build scripts
# 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
try:
cmd.run()
Modified: python/branches/release30-maint/Misc/NEWS
==============================================================================
--- python/branches/release30-maint/Misc/NEWS (original)
+++ python/branches/release30-maint/Misc/NEWS Sat Apr 25 14:58:32 2009
@@ -239,6 +239,9 @@
Library
-------
+- Issue #5810: Fixed Distutils test_build_scripts so it uses
+ sysconfig.get_config_vars.
+
- Issue #5041: ctypes does now allow pickling wide character.
- Issue #5731: Distutils bdist_wininst no longer worked on non-Windows
More information about the Python-checkins
mailing list