diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-09-04 20:16:53 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-09-04 20:16:53 (GMT) |
commit | 7d6e076f6d8dd48cfd748b02dad17dbeb0b346a3 (patch) | |
tree | 3d355bd888b6e2aaba52f33807d183055d61b700 /Misc/NEWS | |
parent | d9107aadeda663173eb68c412396e5e3353a4059 (diff) | |
download | cpython-7d6e076f6d8dd48cfd748b02dad17dbeb0b346a3.zip cpython-7d6e076f6d8dd48cfd748b02dad17dbeb0b346a3.tar.gz cpython-7d6e076f6d8dd48cfd748b02dad17dbeb0b346a3.tar.bz2 |
Issue #7451: Improve decoding performance of JSON objects, and reduce
the memory consumption of said decoded objects when they use the same
strings as keys.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -165,6 +165,10 @@ Extensions Library ------- +- Issue #7451: Improve decoding performance of JSON objects, and reduce + the memory consumption of said decoded objects when they use the same + strings as keys. + - Issue #1100562: Fix deep-copying of objects derived from the list and dict types. Patch by Michele Orrù and Björn Lindqvist. |