OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:cfgparser
(Results
1 - 2
of
2
) sorted by null
/external/autotest/client/common_lib/
software_manager.py
376
self.
cfgparser
= ConfigParser.ConfigParser()
377
self.
cfgparser
.read(self.repo_file_path)
432
for section in self.
cfgparser
.sections():
433
for option, value in self.
cfgparser
.items(section):
440
if not self.
cfgparser
.has_section(section_name):
442
self.
cfgparser
.add_section(section_name)
443
self.
cfgparser
.set(section_name, 'name',
445
self.
cfgparser
.set(section_name, 'url', url)
446
self.
cfgparser
.set(section_name, 'enabled', 1)
447
self.
cfgparser
.set(section_name, 'gpgcheck', 0
[
all
...]
global_config.py
119
cfgparser
= ConfigParser.ConfigParser()
120
cfgparser
.add_section(section)
122
cfgparser
.set(section, option, value)
123
return
cfgparser
Completed in 156 milliseconds