summaryrefslogtreecommitdiffstats
path: root/Doc/ref/ref3.tex
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2004-01-01 05:43:53 (GMT)
committerFred Drake <fdrake@acm.org>2004-01-01 05:43:53 (GMT)
commit7a700b873b8f69135c336c907120cf7b767ddc45 (patch)
treec689d66c6fd96c4971485f1c8e6f2afa9517e78a /Doc/ref/ref3.tex
parentfcadf6bdaf47b21f3ba1f5c286ffba4d8e56a6a2 (diff)
downloadcpython-7a700b873b8f69135c336c907120cf7b767ddc45.zip
cpython-7a700b873b8f69135c336c907120cf7b767ddc45.tar.gz
cpython-7a700b873b8f69135c336c907120cf7b767ddc45.tar.bz2
clean up indexing for None, NotImplemented
closes SF bug #820344
Diffstat (limited to 'Doc/ref/ref3.tex')
-rw-r--r--Doc/ref/ref3.tex6
1 files changed, 2 insertions, 4 deletions
diff --git a/Doc/ref/ref3.tex b/Doc/ref/ref3.tex
index 61d7796..1daf18a 100644
--- a/Doc/ref/ref3.tex
+++ b/Doc/ref/ref3.tex
@@ -134,8 +134,7 @@ This object is accessed through the built-in name \code{None}.
It is used to signify the absence of a value in many situations, e.g.,
it is returned from functions that don't explicitly return anything.
Its truth value is false.
-\ttindex{None}
-\obindex{None@{\texttt{None}}}
+\obindex{None}
\item[NotImplemented]
This type has a single value. There is a single object with this value.
@@ -144,8 +143,7 @@ Numeric methods and rich comparison methods may return this value if
they do not implement the operation for the operands provided. (The
interpreter will then try the reflected operation, or some other
fallback, depending on the operator.) Its truth value is true.
-\ttindex{NotImplemented}
-\obindex{NotImplemented@{\texttt{NotImplemented}}}
+\obindex{NotImplemented}
\item[Ellipsis]
This type has a single value. There is a single object with this value.