(self)
| 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.""" |
nothing calls this directly
no outgoing calls
no test coverage detected