summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authordkf <dkf@noemail.net>2008-07-20 22:02:35 (GMT)
committerdkf <dkf@noemail.net>2008-07-20 22:02:35 (GMT)
commit33ff70d7ded83a1b82ac776fb7622afcb092cce6 (patch)
tree3ba82ab837c22df5e44f381d1fa2f4dd661f4e40 /ChangeLog
parentfdd998bba149e9b3b54694a6d0deb0d96262d606 (diff)
downloadtcl-33ff70d7ded83a1b82ac776fb7622afcb092cce6.zip
tcl-33ff70d7ded83a1b82ac776fb7622afcb092cce6.tar.gz
tcl-33ff70d7ded83a1b82ac776fb7622afcb092cce6.tar.bz2
Fix [Bug 2008248] and make dict->list->dict round trip efficient to boot.
FossilOrigin-Name: 256c78f19e7a0c93939f2a7fc1bde0d652d29c51
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]