(self, *args, **kwargs)
| 175 | """Magics related to code management (loading, saving, editing, ...).""" |
| 176 | |
| 177 | def __init__(self, *args, **kwargs): |
| 178 | self._knowntemps = set() |
| 179 | super(CodeMagics, self).__init__(*args, **kwargs) |
| 180 | |
| 181 | @line_magic |
| 182 | def save(self, parameter_s=''): |
nothing calls this directly
no outgoing calls
no test coverage detected