[Python-checkins] python/dist/src/Lib/distutils ccompiler.py,1.48,1.49

montanaro@users.sourceforge.net montanaro@users.sourceforge.net
Tue, 01 Oct 2002 10:40:02 -0700


Update of /cvsroot/python/python/dist/src/Lib/distutils
In directory usw-pr-cvs1:/tmp/cvs-serv19762

Modified Files:
	ccompiler.py 
Log Message:
save the verbose argument as an instance attributes.  Subclasses of
CCompiler may rely on the presence of self.verbose (SciPy's distutils
appears to).


Index: ccompiler.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/ccompiler.py,v
retrieving revision 1.48
retrieving revision 1.49
diff -C2 -d -r1.48 -r1.49
*** ccompiler.py	1 Oct 2002 04:14:17 -0000	1.48
--- ccompiler.py	1 Oct 2002 17:39:59 -0000	1.49
***************
*** 83,86 ****
--- 83,87 ----
          self.dry_run = dry_run
          self.force = force
+         self.verbose = verbose
  
          # 'output_dir': a common output directory for object, library,