[Python-checkins] CVS: distutils/distutils extension.py,1.1,1.2

Greg Ward python-dev@python.org
Fri, 23 Jun 2000 17:18:26 -0700


Update of /cvsroot/python/distutils/distutils
In directory slayer.i.sourceforge.net:/tmp/cvs-serv577

Modified Files:
	extension.py 
Log Message:
Revised docstring so 'sources' isn't necessarily all C/C++ files (to
accomodate SWIG interface files, resource files, etc.).

Index: extension.py
===================================================================
RCS file: /cvsroot/python/distutils/distutils/extension.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** extension.py	2000/05/31 01:05:35	1.1
--- extension.py	2000/06/24 00:18:24	1.2
***************
*** 32,38 ****
          *not* a filename or pathname, but Python dotted name
        sources : [string]
!         list of C/C++ source filenames, relative to the distribution
!         root (where the setup script lives), in Unix form
!         (slash-separated) for portability
        include_dirs : [string]
          list of directories to search for C/C++ header files (in Unix
--- 32,40 ----
          *not* a filename or pathname, but Python dotted name
        sources : [string]
!         list of source filenames, relative to the distribution root
!         (where the setup script lives), in Unix form (slash-separated)
!         for portability.  Source files may be C, C++, SWIG (.i),
!         platform-specific resource files, or whatever else is recognized
!         by the "build_ext" command as source for a Python extension.
        include_dirs : [string]
          list of directories to search for C/C++ header files (in Unix