[Numpy-svn] r3785 - trunk/numpy/distutils/command

numpy-svn at scipy.org numpy-svn at scipy.org
Fri May 18 17:33:13 EDT 2007


Author: pearu
Date: 2007-05-18 16:33:07 -0500 (Fri, 18 May 2007)
New Revision: 3785

Modified:
   trunk/numpy/distutils/command/config_compiler.py
Log:
Add descriptions to config_fc and config_cc commands.

Modified: trunk/numpy/distutils/command/config_compiler.py
===================================================================
--- trunk/numpy/distutils/command/config_compiler.py	2007-05-18 21:25:23 UTC (rev 3784)
+++ trunk/numpy/distutils/command/config_compiler.py	2007-05-18 21:33:07 UTC (rev 3785)
@@ -2,7 +2,6 @@
 from distutils.core import Command
 from numpy.distutils import log
 
-#XXX: Implement confic_cc for enhancing C/C++ compiler options.
 #XXX: Linker flags
 
 def show_fortran_compilers(_cache=[]):
@@ -22,6 +21,8 @@
     config_fc command is used by the FCompiler.customize() method.
     """
 
+    description = "specify Fortran 77/Fortran 90 compiler information"
+
     user_options = [
         ('fcompiler=',None,"specify Fortran compiler type"),
         ('f77exec=', None, "specify F77 compiler command"),
@@ -86,6 +87,8 @@
     to C/C++ compilers.
     """
 
+    description = "specify C/C++ compiler information"
+
     user_options = [
         ('compiler=',None,"specify C/C++ compiler type"),
         ]




More information about the Numpy-svn mailing list