diff options
| author | Éric Araujo <merwok@netwok.org> | 2011-11-15 10:43:20 (GMT) |
|---|---|---|
| committer | Éric Araujo <merwok@netwok.org> | 2011-11-15 10:43:20 (GMT) |
| commit | 4d1554650475cc9a2c2773d6758687f4b3542de9 (patch) | |
| tree | 90440373b540b9097ae6c9116992243b4dd75941 /Lib/packaging/compiler/bcppcompiler.py | |
| parent | 9b5c7f44fad8fd78c23826218c6e7b425c06b183 (diff) | |
| download | cpython-4d1554650475cc9a2c2773d6758687f4b3542de9.zip cpython-4d1554650475cc9a2c2773d6758687f4b3542de9.tar.gz cpython-4d1554650475cc9a2c2773d6758687f4b3542de9.tar.bz2 | |
Remove obsolete verbose arguments from packaging.
Logging replaces verbose arguments. I haven’t fixed the example in
Doc/install/install.rst because I have major fixes and changes to the
oc under way and will fix or remove that example as part of that task.
Diffstat (limited to 'Lib/packaging/compiler/bcppcompiler.py')
| -rw-r--r-- | Lib/packaging/compiler/bcppcompiler.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/packaging/compiler/bcppcompiler.py b/Lib/packaging/compiler/bcppcompiler.py index a4aa2fa..06c758c 100644 --- a/Lib/packaging/compiler/bcppcompiler.py +++ b/Lib/packaging/compiler/bcppcompiler.py @@ -47,8 +47,8 @@ class BCPPCompiler(CCompiler) : exe_extension = '.exe' - def __init__(self, verbose=0, dry_run=False, force=False): - super(BCPPCompiler, self).__init__(verbose, dry_run, force) + def __init__(self, dry_run=False, force=False): + super(BCPPCompiler, self).__init__(dry_run, force) # These executables are assumed to all be in the path. # Borland doesn't seem to use any special registry settings to |
