- Issue #17754: Make ctypes.util.find_library() independent of the locale.

This commit is contained in:
doko@ubuntu.com 2013-05-15 15:46:11 +02:00
parent 7423903eee
commit 96645cc4ff
2 changed files with 2 additions and 1 deletions

View File

@ -93,7 +93,7 @@ elif os.name == "posix":
fdout, ccout = tempfile.mkstemp()
os.close(fdout)
cmd = 'if type gcc >/dev/null 2>&1; then CC=gcc; elif type cc >/dev/null 2>&1; then CC=cc;else exit 10; fi;' \
'$CC -Wl,-t -o ' + ccout + ' 2>&1 -l' + name
'LANG=C LC_ALL=C $CC -Wl,-t -o ' + ccout + ' 2>&1 -l' + name
try:
f = os.popen(cmd)
try:

View File

@ -12,6 +12,7 @@ Core and Builtins
Library
-------
- Issue #17754: Make ctypes.util.find_library() independent of the locale.
What's New in Python 2.7.5?
===========================