[Python-checkins] CVS: python/dist/src/Doc/lib libcompileall.tex,1.2,1.3

Martin v. L?wis loewis@users.sourceforge.net
Mon, 18 Mar 2002 04:44:10 -0800


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory usw-pr-cvs1:/tmp/cvs-serv8132/Doc/lib

Modified Files:
	libcompileall.tex 
Log Message:
Patch #495598: add an -q (quiet) option to pycompile.


Index: libcompileall.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libcompileall.tex,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** libcompileall.tex	3 Apr 2000 20:13:53 -0000	1.2
--- libcompileall.tex	18 Mar 2002 12:44:08 -0000	1.3
***************
*** 18,22 ****
  
  \begin{funcdesc}{compile_dir}{dir\optional{, maxlevels\optional{,
!                               ddir\optional{, force}}}}
    Recursively descend the directory tree named by \var{dir}, compiling
    all \file{.py} files along the way.  The \var{maxlevels} parameter
--- 18,23 ----
  
  \begin{funcdesc}{compile_dir}{dir\optional{, maxlevels\optional{,
!                               ddir\optional{, force\optional{, 
!                               rx\optional{, quiet}}}}}}
    Recursively descend the directory tree named by \var{dir}, compiling
    all \file{.py} files along the way.  The \var{maxlevels} parameter
***************
*** 25,29 ****
    which the filenames used in error messages will be generated.  If
    \var{force} is true, modules are re-compiled even if the timestamps
!   are up to date.
  \end{funcdesc}
  
--- 26,37 ----
    which the filenames used in error messages will be generated.  If
    \var{force} is true, modules are re-compiled even if the timestamps
!   are up to date. 
! 
!   If \var{rx} is given, it specifies a regular expression of file
!   names to exclude from the search; that expression is searched for in
!   the full path.
! 
!   If \var{quiet} is true, nothing is printed to the standard output
!   in normal operation.
  \end{funcdesc}