summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2006-06-12 02:11:18 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2006-06-12 02:11:18 (GMT)
commitb9845e72f9af2c47fbeeb0d27bd1659e38a9ffbd (patch)
tree4aa1710f2eafe066868bfe001317774344b0d1dd /Misc
parent2585ad58e6b8bbb54888f31f72536f55a3c77b29 (diff)
downloadcpython-b9845e72f9af2c47fbeeb0d27bd1659e38a9ffbd.zip
cpython-b9845e72f9af2c47fbeeb0d27bd1659e38a9ffbd.tar.gz
cpython-b9845e72f9af2c47fbeeb0d27bd1659e38a9ffbd.tar.bz2
Get rid of f_restricted too. Doc the other 4 ints that were already removed
at the NeedForSpeed sprint.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 699caa1..f3c8739 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.5 beta 1?
Core and builtins
-----------------
+- Removed 5 integers from C frame objects (PyFrameObject).
+ f_nlocals, f_ncells, f_nfreevars, f_stack_size, f_restricted.
+
- Bug #532646: object.__call__() will continue looking for the __call__
attribute on objects until one without one is found. This leads to recursion
when you take a class and set its __call__ attribute to an instance of the