diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2008-03-17 20:22:43 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2008-03-17 20:22:43 (GMT) |
commit | 419fd49abe44dd12d978b897a77a275ce0c16d1d (patch) | |
tree | e403ed3c4ada5b89fdbc2a43ceeff9964ae1d4e8 /Misc/NEWS | |
parent | 0aed07ad80795bd5856ed60e7edcadeb353cf5a0 (diff) | |
download | cpython-419fd49abe44dd12d978b897a77a275ce0c16d1d.zip cpython-419fd49abe44dd12d978b897a77a275ce0c16d1d.tar.gz cpython-419fd49abe44dd12d978b897a77a275ce0c16d1d.tar.bz2 |
Issue 2321: reduce memory usage (increase the memory that is returned
to the system) by using pymalloc for the data of unicode objects.
Will backport.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -12,6 +12,9 @@ What's New in Python 2.6 alpha 2? Core and builtins ----------------- +- Issue #2321: use pymalloc for unicode object string data to reduce + memory usage in some circumstances. + - PEP 3127: octal literals now start with "0o". Old-style octal literals are still valid. There are binary literals with a prefix of "0b". This also affects int(x, 0). |