diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2008-07-20 22:02:36 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2008-07-20 22:02:36 (GMT) |
commit | 4102bed2736a6e342da6b5f44520c4bd9f8f993b (patch) | |
tree | 3ba82ab837c22df5e44f381d1fa2f4dd661f4e40 /ChangeLog | |
parent | 1b5339323d5019362fce5d4438be34421f337dc8 (diff) | |
download | tcl-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-- | 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] |