Update self from a dict, file or filename.
(self, config)
| 151 | """The 'global' configuration data for the entire CherryPy process.""" |
| 152 | |
| 153 | def update(self, config): |
| 154 | """Update self from a dict, file or filename.""" |
| 155 | _if_filename_register_autoreload(config) |
| 156 | super(Config, self).update(config) |
| 157 | |
| 158 | def _apply(self, config): |
| 159 | """Update self from a dict.""" |
no test coverage detected