(self, shell)
| 38 | @magics_class |
| 39 | class TerminalMagics(Magics): |
| 40 | def __init__(self, shell): |
| 41 | super(TerminalMagics, self).__init__(shell) |
| 42 | |
| 43 | def store_or_execute(self, block, name): |
| 44 | """ Execute a block, or store it in a variable, per the user's request. |
nothing calls this directly
no outgoing calls
no test coverage detected