(self, shell)
| 26 | """Magics that control various autoX behaviors.""" |
| 27 | |
| 28 | def __init__(self, shell): |
| 29 | super(AutoMagics, self).__init__(shell) |
| 30 | # namespace for holding state we may need |
| 31 | self._magic_state = Bunch() |
| 32 | |
| 33 | @line_magic |
| 34 | def automagic(self, parameter_s=''): |