[Python-checkins] python/dist/src/Misc NEWS,1.524,1.525

akuchling@users.sourceforge.net akuchling@users.sourceforge.net
Fri, 15 Nov 2002 06:42:37 -0800


Update of /cvsroot/python/python/dist/src/Misc
In directory usw-pr-cvs1:/tmp/cvs-serv24463

Modified Files:
	NEWS 
Log Message:
Fix minor nits
Trim excess whitespace off one line


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.524
retrieving revision 1.525
diff -C2 -d -r1.524 -r1.525
*** NEWS	15 Nov 2002 13:19:58 -0000	1.524
--- NEWS	15 Nov 2002 14:42:34 -0000	1.525
***************
*** 13,17 ****
  --------------------------------------------
  
! - Assignment to __class__ is disallowed if either the old and the new
    class is a statically allocated type object (such as defined by an
    extension module).  This prevents anomalies like 2.__class__ = bool.
--- 13,17 ----
  --------------------------------------------
  
! - 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.
***************
*** 383,387 ****
  
  - A new module, optparse, provides a fancy alternative to getopt for
!   command line parsing.  It is slightly modified version of Greg
    Ward's Optik package.
  
--- 383,387 ----
  
  - A new module, optparse, provides a fancy alternative to getopt for
!   command line parsing.  It is a slightly modified version of Greg
    Ward's Optik package.
  
***************
*** 393,397 ****
  - 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.								
  
  - A new package, logging, implements the logging API defined by PEP
--- 393,397 ----
  - 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.
  
  - A new package, logging, implements the logging API defined by PEP