summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-07-11 17:34:47 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-07-11 17:34:47 (GMT)
commit275d5fdbe40e172ab2bc99084178cb5f81334a54 (patch)
tree06df6649374c0982d53b4811b1d63e111357ae92 /Misc
parent5a33f813483325ab3e13596814c3eade6e0bb518 (diff)
downloadcpython-275d5fdbe40e172ab2bc99084178cb5f81334a54.zip
cpython-275d5fdbe40e172ab2bc99084178cb5f81334a54.tar.gz
cpython-275d5fdbe40e172ab2bc99084178cb5f81334a54.tar.bz2
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().
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 4d55853..ea221cb 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -44,6 +44,9 @@ Core and Builtins
Library
-------
+- Issue #18101: Tcl.split() now process strings nested in a tuple as it
+ do with byte strings.
+
- Issue #17198: Fix a NameError in the dbm module. Patch by Valentina
Mukhamedzhanova.