aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHaibo Huang <hhb@google.com>2021-02-05 01:07:07 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2021-02-05 01:07:07 +0000
commitf72d61e5a8d53eff161751e659b2cb735d702fa0 (patch)
tree8f1779588b3da76ef4a5592fd16a988af809dec1
parentca9b1b15f3debbe1b1f73f1fe3b2065d819eb6d2 (diff)
parentb5c98c358a03ffbf51fe60131701278339513233 (diff)
downloadcpython3-f72d61e5a8d53eff161751e659b2cb735d702fa0.tar.gz
[kokoro python] Clean up old debug logging am: b3dfbc00d4 am: 30958c7a8e am: b5c98c358a
Original change: https://android-review.googlesource.com/c/platform/external/python/cpython3/+/1576745 MUST ONLY BE SUBMITTED BY AUTOMERGER Change-Id: I863739c1f8e6f8fd7def72c2e377567fa2459932
-rw-r--r--Lib/distutils/unixccompiler.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/Lib/distutils/unixccompiler.py b/Lib/distutils/unixccompiler.py
index 8ce56a762c..f0792de74a 100644
--- a/Lib/distutils/unixccompiler.py
+++ b/Lib/distutils/unixccompiler.py
@@ -111,12 +111,8 @@ class UnixCCompiler(CCompiler):
def _compile(self, obj, src, ext, cc_args, extra_postargs, pp_opts):
compiler_so = self.compiler_so
if sys.platform == 'darwin':
- print("====cc_args: " + repr(cc_args))
- print("====extra_postargs: " + repr(extra_postargs))
- print("====Compiler_so before fixup: " + repr(compiler_so))
compiler_so = _osx_support.compiler_fixup(compiler_so,
cc_args + extra_postargs)
- print("====Compiler_so after fixup: " + repr(compiler_so))
try:
self.spawn(compiler_so + cc_args + [src, '-o', obj] +
extra_postargs)