From: Fred Drake Date: Fri, 15 Dec 2000 05:41:49 +0000 (+0000) Subject: Grant Griffin : X-Git-Tag: v2.1a1~567 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=29c45a5e91e3fc2e35fdfaf75ee58f2a204e84ce;p=thirdparty%2FPython%2Fcpython.git Grant Griffin : Clarify that invert() is a *bitwise* operation. --- diff --git a/Doc/lib/liboperator.tex b/Doc/lib/liboperator.tex index 14c48a4814a3..9c7c3892ed26 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}