diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-05-10 22:57:29 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-05-10 22:57:29 (GMT) |
commit | ba9c6645f795c7bf82ee097a240cbd060605afe7 (patch) | |
tree | b0df120024a541db1ef5f8a75f581be160712523 /Misc/NEWS | |
parent | 136726537ffd92b0f3e8dabb23023ed514852e2e (diff) | |
download | cpython-ba9c6645f795c7bf82ee097a240cbd060605afe7.zip cpython-ba9c6645f795c7bf82ee097a240cbd060605afe7.tar.gz cpython-ba9c6645f795c7bf82ee097a240cbd060605afe7.tar.bz2 |
Issue #10419: Fix build_scripts command of distutils to handle correctly
non-ASCII scripts. 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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -69,6 +69,10 @@ Core and Builtins Library ------- +- Issue #10419: Fix build_scripts command of distutils to handle correctly + non-ASCII scripts. 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 #12012: ssl.PROTOCOL_SSLv2 becomes optional. - Issue #11164: Stop trying to use _xmlplus in the xml module. |