From: Victor Stinner Date: Thu, 24 Jul 2014 10:24:45 +0000 (+0200) Subject: (Merge 3.4) Issue #19884: readline: Disable the meta modifier key if stdout is X-Git-Tag: v3.5.0a1~1215 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=24ad98b98cfa9be1dc704c37a9538a8c0bc113e0;p=thirdparty%2FPython%2Fcpython.git (Merge 3.4) Issue #19884: readline: Disable the meta modifier key if stdout is not a terminal to not write the ANSI sequence "\033[1034h" into stdout. This sequence is used on some terminal (ex: TERM=xterm-256color") to enable support of 8 bit characters. --- 24ad98b98cfa9be1dc704c37a9538a8c0bc113e0 diff --cc Misc/NEWS index e95528f5859d,0def1949a77f..e6ad54f3fb0d --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -108,15 -27,11 +108,20 @@@ Core and Builtin Library ------- + - Issue #19884: readline: Disable the meta modifier key if stdout is not + a terminal to not write the ANSI sequence "\033[1034h" into stdout. This + sequence is used on some terminal (ex: TERM=xterm-256color") to enable + support of 8 bit characters. + +- Issue #4350: Removed a number of out-of-dated and non-working for a long time + Tkinter methods. + +- Issue #6167: Scrollbar.activate() now returns the name of active element if + the argument is not specified. Scrollbar.set() now always accepts only 2 + arguments. + +- Issue #15275: Clean up and speed up the ntpath module. + - Issue #21888: plistlib's load() and loads() now work if the fmt parameter is specified.