Home | History | Annotate | Download | only in python2.7

Lines Matching full:_sections

235         self._sections = self._dict()
250 # self._sections will never have [DEFAULT] in it
251 return self._sections.keys()
263 if section in self._sections:
265 self._sections[section] = self._dict()
272 return section in self._sections
277 opts = self._sections[section].copy()
328 if section not in self._sections:
335 elif opt in self._sections[section]:
336 return self._sections[section][opt]
344 d2 = self._sections[section]
381 elif section not in self._sections:
385 return (option in self._sections[section]
394 sectdict = self._sections[section]
406 for section in self._sections:
408 for (key, value) in self._sections[section].items():
422 sectdict = self._sections[section]
433 existed = section in self._sections
435 del self._sections[section]
500 if sectname in self._sections:
501 cursect = self._sections[sectname]
507 self._sections[sectname] = cursect
550 all_sections.extend(self._sections.values())
604 sectiondict = self._sections[section]
639 d.update(self._sections[section])