]> granicus.if.org Git - python/commitdiff
Add news about deprecated complex ops.
authorGuido van Rossum <guido@python.org>
Mon, 15 Apr 2002 12:36:47 +0000 (12:36 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 15 Apr 2002 12:36:47 +0000 (12:36 +0000)
Misc/NEWS

index e6fc808f1b9ae8778c36e1d517e583d2706421ea..400b63161e3290bfbe1c99226a30b82531cd1c0b 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -6,6 +6,10 @@ Type/class unification and new-style classes
 
 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,
   "Foo!!!?!?!?".rstrip("?!") -> "Foo".