diff options
author | Raymond Hettinger <python@rcn.com> | 2002-05-21 18:19:49 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2002-05-21 18:19:49 (GMT) |
commit | 6cf09f0792df49527cda241743a34c3555a83835 (patch) | |
tree | e3e9c616f06b39d1bd693d312bd89c8b63e5f782 /Doc/lib/libfuncs.tex | |
parent | 97394bc7950d898843f7136c5af69279ea9bb080 (diff) | |
download | cpython-6cf09f0792df49527cda241743a34c3555a83835.zip cpython-6cf09f0792df49527cda241743a34c3555a83835.tar.gz cpython-6cf09f0792df49527cda241743a34c3555a83835.tar.bz2 |
Patch 543387. Document deprecation of complex %, //,and divmod().
Diffstat (limited to 'Doc/lib/libfuncs.tex')
-rw-r--r-- | Doc/lib/libfuncs.tex | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/lib/libfuncs.tex b/Doc/lib/libfuncs.tex index c7bb5a6..158ea0c 100644 --- a/Doc/lib/libfuncs.tex +++ b/Doc/lib/libfuncs.tex @@ -248,9 +248,9 @@ def my_import(name): \end{funcdesc} \begin{funcdesc}{divmod}{a, b} - Take two numbers as arguments and return a pair of numbers consisting - of their quotient and remainder when using long division. With mixed - operand types, the rules for binary arithmetic operators apply. For + Take two (non complex) numbers as arguments and return a pair of numbers + consisting of their quotient and remainder when using long division. With + mixed operand types, the rules for binary arithmetic operators apply. For plain and long integers, the result is the same as \code{(\var{a} / \var{b}, \var{a} \%{} \var{b})}. For floating point numbers the result is \code{(\var{q}, \var{a} \%{} |