diff options
author | Raymond Hettinger <python@rcn.com> | 2003-06-30 04:18:48 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2003-06-30 04:18:48 (GMT) |
commit | d693a81595ae3c617f5dd20f9a8bf8b7f130683b (patch) | |
tree | 9b967125a07413622eac5ed8b65933c378b9cdf5 /Misc | |
parent | 562a855da062202e0af39cb290c3baf7228dc350 (diff) | |
download | cpython-d693a81595ae3c617f5dd20f9a8bf8b7f130683b.zip cpython-d693a81595ae3c617f5dd20f9a8bf8b7f130683b.tar.gz cpython-d693a81595ae3c617f5dd20f9a8bf8b7f130683b.tar.bz2 |
Fix SF 762891: "del p[key]" on proxy object raises SystemError()
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 33 |
1 files changed, 33 insertions, 0 deletions
@@ -4,6 +4,39 @@ Python News (editors: check NEWS.help for information about editing NEWS using ReST.) +What's New in Python 2.3 release candidate? +=========================================== + +Core and builtins +----------------- + +Extension modules +----------------- + +- weakref.proxy() can now handle "del obj[i]" for proxy objects + defining __delitem__. Formerly, it generated a SystemError. + +- SSL no longer crashes the interpreter when the remote side disconnects. + +Library +------- + +Tools/Demos +----------- + +Build +----- + +C API +----- + +Windows +------- + +Mac +--- + + What's New in Python 2.3 beta 2? ================================ |