From dbbf4c813ff3f39dcc145d5263c78eaec728fb01 Mon Sep 17 00:00:00 2001 From: "doko@ubuntu.com" Date: Wed, 15 May 2013 18:00:05 +0200 Subject: [PATCH 1/2] Misc/NEWS: Add 3.3.3 section and move entries made after the 3.3.2 release to the new section. --- Misc/NEWS | 31 +++++++++++++++++++++++-------- 1 file changed, 23 insertions(+), 8 deletions(-) diff --git a/Misc/NEWS b/Misc/NEWS index b7e749eba38..e88f8c454b4 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -2,6 +2,29 @@ Python News +++++++++++ +What's New in Python 3.3.3? +=========================== + +*Release date: TBD* + +Core and Builtins +----------------- + +- Issue #17927: Frame objects kept arguments alive if they had been copied into + a cell, even if the cell was cleared. + +Library +------- + +- Issue #17968: Fix memory leak in os.listxattr(). + +Documentation +------------- + +- Issue #17977: The documentation for the cadefault argument's default value + in urllib.request.urlopen() is fixed to match the code. + + What's New in Python 3.3.2? =========================== @@ -12,9 +35,6 @@ What's New in Python 3.3.2? Core and Builtins ----------------- -- Issue #17927: Frame objects kept arguments alive if they had been copied into - a cell, even if the cell was cleared. - - Issue #17237: Fix crash in the ASCII decoder on m68k. - Issue #17408: Avoid using an obsolete instance of the copyreg module when @@ -52,8 +72,6 @@ Core and Builtins Library ------- -- Issue #17968: Fix memory leak in os.listxattr(). - - Issue #17606: Fixed support of encoded byte strings in the XMLGenerator characters() and ignorableWhitespace() methods. Original patch by Sebastian Ortiz Vasquez. @@ -241,9 +259,6 @@ Tests Documentation ------------- -- Issue #17977: The documentation for the cadefault argument's default value - in urllib.request.urlopen() is fixed to match the code. - - Issue #15940: Specify effect of locale on time functions. - Issue #6696: add documentation for the Profile objects, and improve From ef535584a941c6e5cada828a118a06f5ddf80e86 Mon Sep 17 00:00:00 2001 From: "doko@ubuntu.com" Date: Wed, 15 May 2013 18:02:13 +0200 Subject: [PATCH 2/2] - Issue #17754: Make ctypes.util.find_library() independent of the locale. --- Lib/ctypes/util.py | 2 +- Misc/NEWS | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Lib/ctypes/util.py b/Lib/ctypes/util.py index 15156042727..054c51158e6 100644 --- a/Lib/ctypes/util.py +++ b/Lib/ctypes/util.py @@ -92,7 +92,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: diff --git a/Misc/NEWS b/Misc/NEWS index e88f8c454b4..98c4c19a4d8 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -10,6 +10,8 @@ What's New in Python 3.3.3? 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 a cell, even if the cell was cleared.