From 2429298dd8ddf797c3c89e65eb8a9b9e8f72a299 Mon Sep 17 00:00:00 2001 From: Charles Harris Date: Thu, 28 Feb 2013 09:36:20 -0700 Subject: 2to3: apply exec fixer results. This changes the `exec` command to the `exec` function. --- numpy/lib/function_base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'numpy/lib/function_base.py') diff --git a/numpy/lib/function_base.py b/numpy/lib/function_base.py index 02dd0ceaf..48fc0d898 100644 --- a/numpy/lib/function_base.py +++ b/numpy/lib/function_base.py @@ -3239,7 +3239,7 @@ def add_newdoc(place, obj, doc): """ try: new = {} - exec 'from %s import %s' % (place, obj) in new + exec('from %s import %s' % (place, obj), new) if isinstance(doc, str): add_docstring(new[obj], doc.strip()) elif isinstance(doc, tuple): -- cgit v1.2.1