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
5055545f
Kaydet (Commit)
5055545f
authored
Eyl 25, 2001
tarafından
Fred Drake
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Clarified some points about the interface to the mmap() function.
This closes SF bug #448918.
üst
c0765c23
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
10 deletions
+11
-10
libmmap.tex
Doc/lib/libmmap.tex
+11
-10
No files found.
Doc/lib/libmmap.tex
Dosyayı görüntüle @
5055545f
...
...
@@ -14,17 +14,20 @@ change a substring by assigning to a slice:
data starting at the current file position, and
\method
{
seek()
}
through the file to different positions.
A memory-mapped file is created by the following function, which is
different on Unix and on Windows.
A memory-mapped file is created by the
\function
{
mmap()
}
function,
which is different on
\UNIX
{}
and on Windows. In either case you must
provide a file descriptor for a file opened for update.
If you wish to map an existing Python file object, use its
\method
{
fileno()
}
method to obtain the correct value for the
\var
{
fileno
}
parameter. Otherwise, you can open the file using the
\function
{
os.open()
}
function, which returns a file descriptor
directly (the file still needs to be closed when done).
\begin{funcdesc}
{
mmap
}{
fileno, length
\optional
{
, tagname
}}
\strong
{
(Windows version)
}
Maps
\var
{
length
}
bytes from the file
specified by the file handle
\var
{
fileno
}
, and returns a mmap object.
If
\var
{
length
}
is
\code
{
0
}
, the maximum length of the map will be the
current size of the file when
\function
{
mmap()
}
is called.
If you wish to map an existing Python file object, use its
\method
{
fileno()
}
method to obtain the correct value for the
\var
{
fileno
}
parameter. The file must be opened for update.
\var
{
tagname
}
, if specified and not
\code
{
None
}
, is a string giving a
tag name for the mapping. Windows allows you to have many different
...
...
@@ -35,12 +38,9 @@ created without a name. Avoiding the use of the tag parameter will
assist in keeping your code portable between
\UNIX
{}
and Windows.
\end{funcdesc}
\begin{funcdesc}
{
mmap
}{
fileno,
size
\optional
{
, flags, prot
}}
\begin{funcdesc}
{
mmap
}{
fileno,
length
\optional
{
, flags
\optional
{
, prot
}
}}
\strong
{
(
\UNIX
{}
version)
}
Maps
\var
{
length
}
bytes from the file
specified by the file handle
\var
{
fileno
}
, and returns a mmap object.
If you wish to map an existing Python file object, use its
\method
{
fileno()
}
method to obtain the correct value for the
\var
{
fileno
}
parameter. The file must be opened for update.
specified by the file descriptor
\var
{
fileno
}
, and returns a mmap object.
\var
{
flags
}
specifies the nature of the mapping.
\constant
{
MAP
_
PRIVATE
}
creates a private copy-on-write mapping, so
...
...
@@ -55,6 +55,7 @@ to specify that the pages may be read or written.
\var
{
prot
}
defaults to
\constant
{
PROT
_
READ | PROT
_
WRITE
}
.
\end{funcdesc}
Memory-mapped file objects support the following methods:
...
...
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