[Python-checkins] python/nondist/sandbox/distutilsref distref.tex,1.1,1.2

anthonybaxter@users.sourceforge.net anthonybaxter@users.sourceforge.net
Tue, 13 May 2003 01:15:22 -0700


Update of /cvsroot/python/python/nondist/sandbox/distutilsref
In directory sc8-pr-cvs1:/tmp/cvs-serv28005

Modified Files:
	distref.tex 
Log Message:
fixed up basic formatting errors (thanks texcheck.py!) 
Still whinges about forward slashes - no idea why, but lots of other
entries in the library docs use them, so... *shrug*


Index: distref.tex
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/distutilsref/distref.tex,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** distref.tex	13 May 2003 03:07:56 -0000	1.1
--- distref.tex	13 May 2003 08:15:19 -0000	1.2
***************
*** 97,101 ****
  \class{Distribution})}
  \lineii{run}{Stop after all commands have been run (the same as 
! if \function{setup()} had been called in the usual way. This is the default 
  value.}
  \end{tableii}
--- 97,101 ----
  \class{Distribution})}
  \lineii{run}{Stop after all commands have been run (the same as 
! if \function{setup()} had been called in the usual way). This is the default 
  value.}
  \end{tableii}
***************
*** 153,157 ****
  Factory function to generate an instance of some CCompiler subclass
  for the supplied platform/compiler combination. \var{plat} defaults
! to \var{os.name' (eg. \var{posix}, \var{nt}), and \var{compiler} 
  defaults to the default compiler for that platform. Currently only \var{posix} 
  and \var{nt} are supported, and the default compilers are "traditional
--- 153,157 ----
  Factory function to generate an instance of some CCompiler subclass
  for the supplied platform/compiler combination. \var{plat} defaults
! to \var{os.name} (eg. \var{posix}, \var{nt}), and \var{compiler} 
  defaults to the default compiler for that platform. Currently only \var{posix} 
  and \var{nt} are supported, and the default compilers are "traditional
***************
*** 256,260 ****
  \end{methoddesc}
  
! \begin{methoddesc}{define_macro}{name\option{, value=None}}
  Define a preprocessor macro for all compilations driven by this
  compiler object.  The optional parameter \var{value} should be a
--- 256,260 ----
  \end{methoddesc}
  
! \begin{methoddesc}{define_macro}{name\optional{, value=None}}
  Define a preprocessor macro for all compilations driven by this
  compiler object.  The optional parameter \var{value} should be a
***************
*** 352,356 ****
  \begin{methoddesc}{compile}{sources\optional{, output_dir=None, macros=None, include_dirs=None, debug=0, extra_preargs=None, extra_postargs=None, depends=None}}
  Compile one or more source files. Generates object files (e.g. 
! transforms a .c file to a .o file.
  
  \var{sources} must be a list of filenames, most likely C/C++
--- 352,356 ----
  \begin{methoddesc}{compile}{sources\optional{, output_dir=None, macros=None, include_dirs=None, debug=0, extra_preargs=None, extra_postargs=None, depends=None}}
  Compile one or more source files. Generates object files (e.g. 
! transforms a .c file to a .o file.)
  
  \var{sources} must be a list of filenames, most likely C/C++
***************
*** 406,410 ****
  as \var{objects}, the extra object files supplied to
  \method{add_link_object()} and/or \method{set_link_objects()}, the libraries
! supplied to \method{add_library()' and/or \method{set_libraries()}, and the
  libraries supplied as \var{libraries} (if any).
  
--- 406,410 ----
  as \var{objects}, the extra object files supplied to
  \method{add_link_object()} and/or \method{set_link_objects()}, the libraries
! supplied to \method{add_library()} and/or \method{set_libraries()}, and the
  libraries supplied as \var{libraries} (if any).
  
***************
*** 431,435 ****
  The "bunch of stuff" consists of the list of object files supplied
  as \var{objects}.  \var{output_filename} should be a filename.  If
! \var{output_dir} is supplied, \var{output_filename' is relative to it
  (i.e. \var{output_filename} can provide directory components if
  needed).
--- 431,435 ----
  The "bunch of stuff" consists of the list of object files supplied
  as \var{objects}.  \var{output_filename} should be a filename.  If
! \var{output_dir} is supplied, \var{output_filename} is relative to it
  (i.e. \var{output_filename} can provide directory components if
  needed).