Kaydet (Commit) ef535584 authored tarafından doko@ubuntu.com's avatar doko@ubuntu.com

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

üst dbbf4c81
...@@ -92,7 +92,7 @@ elif os.name == "posix": ...@@ -92,7 +92,7 @@ elif os.name == "posix":
fdout, ccout = tempfile.mkstemp() fdout, ccout = tempfile.mkstemp()
os.close(fdout) 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;' \ 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: try:
f = os.popen(cmd) f = os.popen(cmd)
try: try:
......
...@@ -10,6 +10,8 @@ What's New in Python 3.3.3? ...@@ -10,6 +10,8 @@ What's New in Python 3.3.3?
Core and Builtins Core and Builtins
----------------- -----------------
- Issue #17754: Make ctypes.util.find_library() independent of the locale.
- Issue #17927: Frame objects kept arguments alive if they had been copied into - Issue #17927: Frame objects kept arguments alive if they had been copied into
a cell, even if the cell was cleared. a cell, even if the cell was cleared.
......
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