diff options
author | Raymond Hettinger <python@rcn.com> | 2003-02-21 05:42:13 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2003-02-21 05:42:13 (GMT) |
commit | 1b56de05d500b4111b4c59251c388f52bef38492 (patch) | |
tree | 95fa87ba465b49ea85fdf567282c9a06da3b1b48 /Doc | |
parent | a97e4f3a497094375b37bd2abb1e7e80b810fd53 (diff) | |
download | cpython-1b56de05d500b4111b4c59251c388f52bef38492.zip cpython-1b56de05d500b4111b4c59251c388f52bef38492.tar.gz cpython-1b56de05d500b4111b4c59251c388f52bef38492.tar.bz2 |
Fill in missing table entries.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/liboperator.tex | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Doc/lib/liboperator.tex b/Doc/lib/liboperator.tex index 7bd66ea..5ac1b6d 100644 --- a/Doc/lib/liboperator.tex +++ b/Doc/lib/liboperator.tex @@ -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}]}} |