diff options
author | David Cournapeau <cournape@gmail.com> | 2009-12-03 15:59:19 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-12-03 15:59:19 +0000 |
commit | 08ec7978368aa9d5bbaf52d8dde582e2af250eb1 (patch) | |
tree | 0ff0d519b526b8aa1c182013e1ec8e075edd119e /numpy/f2py | |
parent | ffce47a522f597017bf12f53500c886df8196c33 (diff) | |
download | numpy-08ec7978368aa9d5bbaf52d8dde582e2af250eb1.tar.gz |
Make f2py setup.py runnable under python3.
Diffstat (limited to 'numpy/f2py')
-rw-r--r--[-rwxr-xr-x] | numpy/f2py/setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/f2py/setup.py b/numpy/f2py/setup.py index cde1545a1..de53569a2 100755..100644 --- a/numpy/f2py/setup.py +++ b/numpy/f2py/setup.py @@ -88,7 +88,7 @@ if __name__ == "__main__": config = configuration(top_path='') version = config.get_version() - print 'F2PY Version',version + print('F2PY Version',version) config = config.todict() if sys.version[:3]>='2.3': |