]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
backport gvanrossum's patch:
authorAnthony Baxter <anthonybaxter@gmail.com>
Thu, 18 Apr 2002 05:38:53 +0000 (05:38 +0000)
committerAnthony Baxter <anthonybaxter@gmail.com>
Thu, 18 Apr 2002 05:38:53 +0000 (05:38 +0000)
Add news about deprecated complex ops.

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

Misc/NEWS

index 135c9f245f46a4fe5a30599bc08e6809fc856d60..0507950048c07646d27fe097e9d1a734f7fc0153 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -8,6 +8,10 @@ Core and builtins
   great many cyclic structures involving frames.  Reported on
   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,
   "Foo!!!?!?!?".rstrip("?!") -> "Foo". In addition, "200L".strip("L")