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

Method aliases

IPython/core/alias.py:212–214  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

210
211 @property
212 def aliases(self):
213 return [(n, func.cmd) for (n, func) in self.linemagics.items()
214 if isinstance(func, Alias)]
215
216 def soft_define_alias(self, name, cmd):
217 """Define an alias, but don't raise on an AliasError."""

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected