summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-05-10 22:14:28 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-05-10 22:14:28 (GMT)
commit1eb4f28c6db5dd6362341a5f4defc09ef0e7942d (patch)
treeb4bdd8e768e5f467afa90f40ca17db86f01bd480 /Misc/NEWS
parentf188bc5d4618103bd86a49a6b473e4a86e6b22b7 (diff)
downloadcpython-1eb4f28c6db5dd6362341a5f4defc09ef0e7942d.zip
cpython-1eb4f28c6db5dd6362341a5f4defc09ef0e7942d.tar.gz
cpython-1eb4f28c6db5dd6362341a5f4defc09ef0e7942d.tar.bz2
Close #10419, issue #6011: build_scripts command of distutils handles correctly
non-ASCII path (path to the Python executable). Open and write the script in binary mode, but ensure that the shebang is decodable from UTF-8 and from the encoding of the script.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index fdac4a2..0307c80 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -86,6 +86,11 @@ Core and Builtins
Library
-------
+- Issue #10419, #6011: build_scripts command of distutils handles correctly
+ non-ASCII path (path to the Python executable). Open and write the script in
+ binary mode, but ensure that the shebang is decodable from UTF-8 and from the
+ encoding of the script.
+
- Issue #8498: In socket.accept(), allow to specify 0 as a backlog value in
order to accept exactly one connection. Patch by Daniel Evers.