diff options
author | Kurt B. Kaiser <kbk@shore.net> | 2011-05-11 16:24:17 (GMT) |
---|---|---|
committer | Kurt B. Kaiser <kbk@shore.net> | 2011-05-11 16:24:17 (GMT) |
commit | e147806da9b138e53d86f0a2569a107f6a975834 (patch) | |
tree | c69f482841231160bf4b4af337b3f3dd76e5b8e8 /Misc/NEWS | |
parent | ba9c6645f795c7bf82ee097a240cbd060605afe7 (diff) | |
download | cpython-e147806da9b138e53d86f0a2569a107f6a975834.zip cpython-e147806da9b138e53d86f0a2569a107f6a975834.tar.gz cpython-e147806da9b138e53d86f0a2569a107f6a975834.tar.bz2 |
Issue #1028: Tk returns invalid Unicode null in %A: UnicodeDecodeError.
With Tk < 8.5 _tkinter.c:PythonCmd() raised UnicodeDecodeError, caused IDLE to
exit. Converted to valid Unicode null in PythonCmd().
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 #1028: Tk returns invalid Unicode null in %A: UnicodeDecodeError. + With Tk < 8.5 _tkinter.c:PythonCmd() raised UnicodeDecodeError, caused + IDLE to exit. Converted to valid Unicode null in PythonCmd(). + - 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. |