Read the defaults passed in the initializer. Note: values can be non-string.
(self, defaults)
| 1185 | name, val) |
| 1186 | |
| 1187 | def _read_defaults(self, defaults): |
| 1188 | """Read the defaults passed in the initializer. |
| 1189 | Note: values can be non-string.""" |
| 1190 | for key, value in defaults.items(): |
| 1191 | self._defaults[self.optionxform(key)] = value |
| 1192 | |
| 1193 | def _unify_values(self, section, vars): |
| 1194 | """Create a sequence of lookups with 'vars' taking priority over |
no test coverage detected