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
6c9db41d
Kaydet (Commit)
6c9db41d
authored
Tem 17, 1997
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Added fileno(); added readlines(sizehint).
AMK's sed job.
üst
debf2e8a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
48 additions
and
18 deletions
+48
-18
libtypes.tex
Doc/lib/libtypes.tex
+24
-9
libtypes.tex
Doc/libtypes.tex
+24
-9
No files found.
Doc/lib/libtypes.tex
Dosyayı görüntüle @
6c9db41d
...
...
@@ -405,13 +405,13 @@ If the right argument is a dictionary (or any kind of mapping), then
the formats in the string must have a parenthesized key into that
dictionary inserted immediately after the
\code
{
\%
}
character, and
each format formats the corresponding entry from the mapping. E.g.
\begin{verbatim}
>>> count = 2
>>> language = 'Python'
>>> print '
%(language)s has %(count)03d quote types.' % vars()
Python has 002 quote types.
>>>
\end{verbatim}
\b
code
\b
egin{verbatim}
>>> count = 2
>>> language = 'Python'
>>> print '
%(language)s has %(count)03d quote types.' % vars()
Python has 002 quote types.
>>>
\end{verbatim}
\ecode
In this case no * specifiers may occur in a format (since they
require a sequential parameter list).
...
...
@@ -685,6 +685,13 @@ Files have the following methods:
\code
{
0
}
.
\end{funcdesc}
\begin{funcdesc}
{
fileno
}{}
Return the integer ``file descriptor'' that is used by the underlying
implementation to request I/O operations from the operating system.
This can be useful for other, lower level interfaces that use file
descriptors, e.g. module
\code
{
fcntl
}
or
\code
{
os.read
}
and friends.
\end{funcdesc}
\begin{funcdesc}
{
read
}{
\optional
{
size
}}
Read at most
\var
{
size
}
bytes from the file (less if the read hits
\EOF
{}
or no more data is immediately available on a pipe, tty or
...
...
@@ -714,9 +721,11 @@ Files have the following methods:
input.
\end{funcdesc}
\begin{funcdesc}
{
readlines
}{}
\begin{funcdesc}
{
readlines
}{
\optional
{
sizehint
}
}
Read until
\EOF
{}
using
\code
{
readline()
}
and return a list containing
the lines thus read.
the lines thus read. If the optional
\var
{
bufferhint
}
argument is
present, instead of reading up to
\EOF
{}
, whole lines totalling
approximately
\var
{
sizehint
}
bytes are read.
\end{funcdesc}
\begin{funcdesc}
{
seek
}{
offset
\,
whence
}
...
...
@@ -751,6 +760,12 @@ Write a list of strings to the file. There is no return value.
does not add line separators.)
\end{funcdesc}
Classes that are trying to simulate a file object should also have a
writable
\code
{
softspace
}
attribute, which should be initialized to
zero. (
\code
{
softspace
}
is used by the
\code
{
print
}
statement.) This
will be automatic for classes implemented in Python; types implemented
in C will have to provide a writable
\code
{
softspace
}
attribute.
\subsubsection
{
Internal Objects
}
(See the Python Reference Manual for these.)
...
...
Doc/libtypes.tex
Dosyayı görüntüle @
6c9db41d
...
...
@@ -405,13 +405,13 @@ If the right argument is a dictionary (or any kind of mapping), then
the formats in the string must have a parenthesized key into that
dictionary inserted immediately after the
\code
{
\%
}
character, and
each format formats the corresponding entry from the mapping. E.g.
\begin{verbatim}
>>> count = 2
>>> language = 'Python'
>>> print '
%(language)s has %(count)03d quote types.' % vars()
Python has 002 quote types.
>>>
\end{verbatim}
\b
code
\b
egin{verbatim}
>>> count = 2
>>> language = 'Python'
>>> print '
%(language)s has %(count)03d quote types.' % vars()
Python has 002 quote types.
>>>
\end{verbatim}
\ecode
In this case no * specifiers may occur in a format (since they
require a sequential parameter list).
...
...
@@ -685,6 +685,13 @@ Files have the following methods:
\code
{
0
}
.
\end{funcdesc}
\begin{funcdesc}
{
fileno
}{}
Return the integer ``file descriptor'' that is used by the underlying
implementation to request I/O operations from the operating system.
This can be useful for other, lower level interfaces that use file
descriptors, e.g. module
\code
{
fcntl
}
or
\code
{
os.read
}
and friends.
\end{funcdesc}
\begin{funcdesc}
{
read
}{
\optional
{
size
}}
Read at most
\var
{
size
}
bytes from the file (less if the read hits
\EOF
{}
or no more data is immediately available on a pipe, tty or
...
...
@@ -714,9 +721,11 @@ Files have the following methods:
input.
\end{funcdesc}
\begin{funcdesc}
{
readlines
}{}
\begin{funcdesc}
{
readlines
}{
\optional
{
sizehint
}
}
Read until
\EOF
{}
using
\code
{
readline()
}
and return a list containing
the lines thus read.
the lines thus read. If the optional
\var
{
bufferhint
}
argument is
present, instead of reading up to
\EOF
{}
, whole lines totalling
approximately
\var
{
sizehint
}
bytes are read.
\end{funcdesc}
\begin{funcdesc}
{
seek
}{
offset
\,
whence
}
...
...
@@ -751,6 +760,12 @@ Write a list of strings to the file. There is no return value.
does not add line separators.)
\end{funcdesc}
Classes that are trying to simulate a file object should also have a
writable
\code
{
softspace
}
attribute, which should be initialized to
zero. (
\code
{
softspace
}
is used by the
\code
{
print
}
statement.) This
will be automatic for classes implemented in Python; types implemented
in C will have to provide a writable
\code
{
softspace
}
attribute.
\subsubsection
{
Internal Objects
}
(See the Python Reference Manual for these.)
...
...
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