|
@@ -73,12 +73,21 @@ class Config(object):
|
|
|
def set(self, section, name, value):
|
|
|
"""Set a configuration value.
|
|
|
|
|
|
+ :param section: Tuple with section name and optional subsection namee
|
|
|
:param name: Name of the configuration value, including section
|
|
|
and optional subsection
|
|
|
:param: Value of the setting
|
|
|
"""
|
|
|
raise NotImplementedError(self.set)
|
|
|
|
|
|
+ def iteritems(self, section):
|
|
|
+ """Iterate over the configuration pairs for a specific section.
|
|
|
+
|
|
|
+ :param section: Tuple with section name and optional subsection namee
|
|
|
+ :return: Iterator over (name, value) pairs
|
|
|
+ """
|
|
|
+ raise NotImplementedError(self.iteritems)
|
|
|
+
|
|
|
|
|
|
class ConfigDict(Config, DictMixin):
|
|
|
"""Git configuration stored in a dictionary."""
|
|
@@ -129,6 +138,9 @@ class ConfigDict(Config, DictMixin):
|
|
|
section = (section, )
|
|
|
self._values.setdefault(section, OrderedDict())[name] = value
|
|
|
|
|
|
+ def iteritems(self, section):
|
|
|
+ return self._values.setdefault(section, OrderedDict()).iteritems()
|
|
|
+
|
|
|
|
|
|
def _format_string(value):
|
|
|
if (value.startswith(" ") or
|