summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2000-12-15 05:41:49 (GMT)
committerFred Drake <fdrake@acm.org>2000-12-15 05:41:49 (GMT)
commit29c45a5e91e3fc2e35fdfaf75ee58f2a204e84ce (patch)
tree5cb7916fe2dbf5723f19f03d253aca4b56afe35e /Doc
parenta1099be778ef87726c08ee6381dd561fe79095bb (diff)
downloadcpython-29c45a5e91e3fc2e35fdfaf75ee58f2a204e84ce.zip
cpython-29c45a5e91e3fc2e35fdfaf75ee58f2a204e84ce.tar.gz
cpython-29c45a5e91e3fc2e35fdfaf75ee58f2a204e84ce.tar.bz2
Grant Griffin <grant.griffin@honeywell.com>:
Clarify that invert() is a *bitwise* operation.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/lib/liboperator.tex5
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/lib/liboperator.tex b/Doc/lib/liboperator.tex
index 14c48a4..9c7c389 100644
--- a/Doc/lib/liboperator.tex
+++ b/Doc/lib/liboperator.tex
@@ -58,8 +58,9 @@ Return the absolute value of \var{o}.
\funcline{invert}{o}
\funcline{__inv__}{o}
\funcline{__invert__}{o}
-Return the inverse of \var{o}. The names \function{invert()} and
-\function{__invert__()} were added in Python 2.0.
+Return the bitwise inverse of the number \var{o}. The names
+\function{invert()} and \function{__invert__()} were added in Python
+2.0.
\end{funcdesc}
\begin{funcdesc}{lshift}{a, b}