[Python-checkins] python/dist/src/Misc NEWS,1.693,1.694

rhettinger@users.sourceforge.net rhettinger@users.sourceforge.net
Tue, 11 Mar 2003 13:44:00 -0800


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

Modified Files:
	NEWS 
Log Message:
Fix spelling.

Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.693
retrieving revision 1.694
diff -C2 -d -r1.693 -r1.694
*** NEWS	9 Mar 2003 05:33:32 -0000	1.693
--- NEWS	11 Mar 2003 21:43:55 -0000	1.694
***************
*** 248,252 ****
    an mmap'ed file which was already closed.  (SF patch #665913)
  
! - Fixed serveral serious bugs in the zipimport implementation.
  
  - datetime changes:
--- 248,252 ----
    an mmap'ed file which was already closed.  (SF patch #665913)
  
! - Fixed several serious bugs in the zipimport implementation.
  
  - datetime changes:
***************
*** 622,626 ****
    Jython 2.1.
  
! - PEP 302 has been accepted.  Although it was inititally developed to
    support zipimport, it offers a new, general import hook mechanism.
    Several new variables have been added to the sys module:
--- 622,626 ----
    Jython 2.1.
  
! - PEP 302 has been accepted.  Although it was initially developed to
    support zipimport, it offers a new, general import hook mechanism.
    Several new variables have been added to the sys module:
***************
*** 1024,1030 ****
  
  - unittest.py now has two additional methods called assertAlmostEqual()
!   and failIfAlmostEqual().  They implement an approximate comparision
    by rounding the difference between the two arguments and comparing
!   the result to zero.  Approximate comparision is essential for
    unit tests of floating point results.
  
--- 1024,1030 ----
  
  - unittest.py now has two additional methods called assertAlmostEqual()
!   and failIfAlmostEqual().  They implement an approximate comparison
    by rounding the difference between the two arguments and comparing
!   the result to zero.  Approximate comparison is essential for
    unit tests of floating point results.
  
***************
*** 1042,1046 ****
    test the current module.
  
! - When cancelling a server that implemented threading with a keyboard
    interrupt, the server would shut down but not terminate (waiting on
    client threads). A new member variable, daemon_threads, was added to
--- 1042,1046 ----
    test the current module.
  
! - When canceling a server that implemented threading with a keyboard
    interrupt, the server would shut down but not terminate (waiting on
    client threads). A new member variable, daemon_threads, was added to
***************
*** 1403,1407 ****
    incremented.  The apparently unused feature of "indirect interned
    strings", supported by the ob_sinterned member, is gone.  Interned
!   strings are now usually mortal; theres a new API,
    PyString_InternImmortal() that creates immortal interned strings.
    (The ob_sstate member can only take three values; however, while
--- 1403,1407 ----
    incremented.  The apparently unused feature of "indirect interned
    strings", supported by the ob_sinterned member, is gone.  Interned
!   strings are now usually mortal; there is a new API,
    PyString_InternImmortal() that creates immortal interned strings.
    (The ob_sstate member can only take three values; however, while
***************
*** 1495,1499 ****
    bugs.
    XXX What are the licensing issues here?
!   XXX If a user has a database created with a previous verion of
    XXX     Python, what must they do to convert it?
    XXX I'm still not sure how to link this thing (see PCbuild/readme.txt).
--- 1495,1499 ----
    bugs.
    XXX What are the licensing issues here?
!   XXX If a user has a database created with a previous version of
    XXX     Python, what must they do to convert it?
    XXX I'm still not sure how to link this thing (see PCbuild/readme.txt).
***************
*** 1508,1512 ****
  - When Python is built under a Microsoft compiler, sys.version now
    includes the compiler version number (_MSC_VER).  For example, under
!   MSVC 6, sys.version constains the substring "MSC v.1200 ".  1200 is
    the value of _MSC_VER under MSVC 6.
  
--- 1508,1512 ----
  - When Python is built under a Microsoft compiler, sys.version now
    includes the compiler version number (_MSC_VER).  For example, under
!   MSVC 6, sys.version contains the substring "MSC v.1200 ".  1200 is
    the value of _MSC_VER under MSVC 6.
  
***************
*** 1613,1617 ****
    (and Apple's Carbon and Cocoa documentation) through the Help Viewer.
    See Mac/OSX/README for converting the Python documentation to a
!   Help Viewer comaptible form and installing it.
  
  - OSA support has been redesigned and the generated Python classes now
--- 1613,1617 ----
    (and Apple's Carbon and Cocoa documentation) through the Help Viewer.
    See Mac/OSX/README for converting the Python documentation to a
!   Help Viewer compatible form and installing it.
  
  - OSA support has been redesigned and the generated Python classes now
***************
*** 2176,2180 ****
    module).
  
!   Note that Profile.calibrate() must be overriden by subclasses.
    Improving the accuracy required exploiting detailed knowledge of
    profiler internals; the earlier method abstracted away the details
--- 2176,2180 ----
    module).
  
!   Note that Profile.calibrate() must be overridden by subclasses.
    Improving the accuracy required exploiting detailed knowledge of
    profiler internals; the earlier method abstracted away the details