From: Serhiy Storchaka Date: Thu, 11 Jul 2013 17:36:00 +0000 (+0300) Subject: Issue #18101: Tcl.split() now process strings nested in a tuple as it X-Git-Tag: v3.4.0a1~259 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=50ae3f680b43eda435daba083a1e4b41eecc4e58;p=python Issue #18101: Tcl.split() now process strings nested in a tuple as it do with byte strings. Added tests for Tcl.split() and Tcl.splitline(). --- 50ae3f680b43eda435daba083a1e4b41eecc4e58 diff --cc Misc/NEWS index e62f05a42a,ea221cb805..ea5a287f3e --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -148,10 -44,9 +148,13 @@@ Core and Builtin Library ------- + - Issue #18101: Tcl.split() now process strings nested in a tuple as it + do with byte strings. + +- Issue #18116: getpass was always getting an error when testing /dev/tty, + and thus was always falling back to stdin. It also leaked an open file + when it did so. Both of these issues are now fixed. + - Issue #17198: Fix a NameError in the dbm module. Patch by Valentina Mukhamedzhanova.