]> granicus.if.org Git - python/commitdiff
Grant Griffin <grant.griffin@honeywell.com>:
authorFred Drake <fdrake@acm.org>
Fri, 15 Dec 2000 05:41:49 +0000 (05:41 +0000)
committerFred Drake <fdrake@acm.org>
Fri, 15 Dec 2000 05:41:49 +0000 (05:41 +0000)
Clarify that invert() is a *bitwise* operation.

Doc/lib/liboperator.tex

index 14c48a4814a365ff378522693a4d8c6aa2fe1406..9c7c3892ed263846a27f388941d2559f4126f075 100644 (file)
@@ -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}