Update Misc/NEWS for r67666.

This commit is contained in:
Jeffrey Yasskin 2008-12-10 07:35:02 +00:00
parent 1868d7c221
commit ffd42cf444
1 changed files with 3 additions and 0 deletions

View File

@ -12,6 +12,9 @@ What's New in Python 2.7 alpha 1
Core and Builtins Core and Builtins
----------------- -----------------
- Issue #4597: Fixed several opcodes that weren't always propagating
exceptions.
- Issue #4445: Replace "sizeof(PyStringObject)" with - Issue #4445: Replace "sizeof(PyStringObject)" with
"offsetof(PyStringObject, ob_sval) + 1" when allocating memory for "offsetof(PyStringObject, ob_sval) + 1" when allocating memory for
str instances. On a typical machine this saves 3 bytes of memory str instances. On a typical machine this saves 3 bytes of memory