[Python-checkins] CVS: python/dist/src/Doc/ref ref3.tex,1.56,1.57

Neil Schemenauer python-dev@python.org
Wed, 03 Jan 2001 17:25:52 -0800


Update of /cvsroot/python/python/dist/src/Doc/ref
In directory usw-pr-cvs1:/tmp/cvs-serv20476/Doc/ref

Modified Files:
	ref3.tex 
Log Message:
Document the NotImplemented object.


Index: ref3.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/ref/ref3.tex,v
retrieving revision 1.56
retrieving revision 1.57
diff -C2 -r1.56 -r1.57
*** ref3.tex	2000/12/19 14:09:21	1.56
--- ref3.tex	2001/01/04 01:25:50	1.57
***************
*** 131,134 ****
--- 131,143 ----
  \obindex{None@{\texttt{None}}}
  
+ \item[NotImplemented]
+ This type has a single value.  There is a single object with this value.
+ This object is accessed through the built-in name \code{NotImplemented}.
+ Binary number methods may return this value if they do not implement the
+ operation for the types of operands provided.  The interpreter will then
+ try the reverse operation. Its truth value is true.
+ \ttindex{NotImplemented}
+ \obindex{NotImplemented@{\texttt{NotImplemented}}}
+ 
  \item[Ellipsis]
  This type has a single value.  There is a single object with this value.