[Python-checkins] python/dist/src/Misc NEWS,1.337.2.4.2.23,1.337.2.4.2.24

anthonybaxter@sourceforge.net anthonybaxter@sourceforge.net
Wed, 17 Apr 2002 22:38:55 -0700


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

Modified Files:
      Tag: release22-maint
	NEWS 
Log Message:
backport gvanrossum's patch:

Add news about deprecated complex ops.

Original patches were:
python/dist/src/Misc/NEWS:1.387



Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.337.2.4.2.23
retrieving revision 1.337.2.4.2.24
diff -C2 -d -r1.337.2.4.2.23 -r1.337.2.4.2.24
*** NEWS	18 Apr 2002 05:21:16 -0000	1.337.2.4.2.23
--- NEWS	18 Apr 2002 05:38:53 -0000	1.337.2.4.2.24
***************
*** 9,12 ****
--- 9,16 ----
    SourceForge as bug 543148.
  
+ - Complex numbers supported divmod() and the // and % operators, but
+   these make no sense.  Since this was documented, they're being
+   deprecated now.
+ 
  - String methods lstrip(), rstrip() and strip() now take an optional
    argument that specifies the characters to strip.  For example,