diff options
author | Skip Montanaro <skip@pobox.com> | 2002-10-01 17:39:59 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2002-10-01 17:39:59 (GMT) |
commit | 70e1d9b59da4004bdf5681d9c98fd0435bcd7c9e (patch) | |
tree | aa61335afc37691ab1a92d8cec48a6e427f3df15 | |
parent | cfb30e23d1763e961ce1b19f706d85b30c3b3d16 (diff) | |
download | cpython-70e1d9b59da4004bdf5681d9c98fd0435bcd7c9e.zip cpython-70e1d9b59da4004bdf5681d9c98fd0435bcd7c9e.tar.gz cpython-70e1d9b59da4004bdf5681d9c98fd0435bcd7c9e.tar.bz2 |
save the verbose argument as an instance attributes. Subclasses of
CCompiler may rely on the presence of self.verbose (SciPy's distutils
appears to).
-rw-r--r-- | Lib/distutils/ccompiler.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/distutils/ccompiler.py b/Lib/distutils/ccompiler.py index 43dfa73..60d1cae 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 |