aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHaibo Huang <hhb@google.com>2021-02-04 15:14:13 -0800
committerHaibo Huang <hhb@google.com>2021-02-04 15:14:13 -0800
commit19bd2e2ad927996388fa620bc1b6840a6ba8d9eb (patch)
tree8f6a53da2a35cea82d0352f70c2e6bd1fb7abf93
parent0fc707201687d4a9a5bc9f131465300d5e1b0845 (diff)
downloadcpython3-19bd2e2ad927996388fa620bc1b6840a6ba8d9eb.tar.gz
[kokoro python] update debug logging
Change-Id: Iaabc15a29909bf46b580631473fd22992724393e
-rw-r--r--Lib/distutils/unixccompiler.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/distutils/unixccompiler.py b/Lib/distutils/unixccompiler.py
index c1fe89ea70..8ce56a762c 100644
--- a/Lib/distutils/unixccompiler.py
+++ b/Lib/distutils/unixccompiler.py
@@ -113,10 +113,10 @@ class UnixCCompiler(CCompiler):
if sys.platform == 'darwin':
print("====cc_args: " + repr(cc_args))
print("====extra_postargs: " + repr(extra_postargs))
- print("====Compiler_so before fixup: " + repr(self.compiler_so))
+ 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(self.compiler_so))
+ print("====Compiler_so after fixup: " + repr(compiler_so))
try:
self.spawn(compiler_so + cc_args + [src, '-o', obj] +
extra_postargs)