From: Victor Stinner Date: Thu, 1 Sep 2011 23:02:23 +0000 (+0200) Subject: Merge 3.2: Issue #12636: IDLE reads the coding cookie when executing a Python script. X-Git-Tag: v3.3.0a1~1582 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6c78de55fcb0c0894fd81bc3c9b43a19207fa9c3;p=python Merge 3.2: Issue #12636: IDLE reads the coding cookie when executing a Python script. And "IDLE: fix some RessourceWarning, reuse tokenize.open()" --- 6c78de55fcb0c0894fd81bc3c9b43a19207fa9c3 diff --cc Misc/NEWS index 01b72812bf,c74cb5596d..d83c12226c --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -271,15 -28,10 +271,17 @@@ Core and Builtin Library ------- + - Issue #12636: IDLE reads the coding cookie when executing a Python script. + +- Issue #12494: On error, call(), check_call(), check_output() and + getstatusoutput() functions of the subprocess module now kill the process, + read its status (to avoid zombis) and close pipes. + +- Issue #12720: Expose low-level Linux extended file attribute functions in os. + - Issue #10946: The distutils commands bdist_dumb, bdist_wininst and bdist_msi - now respect a --skip-build option given to bdist. + now respect a --skip-build option given to bdist. The packaging commands + were fixed too. - Issue #12847: Fix a crash with negative PUT and LONG_BINPUT arguments in the C pickle implementation.