summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2003-06-30 04:18:48 (GMT)
committerRaymond Hettinger <python@rcn.com>2003-06-30 04:18:48 (GMT)
commitd693a81595ae3c617f5dd20f9a8bf8b7f130683b (patch)
tree9b967125a07413622eac5ed8b65933c378b9cdf5 /Misc
parent562a855da062202e0af39cb290c3baf7228dc350 (diff)
downloadcpython-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/NEWS33
1 files changed, 33 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index dbd9192..022a1a6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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?
================================