[Python-checkins] python/dist/src/Misc NEWS,1.386,1.387

gvanrossum@sourceforge.net gvanrossum@sourceforge.net
Mon, 15 Apr 2002 05:36:49 -0700


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

Modified Files:
	NEWS 
Log Message:
Add news about deprecated complex ops.


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.386
retrieving revision 1.387
diff -C2 -d -r1.386 -r1.387
*** NEWS	14 Apr 2002 10:19:43 -0000	1.386
--- NEWS	15 Apr 2002 12:36:47 -0000	1.387
***************
*** 7,10 ****
--- 7,14 ----
  Core and builtins
  
+ - 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,