needed for safe pickling via %store
(self)
| 42 | return 'IPython.macro.Macro(%s)' % repr(self.value) |
| 43 | |
| 44 | def __getstate__(self): |
| 45 | """ needed for safe pickling via %store """ |
| 46 | return {'value': self.value} |
| 47 | |
| 48 | def __add__(self, other): |
| 49 | if isinstance(other, Macro): |
nothing calls this directly
no outgoing calls
no test coverage detected