diff options
author | Oleksandr Pavlyk <oleksandr.pavlyk@intel.com> | 2016-08-26 14:24:19 -0500 |
---|---|---|
committer | Oleksandr Pavlyk <oleksandr.pavlyk@intel.com> | 2016-08-26 14:24:19 -0500 |
commit | d791236019f9498479172495bc658da8adc9556c (patch) | |
tree | a90da3245e761962da761dfb2bca7df4d86aa946 /numpy | |
parent | 6d04b385a6ed2c4a39904f762450b0b07486ae8e (diff) | |
download | numpy-d791236019f9498479172495bc658da8adc9556c.tar.gz |
DOC: Corrected allowed keywords in add_(installed_)library
Docstring listed extra_f77_compiler_args and extra_f90_compiler_args
as allowed keywords, but per command/build_clib.py, lines 193-194
the recognized keywords are in fact extra_f77_compile_args and
extra_f90_compile_args.
The keyword extra_compiler_args, although non-confirmant both for
fortran keywords and to the keywords of add_extension, is consistent
with the implementation (see line 200 of build_clib.py).
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/distutils/misc_util.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/numpy/distutils/misc_util.py b/numpy/distutils/misc_util.py index 958de1a18..2cd185332 100644 --- a/numpy/distutils/misc_util.py +++ b/numpy/distutils/misc_util.py @@ -1512,8 +1512,8 @@ class Configuration(object): * macros * include_dirs * extra_compiler_args - * extra_f77_compiler_args - * extra_f90_compiler_args + * extra_f77_compile_args + * extra_f90_compile_args * f2py_options * language @@ -1565,8 +1565,8 @@ class Configuration(object): * macros * include_dirs * extra_compiler_args - * extra_f77_compiler_args - * extra_f90_compiler_args + * extra_f77_compile_args + * extra_f90_compile_args * f2py_options * language |