]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix minor nits
authorAndrew M. Kuchling <amk@amk.ca>
Fri, 15 Nov 2002 14:42:34 +0000 (14:42 +0000)
committerAndrew M. Kuchling <amk@amk.ca>
Fri, 15 Nov 2002 14:42:34 +0000 (14:42 +0000)
Trim excess whitespace off one line

Misc/NEWS

index 3c65e36d3dc9734f29d8c68427ce19fa3b36fc42..bd37a946ba77ddecab22bcda5a00d06640d2e042 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,7 +12,7 @@ What's New in Python 2.3 alpha 1?
 Type/class unification and new-style classes
 --------------------------------------------
 
-- Assignment to __class__ is disallowed if either the old and the new
+- Assignment to __class__ is disallowed if either the old or the new
   class is a statically allocated type object (such as defined by an
   extension module).  This prevents anomalies like 2.__class__ = bool.
 
@@ -382,7 +382,7 @@ Library
 -------
 
 - A new module, optparse, provides a fancy alternative to getopt for
-  command line parsing.  It is slightly modified version of Greg
+  command line parsing.  It is slightly modified version of Greg
   Ward's Optik package.
 
 - UserDict.py now defines a DictMixin class which defines all dictionary
@@ -392,7 +392,7 @@ Library
 
 - shelve.py now subclasses from UserDict.DictMixin.  Now shelve supports
   all dictionary methods.  This eases the transition to persistent
-  storage for scripts originally written with dictionaries in mind.                                                            
+  storage for scripts originally written with dictionaries in mind.
 
 - A new package, logging, implements the logging API defined by PEP
   282.  The code is written by Vinay Sajip.