diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2018-12-17 15:51:38 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-17 15:51:38 -0800 |
commit | 982f12b9c6ed22079a3f358afe35ab75e3521490 (patch) | |
tree | 7171d3a122e7f1fe2d3fb5a3dab08f21d66ee971 | |
parent | ab40f505edf3f038b6c6d1c66504239013cbd4ed (diff) | |
parent | 1e296433a7987834f914b553741a91e873b5387f (diff) | |
download | numpy-982f12b9c6ed22079a3f358afe35ab75e3521490.tar.gz |
Merge pull request #12577 from juliantaylor/fix-f2py
BUG: fix f2py pep338 execution method
-rw-r--r-- | numpy/f2py/__main__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/f2py/__main__.py b/numpy/f2py/__main__.py index 6eff41099..708f7f362 100644 --- a/numpy/f2py/__main__.py +++ b/numpy/f2py/__main__.py @@ -1,6 +1,6 @@ # See http://cens.ioc.ee/projects/f2py2e/ from __future__ import division, print_function -from f2py2e import main +from numpy.f2py.f2py2e import main main() |