[Python-checkins] CVS: python/dist/src/Misc NEWS,1.293,1.294

A.M. Kuchling akuchling@users.sourceforge.net
Sun, 21 Oct 2001 18:47:29 -0700


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

Modified Files:
	NEWS 
Log Message:
Fix some typos


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.293
retrieving revision 1.294
diff -C2 -d -r1.293 -r1.294
*** NEWS	2001/10/22 00:43:43	1.293
--- NEWS	2001/10/22 01:47:26	1.294
***************
*** 68,72 ****
  - Weak reference objects are now part of the core and offers a C API.
    A bug which could allow a core dump when binary operations involved
!   proxy reference has been fixed.  weekref.ReferenceError is now a
    built-in exception.
  
--- 68,72 ----
  - Weak reference objects are now part of the core and offers a C API.
    A bug which could allow a core dump when binary operations involved
!   proxy reference has been fixed.  weakref.ReferenceError is now a
    built-in exception.
  
***************
*** 280,284 ****
  - For new-style classes, what was previously called __getattr__ is now
    called __getattribute__.  This method, if defined, is called for
!   *every* attribute access.  A new __getattr__ hook mor similar to the
    one in classic classes is defined which is called only if regular
    attribute access raises AttributeError; to catch *all* attribute
--- 280,284 ----
  - For new-style classes, what was previously called __getattr__ is now
    called __getattribute__.  This method, if defined, is called for
!   *every* attribute access.  A new __getattr__ hook more similar to the
    one in classic classes is defined which is called only if regular
    attribute access raises AttributeError; to catch *all* attribute
***************
*** 324,329 ****
    objects.
  
! - PyFile_WriteObject now passes Unicode object to the file's write
!   method. As a result, all file-like object which may be the target
    of a print statement must support Unicode objects, i.e. they must
    at least convert them into ASCII strings.
--- 324,329 ----
    objects.
  
! - PyFile_WriteObject now passes Unicode objects to the file's write
!   method. As a result, all file-like objects which may be the target
    of a print statement must support Unicode objects, i.e. they must
    at least convert them into ASCII strings.