Added note to __not__() description that this operation is defined
only by the interpreter core and is not overridable by objects.
Based on comment from David Ascher on the list.
diff --git a/Doc/lib/liboperator.tex b/Doc/lib/liboperator.tex
index c329009..608f101 100644
--- a/Doc/lib/liboperator.tex
+++ b/Doc/lib/liboperator.tex
@@ -86,7 +86,9 @@
\begin{funcdesc}{not_}{o}
\funcline{__not__}{o}
-Return the outcome of \keyword{not} \var{o}.
+Return the outcome of \keyword{not} \var{o}. (Note that there is no
+\method{__not__()} discipline for object instances; only the
+interpreter core defines this operation.)
\end{funcdesc}
\begin{funcdesc}{truth}{o}