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
cf4cbff5
Commit
cf4cbff5
authored
Feb 18, 1998
by
Fred Drake
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added \label{} for logical addressing.
Logical markup.
parent
55d7eba4
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
30 additions
and
24 deletions
+30
-24
Doc/lib/libanydbm.tex
Doc/lib/libanydbm.tex
+12
-10
Doc/lib/liberrno.tex
Doc/lib/liberrno.tex
+3
-2
Doc/libanydbm.tex
Doc/libanydbm.tex
+12
-10
Doc/liberrno.tex
Doc/liberrno.tex
+3
-2
No files found.
Doc/lib/libanydbm.tex
View file @
cf4cbff5
\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
View file @
cf4cbff5
\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
View file @
cf4cbff5
\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
View file @
cf4cbff5
\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