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
f680cc46
Commit
f680cc46
authored
Dec 17, 2002
by
Neal Norwitz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update doc for getboolean() to match code (ie, returning True/False)
Convert remaining uses of 1/0 to True/False
parent
212b43f9
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
Lib/ConfigParser.py
Lib/ConfigParser.py
+8
-8
No files found.
Lib/ConfigParser.py
View file @
f680cc46
...
...
@@ -52,7 +52,7 @@ ConfigParser -- responsible for for parsing a list of
The filename defaults to fp.name; it is only used in error
messages (if fp has no `name' attribute, the string `<???>' is used).
get(section, option, raw=
0
, vars=None)
get(section, option, raw=
False
, vars=None)
return a string value for the named option. All % interpolations are
expanded in the return values, based on the defaults passed into the
constructor and the DEFAULT section. Additional substitutions may be
...
...
@@ -67,10 +67,10 @@ ConfigParser -- responsible for for parsing a list of
getboolean(section, options)
like get(), but convert value to a boolean (currently case
insensitively defined as 0, false, no, off for
0
, and 1, true,
yes, on for
1). Returns 0 or 1
.
insensitively defined as 0, false, no, off for
False
, and 1, true,
yes, on for
True). Returns False or True
.
items(section, raw=
0
, vars=None)
items(section, raw=
False
, vars=None)
return a list of tuples with (name, value) for each option
in the section.
...
...
@@ -308,7 +308,7 @@ class RawConfigParser:
option
=
self
.
optionxform
(
option
)
return
option
in
self
.
_defaults
elif
section
not
in
self
.
_sections
:
return
0
return
False
else
:
option
=
self
.
optionxform
(
option
)
return
(
option
in
self
.
_sections
[
section
]
...
...
@@ -393,7 +393,7 @@ class RawConfigParser:
optname = None
lineno = 0
e = None # None, or an exception
while
1
:
while
True
:
line = fp.readline()
if not line:
break
...
...
@@ -459,7 +459,7 @@ class RawConfigParser:
class ConfigParser(RawConfigParser):
def get(self, section, option, raw=
0
, vars=None):
def get(self, section, option, raw=
False
, vars=None):
"""
Get
an
option
value
for
a
given
section
.
All
%
interpolations
are
expanded
in
the
return
values
,
based
on
the
...
...
@@ -490,7 +490,7 @@ class ConfigParser(RawConfigParser):
else:
return self._interpolate(section, option, value, d)
def items(self, section, raw=
0
, vars=None):
def items(self, section, raw=
False
, vars=None):
"""
Return
a
list
of
tuples
with
(
name
,
value
)
for
each
option
in
the
section
.
...
...
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