summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2004-08-13 03:18:29 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2004-08-13 03:18:29 (GMT)
commitf076953eb13caf629c81c3656cc0f178c7a91b1d (patch)
tree0a433a11cc30bd1ef3cd9bc1d7b026ee88a29235 /Misc/NEWS
parent39689c5c6a2a3f1a9135d62b427032a3c4eae053 (diff)
downloadcpython-f076953eb13caf629c81c3656cc0f178c7a91b1d.zip
cpython-f076953eb13caf629c81c3656cc0f178c7a91b1d.tar.gz
cpython-f076953eb13caf629c81c3656cc0f178c7a91b1d.tar.bz2
SF patch #1005778, Fix seg fault if list object is modified during list.index()
Backport candidate
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index c4a1cf1..c1c7867 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,10 @@ What's New in Python 2.4 alpha 3?
Core and builtins
-----------------
+- SF patch #1005778. Fix a seg fault if the list size changed while
+ calling list.index(). This could happen if a rich comparison function
+ modified the list.
+
- The ``func_name`` (a.k.a. ``__name__``) attribute of user-defined
functions is now writable.