diff options
author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2009-01-12 23:36:55 (GMT) |
---|---|---|
committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2009-01-12 23:36:55 (GMT) |
commit | a40d57366432cd65915b92fe3e6bfe1d5ad63be0 (patch) | |
tree | 45ef11eae7d47a373fea86cba4b1b0c4902bb93a /Misc/NEWS | |
parent | f94d7fa5fb90df0163cffca2864885a7da49d4f6 (diff) | |
download | cpython-a40d57366432cd65915b92fe3e6bfe1d5ad63be0.zip cpython-a40d57366432cd65915b92fe3e6bfe1d5ad63be0.tar.gz cpython-a40d57366432cd65915b92fe3e6bfe1d5ad63be0.tar.bz2 |
#3720: Interpreter crashes when an evil iterator removes its own next function.
Now the slot is filled with a function that always raises.
Will not backport: extensions compiled with 2.6.x would not run on 2.6.0.
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.7 alpha 1 Core and Builtins ----------------- +- Issue #3720: Fix a crash when an iterator modifies its class and removes its + __next__ method. + - Issue #4893: Use NT threading on CE. - Issue #4915: Port sysmodule to Windows CE. |