summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-08-15 06:06:44 +0000
committerTim Peters <tim.peters@gmail.com>2001-08-15 06:06:44 +0000
commit0afb60951da64e4499c4e0d5d712cd3bd325c4be (patch)
tree0fec00caefc63df12d99dfe7bbd3ed37c1c37b8b
parente5614630fb1f73dd314945f6ccc871abb33e457e (diff)
downloadcpython-git-0afb60951da64e4499c4e0d5d712cd3bd325c4be.tar.gz
Add blurb about cleanfuture.py. Fix misspelling in an older item.
-rw-r--r--Misc/NEWS8
1 files changed, 7 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e4870411c9..e2bc502bae 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -1,6 +1,12 @@
What's New in Python 2.2a2?
===========================
+Tools
+
+- The new Tools/scripts/cleanfuture.py can be used to automatically
+ edit out obsolute future statements from Python source code. See
+ the module docstring for details.
+
Tests
- regrtest.py now knows which tests are expected to be skipped on some
@@ -25,7 +31,7 @@ Library
- New class Differ and new functions ndiff() and restore() in difflib.py.
These package the algorithms used by the popular Tools/scripts/ndiff.py,
- for progammatic reuse.
+ for programmatic reuse.
- New function xml.sax.saxutils.quoteattr(): Quote an XML attribute
value using the minimal quoting required for the value; more