From 279d3b801d298703ccc18a9ec550da66bb0bfe91 2013-07-06 12:19:33
From: Matthias Bussonnier <bussonniermatthias@gmail.com>
Date: 2013-07-06 12:19:33
Subject: [PATCH] Merge pull request #3556 from minrk/no_margv

remove mention of nonexistent `_margv` in macro
---

diff --git a/IPython/core/macro.py b/IPython/core/macro.py
index ca46266..8d56799 100644
--- a/IPython/core/macro.py
+++ b/IPython/core/macro.py
@@ -19,8 +19,6 @@ class Macro(object):
 
     Macro is just a callable that executes a string of IPython
     input when called.
-    
-    Args to macro are available in _margv list if you need them.
     """
 
     def __init__(self,code):