diff options
author | dkf <dkf@noemail.net> | 2008-07-20 22:02:35 (GMT) |
---|---|---|
committer | dkf <dkf@noemail.net> | 2008-07-20 22:02:35 (GMT) |
commit | 33ff70d7ded83a1b82ac776fb7622afcb092cce6 (patch) | |
tree | 3ba82ab837c22df5e44f381d1fa2f4dd661f4e40 /ChangeLog | |
parent | fdd998bba149e9b3b54694a6d0deb0d96262d606 (diff) | |
download | tcl-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-- | ChangeLog | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -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] |