Note
This documentation is for a development version of IPython. There may be significant differences from the latest stable release.
Module: core.macro¶
Support for interactive macros in IPython
1 Class¶
-
class
IPython.core.macro.Macro(code)¶ Bases:
objectSimple class to store the value of macros as strings.
Macro is just a callable that executes a string of IPython input when called.
-
__init__(code)¶ store the macro value, as a single string which can be executed
-
__getstate__()¶ needed for safe pickling via %store
-