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
ddf03bf8
Kaydet (Commit)
ddf03bf8
authored
Şub 18, 1998
tarafından
Fred Drake
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Added \label{} for logical addressing.
Logical markup.
üst
9acafa8b
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
30 additions
and
24 deletions
+30
-24
libanydbm.tex
Doc/lib/libanydbm.tex
+12
-10
liberrno.tex
Doc/lib/liberrno.tex
+3
-2
libanydbm.tex
Doc/libanydbm.tex
+12
-10
liberrno.tex
Doc/liberrno.tex
+3
-2
No files found.
Doc/lib/libanydbm.tex
Dosyayı görüntüle @
ddf03bf8
\section
{
Standard Modules
\sectcode
{
anydbm
}
and
\sectcode
{
dumbdbm
}}
\label
{
module-anydbm
}
\label
{
module-dumbdbm
}
\stmodindex
{
anydbm
}
\stmodindex
{
dumbdbm
}
\
cod
e
{
anydbm
}
is a generic interface to variants of the DBM
\
modul
e
{
anydbm
}
is a generic interface to variants of the DBM
database--DBM, GDBM, or dbhash. If none of these modules is
installed, the slow-but-simple implementation in module
\
cod
e
{
dumbdbm
}
installed, the slow-but-simple implementation in module
\
modul
e
{
dumbdbm
}
will be used. Both modules provide the same interface:
% not the best solution, but it's what you get for documenting both
...
...
@@ -12,7 +14,7 @@ will be used. Both modules provide the same interface:
\setindexsubitem
{
(in modules anydbm, dumbdbm)
}
\begin{funcdesc}
{
open
}{
filename
\optional
{
\,
flag
\,
mode
}}
Open the database file
\var
{
filename
}
and return a corresponding object.
Open the database file
\var
{
filename
}
and return a corresponding object.
The optional
\var
{
flag
}
argument can be
\code
{
'r'
}
to open an existing database for reading only,
\code
{
'w'
}
to open an existing database for reading and writing,
...
...
@@ -25,13 +27,13 @@ only when the database has to be created. It defaults to octal
\code
{
0666
}
(and will be modified by the prevailing umask).
\end{funcdesc}
The object returned by
\
code
{
open()
}
supports most of the same
The object returned by
\
function
{
open()
}
supports most of the same
functionality as dictionaries; keys and their corresponding values can
be stored, retrieved, and deleted, and the
\
code
{
has
_
key()
}
and
\
code
{
keys()
}
methods are available. Keys and values must always be
be stored, retrieved, and deleted, and the
\
method
{
has
_
key()
}
and
\
method
{
keys()
}
methods are available. Keys and values must always be
strings.
Both modules also export the exception
\
code
{
error
}
, which is raised
for various problems. The
\code
{
anydbm.error
}
exception is simply a
different name for the
\code
{
error
}
exception of the underlying
implementation module used.
Both modules also export the exception
\
exception
{
error
}
, which is
raised for various problems. The
\exception
{
anydbm.error
}
exception
is simply a different name for the
\exception
{
error
}
exception of the
underlying
implementation module used.
Doc/lib/liberrno.tex
Dosyayı görüntüle @
ddf03bf8
\section
{
Standard Module
\sectcode
{
errno
}}
\label
{
module-errno
}
\stmodindex
{
errno
}
\setindexsubitem
{
(in module errno)
}
...
...
@@ -12,8 +13,8 @@ module.
The module also defines the dictionary variable
\code
{
errorcode
}
which
maps numeric error codes back to their symbol names, so that e.g.
\
code
{
errno.errorcode[errno.EPERM] == 'EPERM'
}
. To translate a
numeric error code to an error message, use
\
code
{
os.strerror()
}
.
\
samp
{
errno.errorcode[errno.EPERM] == 'EPERM'
}
. To translate a
numeric error code to an error message, use
\
function
{
os.strerror()
}
.
Symbols available can include:
\begin{datadesc}
{
EPERM
}
Operation not permitted
\end{datadesc}
...
...
Doc/libanydbm.tex
Dosyayı görüntüle @
ddf03bf8
\section
{
Standard Modules
\sectcode
{
anydbm
}
and
\sectcode
{
dumbdbm
}}
\label
{
module-anydbm
}
\label
{
module-dumbdbm
}
\stmodindex
{
anydbm
}
\stmodindex
{
dumbdbm
}
\
cod
e
{
anydbm
}
is a generic interface to variants of the DBM
\
modul
e
{
anydbm
}
is a generic interface to variants of the DBM
database--DBM, GDBM, or dbhash. If none of these modules is
installed, the slow-but-simple implementation in module
\
cod
e
{
dumbdbm
}
installed, the slow-but-simple implementation in module
\
modul
e
{
dumbdbm
}
will be used. Both modules provide the same interface:
% not the best solution, but it's what you get for documenting both
...
...
@@ -12,7 +14,7 @@ will be used. Both modules provide the same interface:
\setindexsubitem
{
(in modules anydbm, dumbdbm)
}
\begin{funcdesc}
{
open
}{
filename
\optional
{
\,
flag
\,
mode
}}
Open the database file
\var
{
filename
}
and return a corresponding object.
Open the database file
\var
{
filename
}
and return a corresponding object.
The optional
\var
{
flag
}
argument can be
\code
{
'r'
}
to open an existing database for reading only,
\code
{
'w'
}
to open an existing database for reading and writing,
...
...
@@ -25,13 +27,13 @@ only when the database has to be created. It defaults to octal
\code
{
0666
}
(and will be modified by the prevailing umask).
\end{funcdesc}
The object returned by
\
code
{
open()
}
supports most of the same
The object returned by
\
function
{
open()
}
supports most of the same
functionality as dictionaries; keys and their corresponding values can
be stored, retrieved, and deleted, and the
\
code
{
has
_
key()
}
and
\
code
{
keys()
}
methods are available. Keys and values must always be
be stored, retrieved, and deleted, and the
\
method
{
has
_
key()
}
and
\
method
{
keys()
}
methods are available. Keys and values must always be
strings.
Both modules also export the exception
\
code
{
error
}
, which is raised
for various problems. The
\code
{
anydbm.error
}
exception is simply a
different name for the
\code
{
error
}
exception of the underlying
implementation module used.
Both modules also export the exception
\
exception
{
error
}
, which is
raised for various problems. The
\exception
{
anydbm.error
}
exception
is simply a different name for the
\exception
{
error
}
exception of the
underlying
implementation module used.
Doc/liberrno.tex
Dosyayı görüntüle @
ddf03bf8
\section
{
Standard Module
\sectcode
{
errno
}}
\label
{
module-errno
}
\stmodindex
{
errno
}
\setindexsubitem
{
(in module errno)
}
...
...
@@ -12,8 +13,8 @@ module.
The module also defines the dictionary variable
\code
{
errorcode
}
which
maps numeric error codes back to their symbol names, so that e.g.
\
code
{
errno.errorcode[errno.EPERM] == 'EPERM'
}
. To translate a
numeric error code to an error message, use
\
code
{
os.strerror()
}
.
\
samp
{
errno.errorcode[errno.EPERM] == 'EPERM'
}
. To translate a
numeric error code to an error message, use
\
function
{
os.strerror()
}
.
Symbols available can include:
\begin{datadesc}
{
EPERM
}
Operation not permitted
\end{datadesc}
...
...
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