summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2003-06-13 20:37:23 (GMT)
committerGuido van Rossum <guido@python.org>2003-06-13 20:37:23 (GMT)
commitce74f8ae96b039da995f7f2833f1526487b4406a (patch)
treef0e27867e71e175f95be5b9be4f2d86df6cb4458 /Misc
parentb1ab4d940bfad7a34892b10927d6c2c88545c741 (diff)
downloadcpython-ce74f8ae96b039da995f7f2833f1526487b4406a.zip
cpython-ce74f8ae96b039da995f7f2833f1526487b4406a.tar.gz
cpython-ce74f8ae96b039da995f7f2833f1526487b4406a.tar.bz2
News about the new IDLE (is more needed?). News about SF patch
751998.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS9
1 files changed, 9 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 2ca8e9e..d99851d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.3 beta 2?
Core and builtins
-----------------
+- SF patch 751998 fixes an unwanted side effect of the previous fix
+ for SF bug 742860 (the next item).
+
- SF bug 742860: "WeakKeyDictionary __delitem__ uses iterkeys". This
wasn't threadsafe, was very inefficient (expected time O(len(dict))
instead of O(1)), and could raise a spurious RuntimeError if another
@@ -70,6 +73,10 @@ Extension modules
Library
-------
+- A brand new version of IDLE (from the IDLEfork project at
+ SourceForge) is now included as Lib/idlelib. The old Tools/idle is
+ no more.
+
- copy.py: applied SF patch 707900, fixing bug 702858, by Steven
Taschuk. Copying a new-style class that had a reference to itself
didn't work. (The same thing worked fine for old-style classes.)
@@ -100,6 +107,8 @@ Library
Tools/Demos
-----------
+- Tools/idle is gone; long live Lib/idlelib.
+
- diff.py is a new script for print file diffs in context, unified, or ndiff
formats. Provides an alternate command line interface to difflib.py.