diff options
author | Raymond Hettinger <python@rcn.com> | 2009-01-09 03:58:09 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2009-01-09 03:58:09 (GMT) |
commit | 3563153793623f693b8cd5697cd8a2ae6094d240 (patch) | |
tree | b29d9a22814ee220f28ddbc9a21ed895ae37bfbc /Misc/NEWS | |
parent | 1467ac8e5430b9f3a193a70b6dcd77d56a2e56f1 (diff) | |
download | cpython-3563153793623f693b8cd5697cd8a2ae6094d240.zip cpython-3563153793623f693b8cd5697cd8a2ae6094d240.tar.gz cpython-3563153793623f693b8cd5697cd8a2ae6094d240.tar.bz2 |
Reduce the size of the _PyLong_DigitValue table.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -12,6 +12,10 @@ What's New in Python 3.1 alpha 0 Core and Builtins ----------------- +- The internal table, _PyLong_DigitValue, is now an array of unsigned chars + instead of ints (reducing its size from 4 to 8 times thereby reducing + Python's overall memory). + - Issue #1180193: When importing a module from a .pyc (or .pyo) file with an existing .py counterpart, override the co_filename attributes of all code objects if the original filename is obsolete (which can happen if the |