Return a dict of currently available magic functions. The return dict has the keys 'line' and 'cell', corresponding to the two types of magics we support. Each value is a list of names.
(self)
| 343 | return self._auto_status[self.auto_magic] |
| 344 | |
| 345 | def lsmagic(self): |
| 346 | """Return a dict of currently available magic functions. |
| 347 | |
| 348 | The return dict has the keys 'line' and 'cell', corresponding to the |
| 349 | two types of magics we support. Each value is a list of names. |
| 350 | """ |
| 351 | return self.magics |
| 352 | |
| 353 | def lsmagic_docs(self, brief=False, missing=''): |
| 354 | """Return dict of documentation of magic functions. |
no outgoing calls
no test coverage detected