(self, with_defaults=False, censored=True)
| 179 | return self |
| 180 | |
| 181 | def table(self, with_defaults=False, censored=True): |
| 182 | filt = filter_hidden_settings if censored else lambda v: v |
| 183 | dict_members = dir(dict) |
| 184 | self.finalize() |
| 185 | settings = self if with_defaults else self.without_defaults() |
| 186 | return filt({ |
| 187 | k: v for k, v in settings.items() |
| 188 | if not k.startswith('_') and k not in dict_members |
| 189 | }) |
| 190 | |
| 191 | def humanize(self, with_defaults=False, censored=True): |
| 192 | """Return a human readable text showing configuration changes.""" |