Return descriptive string with automagic status.
(self)
| 414 | self.registry[user_magics.__class__.__name__] = user_magics |
| 415 | |
| 416 | def auto_status(self) -> str: |
| 417 | """Return descriptive string with automagic status.""" |
| 418 | return self._auto_status[self.auto_magic] |
| 419 | |
| 420 | def lsmagic(self) -> dict[str, dict[str, Any]]: |
| 421 | """Return a dict of currently available magic functions. |