Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
1b56de05
Commit
1b56de05
authored
Feb 21, 2003
by
Raymond Hettinger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fill in missing table entries.
parent
a97e4f3a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
Doc/lib/liboperator.tex
Doc/lib/liboperator.tex
+5
-1
No files found.
Doc/lib/liboperator.tex
View file @
1b56de05
...
...
@@ -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
B
oolean operations:
and support truth tests, identity tests, and
b
oolean 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
}
]
}}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment