diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2002-11-15 14:42:34 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2002-11-15 14:42:34 (GMT) |
commit | e0373f81791869197d4506c20c9e11916b8fa37a (patch) | |
tree | fcdbf40e40e012dc8e7bc83c260d119cd043cfb0 /Misc | |
parent | 88eed70fc85ce513a851a4b91ba6a3e5f341edb5 (diff) | |
download | cpython-e0373f81791869197d4506c20c9e11916b8fa37a.zip cpython-e0373f81791869197d4506c20c9e11916b8fa37a.tar.gz cpython-e0373f81791869197d4506c20c9e11916b8fa37a.tar.bz2 |
Fix minor nits
Trim excess whitespace off one line
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 a 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. |