summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2002-04-15 12:36:47 (GMT)
committerGuido van Rossum <guido@python.org>2002-04-15 12:36:47 (GMT)
commit862fe3c52e3ef8d4ebe81d473b112cb25b15329a (patch)
treed8d9f379ad962acfd3da8cef2908ff49a6d5211b /Misc
parent6c65531511901325391dae6effd0183b39c92c27 (diff)
downloadcpython-862fe3c52e3ef8d4ebe81d473b112cb25b15329a.zip
cpython-862fe3c52e3ef8d4ebe81d473b112cb25b15329a.tar.gz
cpython-862fe3c52e3ef8d4ebe81d473b112cb25b15329a.tar.bz2
Add news about deprecated complex ops.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e6fc808..400b631 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".