(self)
| 170 | return self['_'.join(part for part in parts if part)] |
| 171 | |
| 172 | def finalize(self): |
| 173 | # See PendingConfiguration in celery/app/base.py |
| 174 | # first access will read actual configuration. |
| 175 | try: |
| 176 | self['__bogus__'] |
| 177 | except KeyError: |
| 178 | pass |
| 179 | return self |
| 180 | |
| 181 | def table(self, with_defaults=False, censored=True): |
| 182 | filt = filter_hidden_settings if censored else lambda v: v |