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
54f2fdd1
Commit
54f2fdd1
authored
Apr 21, 1999
by
Fred Drake
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make the names of the referenced modules hyperlinks; they had not been
marked at all.
parent
02e8c0fd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
5 deletions
+6
-5
Doc/lib/libwhichdb.tex
Doc/lib/libwhichdb.tex
+6
-5
No files found.
Doc/lib/libwhichdb.tex
View file @
54f2fdd1
...
...
@@ -6,14 +6,15 @@
The single function in this module attempts to guess which of the
several simple database modules available--dbm, gdbm, or
dbhash--should be used to open a given file.
several simple database modules available--
\refmodule
{
dbm
}
,
\refmodule
{
gdbm
}
, or
\refmodule
{
dbhash
}
--should be used to open a
given file.
\begin{funcdesc}
{
whichdb
}{
filename
}
Returns one of the following values:
\code
{
None
}
if the file can't be
opened because it's unreadable or doesn't exist; the empty string
(
\code
{
""
}
) if the file's format can't be guessed; or a string
containing the required module name, such as
\code
{
"dbm"
}
or
\code
{
"gdbm"
}
.
(
\code
{
''
}
) if the file's format can't be guessed; or a string
containing the required module name, such as
\code
{
'dbm'
}
or
\code
{
'gdbm'
}
.
\end{funcdesc}
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