Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
2c4f554b
Kaydet (Commit)
2c4f554b
authored
Eki 10, 2000
tarafından
Fred Drake
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed a large number of small problems, mostly noted by Detlef Lannert
<lannert@lannert.rz.uni-duesseldorf.de>.
üst
e693df94
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
30 additions
and
30 deletions
+30
-30
libdis.tex
Doc/lib/libdis.tex
+9
-10
libimp.tex
Doc/lib/libimp.tex
+8
-8
libmailbox.tex
Doc/lib/libmailbox.tex
+2
-1
libmimetools.tex
Doc/lib/libmimetools.tex
+3
-3
libnew.tex
Doc/lib/libnew.tex
+2
-2
libre.tex
Doc/lib/libre.tex
+1
-1
libsite.tex
Doc/lib/libsite.tex
+1
-1
libuserdict.tex
Doc/lib/libuserdict.tex
+3
-3
libxmllib.tex
Doc/lib/libxmllib.tex
+1
-1
No files found.
Doc/lib/libdis.tex
Dosyayı görüntüle @
2c4f554b
...
...
@@ -2,8 +2,7 @@
Disassembler for Python byte code
}
\declaremodule
{
standard
}{
dis
}
\modulesynopsis
{
Disassembler for Python byte code, as stored in code
objects and
\file
{
.pyc
}
/
\file
{
.pyo
}
files.
}
\modulesynopsis
{
Disassembler for Python byte code.
}
The
\module
{
dis
}
module supports the analysis of Python byte code by
...
...
@@ -35,7 +34,7 @@ the following command can be used to get the disassembly of
19 RETURN
_
VALUE
\end{verbatim}
The
\module
{
dis
}
module defines the following functions:
The
\module
{
dis
}
module defines the following functions
and constants
:
\begin{funcdesc}
{
dis
}{
\optional
{
bytesource
}}
Disassemble the
\var
{
bytesource
}
object.
\var
{
bytesource
}
can denote
...
...
@@ -75,7 +74,7 @@ for compatibility with earlier Python releases.
\end{funcdesc}
\begin{datadesc}
{
opname
}
Sequence of
a
operation names, indexable using the byte code.
Sequence of operation names, indexable using the byte code.
\end{datadesc}
\begin{datadesc}
{
cmp
_
op
}
...
...
@@ -87,7 +86,7 @@ Sequence of byte codes that have a constant parameter.
\end{datadesc}
\begin{datadesc}
{
hasname
}
Sequence of byte codes that access a attribute by name.
Sequence of byte codes that access a
n
attribute by name.
\end{datadesc}
\begin{datadesc}
{
hasjrel
}
...
...
@@ -99,7 +98,7 @@ Sequence of byte codes that have an absolute jump target.
\end{datadesc}
\begin{datadesc}
{
haslocal
}
Sequence of byte codes that access a
a
local variable.
Sequence of byte codes that access a local variable.
\end{datadesc}
\begin{datadesc}
{
hascompare
}
...
...
@@ -196,11 +195,11 @@ Implements \code{TOS = TOS1[TOS]}.
\end{opcodedesc}
\begin{opcodedesc}
{
BINARY
_
LSHIFT
}{}
Implements
\code
{
TOS = TOS1 << TOS
}
.
Implements
\code
{
TOS = TOS1 <
\code
{}
< TOS
}
.
\end{opcodedesc}
\begin{opcodedesc}
{
BINARY
_
RSHIFT
}{}
Implements
\code
{
TOS = TOS1 >> TOS
}
.
Implements
\code
{
TOS = TOS1 >
\code
{}
> TOS
}
.
\end{opcodedesc}
\begin{opcodedesc}
{
BINARY
_
AND
}{}
...
...
@@ -245,11 +244,11 @@ Implements in-place \code{TOS = TOS1 - TOS}.
\end{opcodedesc}
\begin{opcodedesc}
{
INPLACE
_
LSHIFT
}{}
Implements in-place
\code
{
TOS = TOS1 << TOS
}
.
Implements in-place
\code
{
TOS = TOS1 <
\code
{}
< TOS
}
.
\end{opcodedesc}
\begin{opcodedesc}
{
INPLACE
_
RSHIFT
}{}
Implements in-place
\code
{
TOS = TOS1 >> TOS
}
.
Implements in-place
\code
{
TOS = TOS1 >
\code
{}
> TOS
}
.
\end{opcodedesc}
\begin{opcodedesc}
{
INPLACE
_
AND
}{}
...
...
Doc/lib/libimp.tex
Dosyayı görüntüle @
2c4f554b
...
...
@@ -70,14 +70,14 @@ Load a module that was previously found by \function{find_module()} (or by
an otherwise conducted search yielding compatible results). This
function does more than importing the module: if the module was
already imported, it is equivalent to a
\function
{
reload()
}
\bifuncindex
{
reload
}
! The
\var
{
name
}
argument indicates the full module name (including the
package name, if this is a submodule of a package). The
\var
{
file
}
a
rgument is an open file, and
\var
{
filename
}
is the corresponding
file name; these can be
\code
{
None
}
and
\code
{
''
}
, respectively, when
the module is not being loaded from a file. The
\var
{
description
}
argument is a tuple as returned by
\function
{
find
_
module()
}
describing
what kind
of module must be loaded.
\function
{
reload()
}
\bifuncindex
{
reload
}
! The
\var
{
name
}
argument
indicates the full module name (including the package name, if this is
a submodule of a package). The
\var
{
file
}
argument is an open file,
a
nd
\var
{
filename
}
is the corresponding file name; these can be
\code
{
None
}
and
\code
{
''
}
, respectively, when the module is not being
loaded from a file. The
\var
{
description
}
argument is a tuple, as
would be returned by
\function
{
get
_
suffixes()
}
, describing what kind
of module must be loaded.
If the load is successful, the return value is the module object;
otherwise, an exception (usually
\exception
{
ImportError
}
) is raised.
...
...
Doc/lib/libmailbox.tex
Dosyayı görüntüle @
2c4f554b
...
...
@@ -49,5 +49,6 @@ object (see the \refmodule{rfc822} module). Depending on the mailbox
implementation the
\var
{
fp
}
attribute of this object may be a true
file object or a class instance simulating a file object, taking care
of things like message boundaries if multiple mail messages are
contained in a single file, etc.
contained in a single file, etc. If no more messages are available,
this method returns
\code
{
None
}
.
\end{methoddesc}
Doc/lib/libmimetools.tex
Dosyayı görüntüle @
2c4f554b
...
...
@@ -61,15 +61,15 @@ open file \var{output}. The block size is currently fixed at 8192.
\end{seealso}
\subsection
{
Additional Methods of Message
objects
}
\nodename
{
mimetools.Message Methods
}
\subsection
{
Additional Methods of Message
Objects
\label
{
mimetools-message-objects
}
}
The
\class
{
Message
}
class defines the following methods in
addition to the
\class
{
rfc822.Message
}
methods:
\begin{methoddesc}
{
getplist
}{}
Return the parameter list of the
\code
{
content-type
}
header. This is
a list
i
f strings. For parameters of the form
a list
o
f strings. For parameters of the form
\samp
{
\var
{
key
}
=
\var
{
value
}}
,
\var
{
key
}
is converted to lower case but
\var
{
value
}
is not. For example, if the message contains the header
\samp
{
Content-type: text/html; spam=1; Spam=2; Spam
}
then
...
...
Doc/lib/libnew.tex
Dosyayı görüntüle @
2c4f554b
...
...
@@ -27,12 +27,12 @@ callable, and \var{instance} must be an instance object or
\code
{
None
}
.
\end{funcdesc}
\begin{funcdesc}
{
function
}{
code, globals
\optional
{
, name
\optional
{
argdefs
}}}
\begin{funcdesc}
{
function
}{
code, globals
\optional
{
, name
\optional
{
,
argdefs
}}}
Returns a (Python) function with the given code and globals. If
\var
{
name
}
is given, it must be a string or
\code
{
None
}
. If it is a
string, the function will have the given name, otherwise the function
name will be taken from
\code
{
\var
{
code
}
.co
_
name
}
. If
\var
{
argdefs
}
is given, it must be a tuple and will be used to
the
\var
{
argdefs
}
is given, it must be a tuple and will be used to
determine the default values of parameters.
\end{funcdesc}
...
...
Doc/lib/libre.tex
Dosyayı görüntüle @
2c4f554b
...
...
@@ -180,7 +180,7 @@ parentheses, and indicates the start and end of a group; the contents
of a group can be retrieved after a match has been performed, and can
be matched later in the string with the
\regexp
{
\e
\var
{
number
}}
special
sequence, described below. To match the literals
\character
{
(
}
or
\character
{
'
)
}
, use
\regexp
{
\e
(
}
or
\regexp
{
\e
)
}
, or enclose them
\character
{
)
}
, use
\regexp
{
\e
(
}
or
\regexp
{
\e
)
}
, or enclose them
inside a character class:
\regexp
{
[(] [)]
}
.
\item
[\code{(?...)}]
This is an extension notation (a
\character
{
?
}
...
...
Doc/lib/libsite.tex
Dosyayı görüntüle @
2c4f554b
...
...
@@ -22,7 +22,7 @@ the tail part, it uses the empty string (on Macintosh or Windows) or
it uses first
\file
{
lib/python
\shortversion
/site-packages
}
and then
\file
{
lib/site-python
}
(on
\UNIX
{}
). For each of the distinct
head-tail combinations, it sees if it refers to an existing directory,
and if so, adds to
\code
{
sys.path
}
, and also inspect
ed for path
and if so, adds to
\code
{
sys.path
}
, and also inspect
s the path for
configuration files.
\indexii
{
site-python
}{
directory
}
\indexii
{
site-packages
}{
directory
}
...
...
Doc/lib/libuserdict.tex
Dosyayı görüntüle @
2c4f554b
...
...
@@ -13,7 +13,7 @@ can add new behaviors to dictionaries.
The
\module
{
UserDict
}
module defines the
\class
{
UserDict
}
class:
\begin{classdesc}
{
UserDict
}{
\optional
{
initialdata
}}
Return a class instance
that simulates a dictionary. The instance's
Class
that simulates a dictionary. The instance's
contents are kept in a regular dictionary, which is accessible via the
\member
{
data
}
attribute of
\class
{
UserDict
}
instances. If
\var
{
initialdata
}
is provided,
\member
{
data
}
is initialized with its
...
...
@@ -47,7 +47,7 @@ can add new behaviors to lists.
The
\module
{
UserList
}
module defines the
\class
{
UserList
}
class:
\begin{classdesc}
{
UserList
}{
\optional
{
list
}}
Return a class instance
that simulates a list. The instance's
Class
that simulates a list. The instance's
contents are kept in a regular list, which is accessible via the
\member
{
data
}
attribute of
\class
{
UserList
}
instances. The instance's
contents are initially set to a copy of
\var
{
list
}
, defaulting to the
...
...
@@ -104,7 +104,7 @@ to real string or Unicode objects; this is especially the case for
The
\module
{
UserString
}
module defines the following classes:
\begin{classdesc}
{
UserString
}{
\optional
{
sequence
}}
Return a class instance
that simulates a string or a Unicode string
Class
that simulates a string or a Unicode string
object. The instance's content is kept in a regular string or Unicode
string object, which is accessible via the
\member
{
data
}
attribute of
\class
{
UserString
}
instances. The instance's contents are initially
...
...
Doc/lib/libxmllib.tex
Dosyayı görüntüle @
2c4f554b
...
...
@@ -274,7 +274,7 @@ the tag name was \code{'http://www.w3.org/TR/REC-html40 html'}, and
the tag
\code
{
<html:a href='http://frob.com'>
}
inside the above
mentioned element is treated as if the tag name were
\code
{
'http://www.w3.org/TR/REC-html40 a'
}
and the attribute name as
if it were
\code
{
'http://www.w3.org/TR/REC-html40
src
'
}
.
if it were
\code
{
'http://www.w3.org/TR/REC-html40
href
'
}
.
An older draft of the XML Namespaces proposal is also recognized, but
triggers a warning.
...
...
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