From: Guido van Rossum Date: Mon, 15 Apr 2002 12:36:47 +0000 (+0000) Subject: Add news about deprecated complex ops. X-Git-Tag: v2.3c1~5961 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=862fe3c52e3ef8d4ebe81d473b112cb25b15329a;p=python Add news about deprecated complex ops. --- diff --git a/Misc/NEWS b/Misc/NEWS index e6fc808f1b..400b63161e 100644 --- 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".