Has the option changed from the default?
(self, option)
| 279 | return self._options[option].default |
| 280 | |
| 281 | def has_changed(self, option): |
| 282 | """ |
| 283 | Has the option changed from the default? |
| 284 | """ |
| 285 | return self._options[option].has_changed() |
| 286 | |
| 287 | def merge(self, opts): |
| 288 | """ |
nothing calls this directly
no test coverage detected