mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
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.
This commit is contained in:
parent
9b5c7f44fa
commit
4d15546504
14 changed files with 44 additions and 57 deletions
|
@ -92,8 +92,8 @@ class CygwinCCompiler(UnixCCompiler):
|
|||
shared_lib_format = "%s%s"
|
||||
exe_extension = ".exe"
|
||||
|
||||
def __init__(self, verbose=0, dry_run=False, force=False):
|
||||
super(CygwinCCompiler, self).__init__(verbose, dry_run, force)
|
||||
def __init__(self, dry_run=False, force=False):
|
||||
super(CygwinCCompiler, self).__init__(dry_run, force)
|
||||
|
||||
status, details = check_config_h()
|
||||
logger.debug("Python's GCC status: %s (details: %s)", status, details)
|
||||
|
@ -270,8 +270,8 @@ class Mingw32CCompiler(CygwinCCompiler):
|
|||
name = 'mingw32'
|
||||
description = 'MinGW32 compiler'
|
||||
|
||||
def __init__(self, verbose=0, dry_run=False, force=False):
|
||||
super(Mingw32CCompiler, self).__init__(verbose, dry_run, force)
|
||||
def __init__(self, dry_run=False, force=False):
|
||||
super(Mingw32CCompiler, self).__init__(dry_run, force)
|
||||
|
||||
# ld_version >= "2.13" support -shared so use it instead of
|
||||
# -mdll -static
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue