From: Skip Montanaro <skip@pobox.com>
Date: Tue, 1 Oct 2002 17:39:59 +0000 (+0000)
Subject: save the verbose argument as an instance attributes.  Subclasses of
X-Git-Tag: v2.3c1~3911
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=70e1d9b59da4004bdf5681d9c98fd0435bcd7c9e;p=python

save the verbose argument as an instance attributes.  Subclasses of
CCompiler may rely on the presence of self.verbose (SciPy's distutils
appears to).
---

diff --git a/Lib/distutils/ccompiler.py b/Lib/distutils/ccompiler.py
index 43dfa731d2..60d1caeed1 100644
--- a/Lib/distutils/ccompiler.py
+++ b/Lib/distutils/ccompiler.py
@@ -82,6 +82,7 @@ class CCompiler:
 
         self.dry_run = dry_run
         self.force = force
+        self.verbose = verbose
 
         # 'output_dir': a common output directory for object, library,
         # shared object, and shared library files