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
580eb260
Commit
580eb260
authored
Mar 08, 1998
by
Fred Drake
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Logical markup, a couple of index entries.
parent
2c954fa4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
34 additions
and
24 deletions
+34
-24
Doc/lib/libtypes2.tex
Doc/lib/libtypes2.tex
+17
-12
Doc/libtypes2.tex
Doc/libtypes2.tex
+17
-12
No files found.
Doc/lib/libtypes2.tex
View file @
580eb260
...
...
@@ -5,11 +5,11 @@
\setindexsubitem
{
(in module types)
}
This module defines names for all object types that are used by the
standard Python interpreter
(
but not for the types defined by various
extension modules
). It is safe to use ``
\code
{
from types import *
}
''
---
the module does not export any
other names besides the ones listed
here. New names exported by future versions of this module will
all end in
\code
{
Type
}
.
standard Python interpreter
,
but not for the types defined by various
extension modules
. It is safe to use
\samp
{
from types import *
}
---
the module does not export any
names besides the ones listed here.
New names exported by future versions of this module will all end in
\samp
{
Type
}
.
Typical use is for functions that do different things depending on
their argument types, like the following:
...
...
@@ -22,7 +22,7 @@ def delete(list, item):
else:
list.remove(item)
\end{verbatim}
%
The module defines the following names:
\begin{datadesc}
{
NoneType
}
...
...
@@ -30,7 +30,8 @@ The type of \code{None}.
\end{datadesc}
\begin{datadesc}
{
TypeType
}
The type of type objects (such as returned by
\code
{
type()
}
).
The type of type objects (such as returned by
\function
{
type()
}
\bifuncindex
{
type
}
).
\end{datadesc}
\begin{datadesc}
{
IntType
}
...
...
@@ -70,11 +71,12 @@ The type of user-defined functions and lambdas.
\end{datadesc}
\begin{datadesc}
{
LambdaType
}
An alternative name for
\code
{
FunctionType
}
.
An alternative name for
\code
{
FunctionType
}
.
\end{datadesc}
\begin{datadesc}
{
CodeType
}
The type for code objects such as returned by
\code
{
compile()
}
.
The type for code objects such as returned by
\function
{
compile()
}
\bifuncindex
{
compile
}
.
\end{datadesc}
\begin{datadesc}
{
ClassType
}
...
...
@@ -94,7 +96,8 @@ An alternative name for \code{MethodType}.
\end{datadesc}
\begin{datadesc}
{
BuiltinFunctionType
}
The type of built-in functions like
\code
{
len
}
or
\code
{
sys.exit
}
.
The type of built-in functions like
\function
{
len()
}
or
\function
{
sys.exit()
}
.
\end{datadesc}
\begin{datadesc}
{
BuiltinMethodType
}
...
...
@@ -110,11 +113,13 @@ The type of open file objects such as \code{sys.stdout}.
\end{datadesc}
\begin{datadesc}
{
XRangeType
}
The type of range objects returned by
\code
{
xrange()
}
.
The type of range objects returned by
\function
{
xrange()
}
\bifuncindex
{
xrange
}
.
\end{datadesc}
\begin{datadesc}
{
TracebackType
}
The type of traceback objects such as found in
\code
{
sys.exc
_
traceback
}
.
The type of traceback objects such as found in
\code
{
sys.exc
_
traceback
}
.
\end{datadesc}
\begin{datadesc}
{
FrameType
}
...
...
Doc/libtypes2.tex
View file @
580eb260
...
...
@@ -5,11 +5,11 @@
\setindexsubitem
{
(in module types)
}
This module defines names for all object types that are used by the
standard Python interpreter
(
but not for the types defined by various
extension modules
). It is safe to use ``
\code
{
from types import *
}
''
---
the module does not export any
other names besides the ones listed
here. New names exported by future versions of this module will
all end in
\code
{
Type
}
.
standard Python interpreter
,
but not for the types defined by various
extension modules
. It is safe to use
\samp
{
from types import *
}
---
the module does not export any
names besides the ones listed here.
New names exported by future versions of this module will all end in
\samp
{
Type
}
.
Typical use is for functions that do different things depending on
their argument types, like the following:
...
...
@@ -22,7 +22,7 @@ def delete(list, item):
else:
list.remove(item)
\end{verbatim}
%
The module defines the following names:
\begin{datadesc}
{
NoneType
}
...
...
@@ -30,7 +30,8 @@ The type of \code{None}.
\end{datadesc}
\begin{datadesc}
{
TypeType
}
The type of type objects (such as returned by
\code
{
type()
}
).
The type of type objects (such as returned by
\function
{
type()
}
\bifuncindex
{
type
}
).
\end{datadesc}
\begin{datadesc}
{
IntType
}
...
...
@@ -70,11 +71,12 @@ The type of user-defined functions and lambdas.
\end{datadesc}
\begin{datadesc}
{
LambdaType
}
An alternative name for
\code
{
FunctionType
}
.
An alternative name for
\code
{
FunctionType
}
.
\end{datadesc}
\begin{datadesc}
{
CodeType
}
The type for code objects such as returned by
\code
{
compile()
}
.
The type for code objects such as returned by
\function
{
compile()
}
\bifuncindex
{
compile
}
.
\end{datadesc}
\begin{datadesc}
{
ClassType
}
...
...
@@ -94,7 +96,8 @@ An alternative name for \code{MethodType}.
\end{datadesc}
\begin{datadesc}
{
BuiltinFunctionType
}
The type of built-in functions like
\code
{
len
}
or
\code
{
sys.exit
}
.
The type of built-in functions like
\function
{
len()
}
or
\function
{
sys.exit()
}
.
\end{datadesc}
\begin{datadesc}
{
BuiltinMethodType
}
...
...
@@ -110,11 +113,13 @@ The type of open file objects such as \code{sys.stdout}.
\end{datadesc}
\begin{datadesc}
{
XRangeType
}
The type of range objects returned by
\code
{
xrange()
}
.
The type of range objects returned by
\function
{
xrange()
}
\bifuncindex
{
xrange
}
.
\end{datadesc}
\begin{datadesc}
{
TracebackType
}
The type of traceback objects such as found in
\code
{
sys.exc
_
traceback
}
.
The type of traceback objects such as found in
\code
{
sys.exc
_
traceback
}
.
\end{datadesc}
\begin{datadesc}
{
FrameType
}
...
...
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