diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-06-12 02:11:18 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-06-12 02:11:18 (GMT) |
commit | b9845e72f9af2c47fbeeb0d27bd1659e38a9ffbd (patch) | |
tree | 4aa1710f2eafe066868bfe001317774344b0d1dd /Misc | |
parent | 2585ad58e6b8bbb54888f31f72536f55a3c77b29 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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 |