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
42f7e5d8
Commit
42f7e5d8
authored
Apr 13, 2001
by
Fred Drake
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Work around the conversion of ">>" and "<<" to guillemets. Reported by Ping.
parent
4b974368
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
Doc/api/api.tex
Doc/api/api.tex
+4
-4
No files found.
Doc/api/api.tex
View file @
42f7e5d8
...
...
@@ -1721,14 +1721,14 @@ failure. This is the equivalent of the Python expression
\begin{cfuncdesc}
{
PyObject*
}{
PyNumber
_
Lshift
}{
PyObject *o1, PyObject *o2
}
Returns the result of left shifting
\var
{
o1
}
by
\var
{
o2
}
on success,
or
\NULL
{}
on failure. This is the equivalent of the Python
expression
\samp
{
\var
{
o1
}
<
<
\var
{
o2
}}
.
expression
\samp
{
\var
{
o1
}
<
\code
{
<
}
\var
{
o2
}}
.
\end{cfuncdesc}
\begin{cfuncdesc}
{
PyObject*
}{
PyNumber
_
Rshift
}{
PyObject *o1, PyObject *o2
}
Returns the result of right shifting
\var
{
o1
}
by
\var
{
o2
}
on success,
or
\NULL
{}
on failure. This is the equivalent of the Python
expression
\samp
{
\var
{
o1
}
>
>
\var
{
o2
}}
.
expression
\samp
{
\var
{
o1
}
>
\code
{
>
}
\var
{
o2
}}
.
\end{cfuncdesc}
...
...
@@ -1802,7 +1802,7 @@ would cause an illegal memory access).
Returns the result of left shifting
\var
{
o1
}
by
\var
{
o2
}
on success, or
\NULL
{}
on failure. The operation is done
\emph
{
in-place
}
when
\var
{
o1
}
supports it. This is the equivalent of the Python expression
\samp
{
\var
{
o1
}
<
<=
\var
{
o2
}}
.
<
\code
{
<=
}
\var
{
o2
}}
.
\end{cfuncdesc}
...
...
@@ -1810,7 +1810,7 @@ supports it. This is the equivalent of the Python expression \samp{\var{o1}
Returns the result of right shifting
\var
{
o1
}
by
\var
{
o2
}
on success, or
\NULL
{}
on failure. The operation is done
\emph
{
in-place
}
when
\var
{
o1
}
supports it. This is the equivalent of the Python expression
\samp
{
\var
{
o1
}
>
>=
\var
{
o2
}}
.
>
\code
{
>=
}
\var
{
o2
}}
.
\end{cfuncdesc}
...
...
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