diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-10-19 22:55:23 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-10-19 22:55:23 +0000 |
commit | d4b47b7573c6d3d21cac7e97a0aee306d15b8d1b (patch) | |
tree | 0d89c81c584fd62b635c56468055682420f57ae5 /numpy/distutils/fcompiler/intel.py | |
parent | ec2c2bc190e3a8fa9aa6e956cc0ce6dd63bde445 (diff) | |
download | numpy-d4b47b7573c6d3d21cac7e97a0aee306d15b8d1b.tar.gz |
Fix missing comment characters in intel.py. Check for None in .reshape and .resize
Diffstat (limited to 'numpy/distutils/fcompiler/intel.py')
-rw-r--r-- | numpy/distutils/fcompiler/intel.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/numpy/distutils/fcompiler/intel.py b/numpy/distutils/fcompiler/intel.py index 03ff1adbf..57e83be9f 100644 --- a/numpy/distutils/fcompiler/intel.py +++ b/numpy/distutils/fcompiler/intel.py @@ -78,10 +78,10 @@ class IntelItaniumFCompiler(IntelFCompiler): ' for (the Itanium\(TM\)|Itanium\(R\))-based applications(,|)'\ '\s+Version (?P<version>[^\s*]*)' -Intel(R) Fortran Itanium(R) Compiler for Itanium(R)-based applications -Version 9.1 Build 20060928 Package ID: l_fc_c_9.1.039 -Copyright (C) 1985-2006 Intel Corporation. All rights reserved. -30 DAY EVALUATION LICENSE +#Intel(R) Fortran Itanium(R) Compiler for Itanium(R)-based applications +#Version 9.1 Build 20060928 Package ID: l_fc_c_9.1.039 +#Copyright (C) 1985-2006 Intel Corporation. All rights reserved. +#30 DAY EVALUATION LICENSE for fc_exe in map(find_executable,['ifort','efort','efc']): if os.path.isfile(fc_exe): |