diff --git a/IPython/macro.py b/IPython/macro.py index 9349460..a54c07a 100644 --- a/IPython/macro.py +++ b/IPython/macro.py @@ -21,3 +21,6 @@ class Macro: def __str__(self): return self.value + + def __repr__(self): + return 'IPython.macro.Macro(%s)' % repr(self.value) \ No newline at end of file