diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2013-02-28 09:36:20 -0700 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2013-02-28 09:36:20 -0700 |
commit | 2429298dd8ddf797c3c89e65eb8a9b9e8f72a299 (patch) | |
tree | d55a7d00d01432143ab1a7aadfffd33c04dff4a1 /numpy/polynomial/polynomial.py | |
parent | 0934653e151969f6912c911b5113306bd5f450f1 (diff) | |
download | numpy-2429298dd8ddf797c3c89e65eb8a9b9e8f72a299.tar.gz |
2to3: apply exec fixer results.
This changes the `exec` command to the `exec` function.
Diffstat (limited to 'numpy/polynomial/polynomial.py')
-rw-r--r-- | numpy/polynomial/polynomial.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/polynomial/polynomial.py b/numpy/polynomial/polynomial.py index 8d7251b19..e174fdd96 100644 --- a/numpy/polynomial/polynomial.py +++ b/numpy/polynomial/polynomial.py @@ -1489,4 +1489,4 @@ def polyroots(c): # polynomial class # -exec polytemplate.substitute(name='Polynomial', nick='poly', domain='[-1,1]') +exec(polytemplate.substitute(name='Polynomial', nick='poly', domain='[-1,1]')) |