summaryrefslogtreecommitdiffstats
path: root/Lib/packaging/command/build_ext.py
diff options
context:
space:
mode:
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)
commit4d1554650475cc9a2c2773d6758687f4b3542de9 (patch)
tree90440373b540b9097ae6c9116992243b4dd75941 /Lib/packaging/command/build_ext.py
parent9b5c7f44fad8fd78c23826218c6e7b425c06b183 (diff)
downloadcpython-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/command/build_ext.py')
-rw-r--r--Lib/packaging/command/build_ext.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/Lib/packaging/command/build_ext.py b/Lib/packaging/command/build_ext.py
index 4051a2d..4f375b6 100644
--- a/Lib/packaging/command/build_ext.py
+++ b/Lib/packaging/command/build_ext.py
@@ -4,7 +4,6 @@ import os
import re
import sys
import site
-import logging
import sysconfig
from packaging.util import get_platform
@@ -288,14 +287,9 @@ class build_ext(Command):
self.libraries.extend(build_clib.get_library_names() or [])
self.library_dirs.append(build_clib.build_clib)
- # Temporary kludge until we remove the verbose arguments and use
- # logging everywhere
- verbose = logger.getEffectiveLevel() >= logging.DEBUG
-
# Setup the CCompiler object that we'll use to do all the
# compiling and linking
self.compiler_obj = new_compiler(compiler=self.compiler,
- verbose=verbose,
dry_run=self.dry_run,
force=self.force)