(self, key, value)
| 441 | """Optional callback called at init.""" |
| 442 | |
| 443 | def __autoset(self, key, value): |
| 444 | if value is not None: |
| 445 | self._preconf[key] = value |
| 446 | self._preconf_set_by_auto.add(key) |
| 447 | |
| 448 | def set_current(self): |
| 449 | """Make this the current app for this thread.""" |