summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2008-07-20 22:02:36 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2008-07-20 22:02:36 (GMT)
commit4102bed2736a6e342da6b5f44520c4bd9f8f993b (patch)
tree3ba82ab837c22df5e44f381d1fa2f4dd661f4e40 /ChangeLog
parent1b5339323d5019362fce5d4438be34421f337dc8 (diff)
downloadtcl-4102bed2736a6e342da6b5f44520c4bd9f8f993b.zip
tcl-4102bed2736a6e342da6b5f44520c4bd9f8f993b.tar.gz
tcl-4102bed2736a6e342da6b5f44520c4bd9f8f993b.tar.bz2
Fix [Bug 2008248] and make dict->list->dict round trip efficient to boot.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog9
1 files changed, 9 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index fb60d1f..b139af2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2008-07-20 Donal K. Fellows <donal.k.fellows@man.ac.uk>
+
+ * generic/tclDictObj.c (SetDictFromAny): Make the list->dict
+ transformation a bit more efficient; modern dicts are ordered and so
+ we can round-trip through lists without needing the string rep at all.
+ * generic/tclListObj.c (SetListFromAny): Make the dict->list
+ transformation not lossy of internal representations and hence more
+ efficient. [Bug 2008248] (ajpasadyn) but using a more efficient patch.
+
2008-07-15 Donal K. Fellows <donal.k.fellows@man.ac.uk>
* doc/DictObj.3: Fix error in example. [Bug 2016740]