[Python-checkins] python/dist/src/Misc NEWS,1.430,1.431

gvanrossum@users.sourceforge.net gvanrossum@users.sourceforge.net
Tue, 18 Jun 2002 13:43:23 -0700


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

Modified Files:
	NEWS 
Log Message:
Minor tweaks to existing items (radian/degree, and UTF-16 readers..


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.430
retrieving revision 1.431
diff -C2 -d -r1.430 -r1.431
*** NEWS	17 Jun 2002 10:43:57 -0000	1.430
--- NEWS	18 Jun 2002 20:43:18 -0000	1.431
***************
*** 183,187 ****
    BOM32_* and BOM64_* were off by a factor of 2.
  
! - added degree/radian conversion functions to the math module.
  
  - ftplib.retrlines() now tests for callback is None rather than testing
--- 183,187 ----
    BOM32_* and BOM64_* were off by a factor of 2.
  
! - Added conversion functions math.degrees() and math.radians().
  
  - ftplib.retrlines() now tests for callback is None rather than testing
***************
*** 222,229 ****
    and other systems.
  
! - The UTF-16, -LE and -BE now raise a NotImplementedError
!   for all calls to .readline(). Previously, they used to just
!   produce garbage or fail with an encoding error -- UTF-16 is
!   a 2-byte encoding and the C lib's line reading APIs don't
    work well with these.
  
--- 222,229 ----
    and other systems.
  
! - The UTF-16, -LE and -BE stream readers now raise a
!   NotImplementedError for all calls to .readline(). Previously, they
!   used to just produce garbage or fail with an encoding error --
!   UTF-16 is a 2-byte encoding and the C lib's line reading APIs don't
    work well with these.