diff options
author | David Cournapeau <cournape@gmail.com> | 2009-12-03 15:57:50 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-12-03 15:57:50 +0000 |
commit | bee85b21cb5a7263d09e9ea58081c1c4cac55089 (patch) | |
tree | 4ed7fd9dbcaa89c54edc63d0064068350219a8bc /numpy/distutils/fcompiler/intel.py | |
parent | d4b61015fa3f708901d0bda026864f8e77151540 (diff) | |
download | numpy-bee85b21cb5a7263d09e9ea58081c1c4cac55089.tar.gz |
Fix print statements in fcompiler for python3.
Diffstat (limited to 'numpy/distutils/fcompiler/intel.py')
-rw-r--r-- | numpy/distutils/fcompiler/intel.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/fcompiler/intel.py b/numpy/distutils/fcompiler/intel.py index f72827332..97ef47ea7 100644 --- a/numpy/distutils/fcompiler/intel.py +++ b/numpy/distutils/fcompiler/intel.py @@ -245,4 +245,4 @@ if __name__ == '__main__': from numpy.distutils.fcompiler import new_fcompiler compiler = new_fcompiler(compiler='intel') compiler.customize() - print compiler.get_version() + print(compiler.get_version()) |