]> granicus.if.org Git - python/commitdiff
Fill in missing table entries.
authorRaymond Hettinger <python@rcn.com>
Fri, 21 Feb 2003 05:42:13 +0000 (05:42 +0000)
committerRaymond Hettinger <python@rcn.com>
Fri, 21 Feb 2003 05:42:13 +0000 (05:42 +0000)
Doc/lib/liboperator.tex

index 7bd66ea722ea797b4b860fdc68c898eb945b6bde..5ac1b6d0636bd3c373521d74da30380f4c5764f1 100644 (file)
@@ -48,7 +48,7 @@ for more informations about rich comparisons.
 
 
 The logical operations are also generally applicable to all objects,
-and support truth tests, identity tests, and Boolean operations:
+and support truth tests, identity tests, and boolean operations:
 
 \begin{funcdesc}{not_}{o}
 \funcline{__not__}{o}
@@ -328,6 +328,10 @@ symbols in the Python syntax and the functions in the
           {\code{or_(\var{a}, \var{b})}}
   \lineiii{Exponentiation}{\code{\var{a} ** \var{b}}}
           {\code{pow(\var{a}, \var{b})}}
+  \lineiii{Identity}{\code{\var{a} is \var{b}}}
+          {\code{is_(\var{a}, \var{b})}}
+  \lineiii{Identity}{\code{\var{a} is not \var{b}}}
+          {\code{is_not(\var{a}, \var{b})}}
   \lineiii{Indexed Assignment}{\code{\var{o}[\var{k}] = \var{v}}}
           {\code{setitem(\var{o}, \var{k}, \var{v})}}
   \lineiii{Indexed Deletion}{\code{del \var{o}[\var{k}]}}