MCPcopy Create free account
hub / github.com/ipython/ipython / lsmagic

Method lsmagic

IPython/core/magic.py:345–351  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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.

Callers 2

default_optionMethod · 0.45
magic_matchesMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected