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
d85f0594
Commit
d85f0594
authored
May 09, 2000
by
Fred Drake
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
read() method: clarify that strings are accepted and interpreted
reasonably. readfp() method: added documentation.
parent
57af072e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletion
+9
-1
Doc/lib/libcfgparser.tex
Doc/lib/libcfgparser.tex
+9
-1
No files found.
Doc/lib/libcfgparser.tex
View file @
d85f0594
...
...
@@ -114,7 +114,15 @@ Returns a list of options available in the specified \var{section}.
\end{methoddesc}
\begin{methoddesc}
{
read
}{
filenames
}
Read and parse a list of filenames.
Read and parse a list of filenames. If
\var
{
filenames
}
is a string or
Unicode string, it is treated as a single filename.
\end{methoddesc}
\begin{methoddesc}
{
readfp
}{
fp
\optional
{
, filename
}}
Read and parse configuration data from the file or file-like object in
\var
{
fp
}
(only the
\method
{
readline()
}
method is used). If
\var
{
filename
}
is omitted and
\var
{
fp
}
has a
\member
{
name
}
attribute,
that is used for
\var
{
filename
}
; the default is
\samp
{
<???>
}
.
\end{methoddesc}
\begin{methoddesc}
{
get
}{
section, option
\optional
{
, raw
\optional
{
, vars
}}}
...
...
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