bpo-36346: Add Py_DEPRECATED to deprecated unicode APIs#20878
Conversation
|
Warnings in |
Sorry, something went wrong.
Sorry, something went wrong.
There was a problem hiding this comment.
Regardless of whether the removal occurs in 3.11 or needs to be delayed for any reason, I think un-commenting the compiler warnings for 3.9 can only help users.
However, from looking at the blame and locating the commit that added the comments, it's not completely clear to me as to why it was done: 3c8724f. It looks like support for the macro Py_DEPRECATED() was added to MSVC, and while working on that, these were added as comments. It appears that some of the other ones were added by @vstinner.
What is the purpose of adding them as comments in the first place? Is this just done to avoid scope creep in the other PRs, while still marking it as "to do" for later? Or is there some convention with regards to adding it as a comment before an actual warning?
Either way though, +1 for un-commenting the existing Py_DEPRECATED() macros for the unicode APIs that are being removed. Without the warnings in 3.9, I think a 3.11 removal would be too soon.
Sorry, something went wrong.
|
Another way to suppress warning is adding private function without warning, like |
Sorry, something went wrong.
|
I'm fine with having this in 3.9 |
Sorry, something went wrong.
|
About the "_impl" suffix discussion: I wrote PR #20931 to remove it from _PyObject_GC_TRACK() :-) |
Sorry, something went wrong.
vstinner
left a comment
There was a problem hiding this comment.
LGTM, thanks for the multiple updates, the PR now looks much better! I prefer the new code of static inline macros ;-)
It's easier to read, variables have a well defined scope, and the return type is now clearly void ;-) Once I tried to convert all unicodeobject.h macros into static inline functions, but it's giant work and it's tricky to not introduce new compiler warnings :-(
I just added a minor suggestion about _PyObject_CAST().
Sorry, something went wrong.
|
Thank you for your review! |
Sorry, something went wrong.
|
Thanks @methane for the PR 🌮🎉.. I'm working now to backport this PR to: 3.9. |
Sorry, something went wrong.
Co-authored-by: Kyle Stanley <aeros167@gmail.com> Co-authored-by: Victor Stinner <vstinner@python.org> (cherry picked from commit 2c4928d) Co-authored-by: Inada Naoki <songofacandy@gmail.com>
⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️Hi! The buildbot PPC64 Fedora 3.x has failed when building commit 2c4928d. What do you need to do:
You can take a look at the buildbot page here: https://buildbot.python.org/all/#builders/8/builds/1247 Failed tests:
Failed subtests:
Summary of the results of the build (if available): == Tests result: FAILURE then FAILURE == 410 tests OK. 10 slowest tests:
1 test failed: 13 tests skipped: 1 re-run test: Total duration: 23 min 43 sec Click to see traceback logsTraceback (most recent call last):
File "/home/shager/cpython-buildarea/3.x.edelsohn-fedora-ppc64/build/Lib/distutils/tests/test_install.py", line 220, in test_record_extensions
cmd.run()
File "/home/shager/cpython-buildarea/3.x.edelsohn-fedora-ppc64/build/Lib/distutils/command/install.py", line 546, in run
self.run_command('build')
File "/home/shager/cpython-buildarea/3.x.edelsohn-fedora-ppc64/build/Lib/distutils/cmd.py", line 313, in run_command
self.distribution.run_command(command)
File "/home/shager/cpython-buildarea/3.x.edelsohn-fedora-ppc64/build/Lib/distutils/dist.py", line 985, in run_command
cmd_obj.run()
File "/home/shager/cpython-buildarea/3.x.edelsohn-fedora-ppc64/build/Lib/distutils/command/build.py", line 135, in run
self.run_command(cmd_name)
File "/home/shager/cpython-buildarea/3.x.edelsohn-fedora-ppc64/build/Lib/distutils/cmd.py", line 313, in run_command
self.distribution.run_command(command)
File "/home/shager/cpython-buildarea/3.x.edelsohn-fedora-ppc64/build/Lib/distutils/dist.py", line 985, in run_command
cmd_obj.run()
File "/home/shager/cpython-buildarea/3.x.edelsohn-fedora-ppc64/build/Lib/distutils/command/build_ext.py", line 340, in run
self.build_extensions()
File "/home/shager/cpython-buildarea/3.x.edelsohn-fedora-ppc64/build/Lib/distutils/command/build_ext.py", line 449, in build_extensions
self._build_extensions_serial()
File "/home/shager/cpython-buildarea/3.x.edelsohn-fedora-ppc64/build/Lib/distutils/command/build_ext.py", line 474, in _build_extensions_serial
self.build_extension(ext)
File "/home/shager/cpython-buildarea/3.x.edelsohn-fedora-ppc64/build/Lib/distutils/command/build_ext.py", line 529, in build_extension
objects = self.compiler.compile(sources,
File "/home/shager/cpython-buildarea/3.x.edelsohn-fedora-ppc64/build/Lib/distutils/ccompiler.py", line 574, in compile
self._compile(obj, src, ext, cc_args, extra_postargs, pp_opts)
File "/home/shager/cpython-buildarea/3.x.edelsohn-fedora-ppc64/build/Lib/distutils/unixccompiler.py", line 120, in _compile
raise CompileError(msg)
distutils.errors.CompileError: command '/usr/bin/gcc' failed with exit code 1
Traceback (most recent call last):
File "/home/shager/cpython-buildarea/3.x.edelsohn-fedora-ppc64/build/Lib/distutils/tests/test_build_ext.py", line 76, in test_build_ext
cmd.run()
File "/home/shager/cpython-buildarea/3.x.edelsohn-fedora-ppc64/build/Lib/distutils/command/build_ext.py", line 340, in run
self.build_extensions()
File "/home/shager/cpython-buildarea/3.x.edelsohn-fedora-ppc64/build/Lib/distutils/command/build_ext.py", line 447, in build_extensions
self._build_extensions_parallel()
File "/home/shager/cpython-buildarea/3.x.edelsohn-fedora-ppc64/build/Lib/distutils/command/build_ext.py", line 469, in _build_extensions_parallel
fut.result()
File "/home/shager/cpython-buildarea/3.x.edelsohn-fedora-ppc64/build/Lib/concurrent/futures/_base.py", line 440, in result
return self.__get_result()
File "/home/shager/cpython-buildarea/3.x.edelsohn-fedora-ppc64/build/Lib/concurrent/futures/_base.py", line 389, in __get_result
raise self._exception
File "/home/shager/cpython-buildarea/3.x.edelsohn-fedora-ppc64/build/Lib/concurrent/futures/thread.py", line 52, in run
result = self.fn(*self.args, **self.kwargs)
File "/home/shager/cpython-buildarea/3.x.edelsohn-fedora-ppc64/build/Lib/distutils/command/build_ext.py", line 529, in build_extension
objects = self.compiler.compile(sources,
File "/home/shager/cpython-buildarea/3.x.edelsohn-fedora-ppc64/build/Lib/distutils/ccompiler.py", line 574, in compile
self._compile(obj, src, ext, cc_args, extra_postargs, pp_opts)
File "/home/shager/cpython-buildarea/3.x.edelsohn-fedora-ppc64/build/Lib/distutils/unixccompiler.py", line 120, in _compile
raise CompileError(msg)
distutils.errors.CompileError: command '/usr/bin/gcc' failed with exit code 1
Traceback (most recent call last):
File "/home/shager/cpython-buildarea/3.x.edelsohn-fedora-ppc64/build/Lib/distutils/unixccompiler.py", line 117, in _compile
self.spawn(compiler_so + cc_args + [src, '-o', obj] +
File "/home/shager/cpython-buildarea/3.x.edelsohn-fedora-ppc64/build/Lib/distutils/ccompiler.py", line 910, in spawn
spawn(cmd, dry_run=self.dry_run)
File "/home/shager/cpython-buildarea/3.x.edelsohn-fedora-ppc64/build/Lib/distutils/spawn.py", line 81, in spawn
raise DistutilsExecError(
distutils.errors.DistutilsExecError: command '/usr/bin/gcc' failed with exit code 1
Traceback (most recent call last):
File "/home/shager/cpython-buildarea/3.x.edelsohn-fedora-ppc64/build/Lib/distutils/tests/test_build_ext.py", line 76, in test_build_ext
cmd.run()
File "/home/shager/cpython-buildarea/3.x.edelsohn-fedora-ppc64/build/Lib/distutils/command/build_ext.py", line 340, in run
self.build_extensions()
File "/home/shager/cpython-buildarea/3.x.edelsohn-fedora-ppc64/build/Lib/distutils/command/build_ext.py", line 449, in build_extensions
self._build_extensions_serial()
File "/home/shager/cpython-buildarea/3.x.edelsohn-fedora-ppc64/build/Lib/distutils/command/build_ext.py", line 474, in _build_extensions_serial
self.build_extension(ext)
File "/home/shager/cpython-buildarea/3.x.edelsohn-fedora-ppc64/build/Lib/distutils/command/build_ext.py", line 529, in build_extension
objects = self.compiler.compile(sources,
File "/home/shager/cpython-buildarea/3.x.edelsohn-fedora-ppc64/build/Lib/distutils/ccompiler.py", line 574, in compile
self._compile(obj, src, ext, cc_args, extra_postargs, pp_opts)
File "/home/shager/cpython-buildarea/3.x.edelsohn-fedora-ppc64/build/Lib/distutils/unixccompiler.py", line 120, in _compile
raise CompileError(msg)
distutils.errors.CompileError: command '/usr/bin/gcc' failed with exit code 1
|
Sorry, something went wrong.
⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️Hi! The buildbot AMD64 Debian root 3.x has failed when building commit 2c4928d. What do you need to do:
You can take a look at the buildbot page here: https://buildbot.python.org/all/#builders/225/builds/1262 Failed tests:
Failed subtests:
Summary of the results of the build (if available): == Tests result: FAILURE then FAILURE == 403 tests OK. 10 slowest tests:
1 test failed: 20 tests skipped: 1 re-run test: Total duration: 24 min 50 sec Click to see traceback logsTraceback (most recent call last):
File "/root/buildarea/3.x.angelico-debian-amd64/build/Lib/distutils/unixccompiler.py", line 117, in _compile
self.spawn(compiler_so + cc_args + [src, '-o', obj] +
File "/root/buildarea/3.x.angelico-debian-amd64/build/Lib/distutils/ccompiler.py", line 910, in spawn
spawn(cmd, dry_run=self.dry_run)
File "/root/buildarea/3.x.angelico-debian-amd64/build/Lib/distutils/spawn.py", line 81, in spawn
raise DistutilsExecError(
distutils.errors.DistutilsExecError: command '/usr/bin/gcc' failed with exit code 1
Traceback (most recent call last):
File "/root/buildarea/3.x.angelico-debian-amd64/build/Lib/distutils/tests/test_install.py", line 220, in test_record_extensions
cmd.run()
File "/root/buildarea/3.x.angelico-debian-amd64/build/Lib/distutils/command/install.py", line 546, in run
self.run_command('build')
File "/root/buildarea/3.x.angelico-debian-amd64/build/Lib/distutils/cmd.py", line 313, in run_command
self.distribution.run_command(command)
File "/root/buildarea/3.x.angelico-debian-amd64/build/Lib/distutils/dist.py", line 985, in run_command
cmd_obj.run()
File "/root/buildarea/3.x.angelico-debian-amd64/build/Lib/distutils/command/build.py", line 135, in run
self.run_command(cmd_name)
File "/root/buildarea/3.x.angelico-debian-amd64/build/Lib/distutils/cmd.py", line 313, in run_command
self.distribution.run_command(command)
File "/root/buildarea/3.x.angelico-debian-amd64/build/Lib/distutils/dist.py", line 985, in run_command
cmd_obj.run()
File "/root/buildarea/3.x.angelico-debian-amd64/build/Lib/distutils/command/build_ext.py", line 340, in run
self.build_extensions()
File "/root/buildarea/3.x.angelico-debian-amd64/build/Lib/distutils/command/build_ext.py", line 449, in build_extensions
self._build_extensions_serial()
File "/root/buildarea/3.x.angelico-debian-amd64/build/Lib/distutils/command/build_ext.py", line 474, in _build_extensions_serial
self.build_extension(ext)
File "/root/buildarea/3.x.angelico-debian-amd64/build/Lib/distutils/command/build_ext.py", line 529, in build_extension
objects = self.compiler.compile(sources,
File "/root/buildarea/3.x.angelico-debian-amd64/build/Lib/distutils/ccompiler.py", line 574, in compile
self._compile(obj, src, ext, cc_args, extra_postargs, pp_opts)
File "/root/buildarea/3.x.angelico-debian-amd64/build/Lib/distutils/unixccompiler.py", line 120, in _compile
raise CompileError(msg)
distutils.errors.CompileError: command '/usr/bin/gcc' failed with exit code 1
Traceback (most recent call last):
File "/root/buildarea/3.x.angelico-debian-amd64/build/Lib/distutils/tests/test_build_ext.py", line 76, in test_build_ext
cmd.run()
File "/root/buildarea/3.x.angelico-debian-amd64/build/Lib/distutils/command/build_ext.py", line 340, in run
self.build_extensions()
File "/root/buildarea/3.x.angelico-debian-amd64/build/Lib/distutils/command/build_ext.py", line 449, in build_extensions
self._build_extensions_serial()
File "/root/buildarea/3.x.angelico-debian-amd64/build/Lib/distutils/command/build_ext.py", line 474, in _build_extensions_serial
self.build_extension(ext)
File "/root/buildarea/3.x.angelico-debian-amd64/build/Lib/distutils/command/build_ext.py", line 529, in build_extension
objects = self.compiler.compile(sources,
File "/root/buildarea/3.x.angelico-debian-amd64/build/Lib/distutils/ccompiler.py", line 574, in compile
self._compile(obj, src, ext, cc_args, extra_postargs, pp_opts)
File "/root/buildarea/3.x.angelico-debian-amd64/build/Lib/distutils/unixccompiler.py", line 120, in _compile
raise CompileError(msg)
distutils.errors.CompileError: command '/usr/bin/gcc' failed with exit code 1
Traceback (most recent call last):
File "/root/buildarea/3.x.angelico-debian-amd64/build/Lib/distutils/tests/test_build_ext.py", line 76, in test_build_ext
cmd.run()
File "/root/buildarea/3.x.angelico-debian-amd64/build/Lib/distutils/command/build_ext.py", line 340, in run
self.build_extensions()
File "/root/buildarea/3.x.angelico-debian-amd64/build/Lib/distutils/command/build_ext.py", line 447, in build_extensions
self._build_extensions_parallel()
File "/root/buildarea/3.x.angelico-debian-amd64/build/Lib/distutils/command/build_ext.py", line 469, in _build_extensions_parallel
fut.result()
File "/root/buildarea/3.x.angelico-debian-amd64/build/Lib/concurrent/futures/_base.py", line 440, in result
return self.__get_result()
File "/root/buildarea/3.x.angelico-debian-amd64/build/Lib/concurrent/futures/_base.py", line 389, in __get_result
raise self._exception
File "/root/buildarea/3.x.angelico-debian-amd64/build/Lib/concurrent/futures/thread.py", line 52, in run
result = self.fn(*self.args, **self.kwargs)
File "/root/buildarea/3.x.angelico-debian-amd64/build/Lib/distutils/command/build_ext.py", line 529, in build_extension
objects = self.compiler.compile(sources,
File "/root/buildarea/3.x.angelico-debian-amd64/build/Lib/distutils/ccompiler.py", line 574, in compile
self._compile(obj, src, ext, cc_args, extra_postargs, pp_opts)
File "/root/buildarea/3.x.angelico-debian-amd64/build/Lib/distutils/unixccompiler.py", line 120, in _compile
raise CompileError(msg)
distutils.errors.CompileError: command '/usr/bin/gcc' failed with exit code 1
|
Sorry, something went wrong.
⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️Hi! The buildbot PPC64LE RHEL7 3.x has failed when building commit 2c4928d. What do you need to do:
You can take a look at the buildbot page here: https://buildbot.python.org/all/#builders/347/builds/796 Failed tests:
Failed subtests:
Summary of the results of the build (if available): == Tests result: FAILURE then FAILURE == 410 tests OK. 10 slowest tests:
1 test failed: 13 tests skipped: 1 re-run test: Total duration: 5 min 38 sec Click to see traceback logsTraceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le/build/Lib/distutils/unixccompiler.py", line 117, in _compile
self.spawn(compiler_so + cc_args + [src, '-o', obj] +
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le/build/Lib/distutils/ccompiler.py", line 910, in spawn
spawn(cmd, dry_run=self.dry_run)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le/build/Lib/distutils/spawn.py", line 81, in spawn
raise DistutilsExecError(
distutils.errors.DistutilsExecError: command '/usr/bin/gcc' failed with exit code 1
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le/build/Lib/distutils/tests/test_install.py", line 220, in test_record_extensions
cmd.run()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le/build/Lib/distutils/command/install.py", line 546, in run
self.run_command('build')
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le/build/Lib/distutils/cmd.py", line 313, in run_command
self.distribution.run_command(command)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le/build/Lib/distutils/dist.py", line 985, in run_command
cmd_obj.run()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le/build/Lib/distutils/command/build.py", line 135, in run
self.run_command(cmd_name)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le/build/Lib/distutils/cmd.py", line 313, in run_command
self.distribution.run_command(command)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le/build/Lib/distutils/dist.py", line 985, in run_command
cmd_obj.run()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le/build/Lib/distutils/command/build_ext.py", line 340, in run
self.build_extensions()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le/build/Lib/distutils/command/build_ext.py", line 449, in build_extensions
self._build_extensions_serial()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le/build/Lib/distutils/command/build_ext.py", line 474, in _build_extensions_serial
self.build_extension(ext)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le/build/Lib/distutils/command/build_ext.py", line 529, in build_extension
objects = self.compiler.compile(sources,
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le/build/Lib/distutils/ccompiler.py", line 574, in compile
self._compile(obj, src, ext, cc_args, extra_postargs, pp_opts)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le/build/Lib/distutils/unixccompiler.py", line 120, in _compile
raise CompileError(msg)
distutils.errors.CompileError: command '/usr/bin/gcc' failed with exit code 1
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le/build/Lib/distutils/tests/test_build_ext.py", line 76, in test_build_ext
cmd.run()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le/build/Lib/distutils/command/build_ext.py", line 340, in run
self.build_extensions()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le/build/Lib/distutils/command/build_ext.py", line 447, in build_extensions
self._build_extensions_parallel()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le/build/Lib/distutils/command/build_ext.py", line 469, in _build_extensions_parallel
fut.result()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le/build/Lib/concurrent/futures/_base.py", line 440, in result
return self.__get_result()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le/build/Lib/concurrent/futures/_base.py", line 389, in __get_result
raise self._exception
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le/build/Lib/concurrent/futures/thread.py", line 52, in run
result = self.fn(*self.args, **self.kwargs)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le/build/Lib/distutils/command/build_ext.py", line 529, in build_extension
objects = self.compiler.compile(sources,
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le/build/Lib/distutils/ccompiler.py", line 574, in compile
self._compile(obj, src, ext, cc_args, extra_postargs, pp_opts)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le/build/Lib/distutils/unixccompiler.py", line 120, in _compile
raise CompileError(msg)
distutils.errors.CompileError: command '/usr/bin/gcc' failed with exit code 1
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le/build/Lib/distutils/tests/test_build_ext.py", line 76, in test_build_ext
cmd.run()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le/build/Lib/distutils/command/build_ext.py", line 340, in run
self.build_extensions()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le/build/Lib/distutils/command/build_ext.py", line 449, in build_extensions
self._build_extensions_serial()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le/build/Lib/distutils/command/build_ext.py", line 474, in _build_extensions_serial
self.build_extension(ext)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le/build/Lib/distutils/command/build_ext.py", line 529, in build_extension
objects = self.compiler.compile(sources,
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le/build/Lib/distutils/ccompiler.py", line 574, in compile
self._compile(obj, src, ext, cc_args, extra_postargs, pp_opts)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le/build/Lib/distutils/unixccompiler.py", line 120, in _compile
raise CompileError(msg)
distutils.errors.CompileError: command '/usr/bin/gcc' failed with exit code 1
|
Sorry, something went wrong.
|
The change broke multiple buildbots on master, so I rejected the 3.9 backport PR. |
Sorry, something went wrong.
⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️Hi! The buildbot AMD64 RHEL7 3.x has failed when building commit 2c4928d. What do you need to do:
You can take a look at the buildbot page here: https://buildbot.python.org/all/#builders/4/builds/1098 Failed tests:
Failed subtests:
Summary of the results of the build (if available): == Tests result: FAILURE then FAILURE == 409 tests OK. 10 slowest tests:
1 test failed: 14 tests skipped: 1 re-run test: Total duration: 5 min 15 sec Click to see traceback logsTraceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64/build/Lib/distutils/tests/test_build_ext.py", line 76, in test_build_ext
cmd.run()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64/build/Lib/distutils/command/build_ext.py", line 340, in run
self.build_extensions()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64/build/Lib/distutils/command/build_ext.py", line 447, in build_extensions
self._build_extensions_parallel()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64/build/Lib/distutils/command/build_ext.py", line 469, in _build_extensions_parallel
fut.result()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64/build/Lib/concurrent/futures/_base.py", line 440, in result
return self.__get_result()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64/build/Lib/concurrent/futures/_base.py", line 389, in __get_result
raise self._exception
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64/build/Lib/concurrent/futures/thread.py", line 52, in run
result = self.fn(*self.args, **self.kwargs)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64/build/Lib/distutils/command/build_ext.py", line 529, in build_extension
objects = self.compiler.compile(sources,
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64/build/Lib/distutils/ccompiler.py", line 574, in compile
self._compile(obj, src, ext, cc_args, extra_postargs, pp_opts)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64/build/Lib/distutils/unixccompiler.py", line 120, in _compile
raise CompileError(msg)
distutils.errors.CompileError: command '/usr/bin/gcc' failed with exit code 1
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64/build/Lib/distutils/tests/test_build_ext.py", line 76, in test_build_ext
cmd.run()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64/build/Lib/distutils/command/build_ext.py", line 340, in run
self.build_extensions()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64/build/Lib/distutils/command/build_ext.py", line 449, in build_extensions
self._build_extensions_serial()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64/build/Lib/distutils/command/build_ext.py", line 474, in _build_extensions_serial
self.build_extension(ext)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64/build/Lib/distutils/command/build_ext.py", line 529, in build_extension
objects = self.compiler.compile(sources,
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64/build/Lib/distutils/ccompiler.py", line 574, in compile
self._compile(obj, src, ext, cc_args, extra_postargs, pp_opts)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64/build/Lib/distutils/unixccompiler.py", line 120, in _compile
raise CompileError(msg)
distutils.errors.CompileError: command '/usr/bin/gcc' failed with exit code 1
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64/build/Lib/distutils/tests/test_install.py", line 220, in test_record_extensions
cmd.run()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64/build/Lib/distutils/command/install.py", line 546, in run
self.run_command('build')
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64/build/Lib/distutils/cmd.py", line 313, in run_command
self.distribution.run_command(command)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64/build/Lib/distutils/dist.py", line 985, in run_command
cmd_obj.run()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64/build/Lib/distutils/command/build.py", line 135, in run
self.run_command(cmd_name)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64/build/Lib/distutils/cmd.py", line 313, in run_command
self.distribution.run_command(command)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64/build/Lib/distutils/dist.py", line 985, in run_command
cmd_obj.run()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64/build/Lib/distutils/command/build_ext.py", line 340, in run
self.build_extensions()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64/build/Lib/distutils/command/build_ext.py", line 449, in build_extensions
self._build_extensions_serial()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64/build/Lib/distutils/command/build_ext.py", line 474, in _build_extensions_serial
self.build_extension(ext)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64/build/Lib/distutils/command/build_ext.py", line 529, in build_extension
objects = self.compiler.compile(sources,
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64/build/Lib/distutils/ccompiler.py", line 574, in compile
self._compile(obj, src, ext, cc_args, extra_postargs, pp_opts)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64/build/Lib/distutils/unixccompiler.py", line 120, in _compile
raise CompileError(msg)
distutils.errors.CompileError: command '/usr/bin/gcc' failed with exit code 1
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64/build/Lib/distutils/unixccompiler.py", line 117, in _compile
self.spawn(compiler_so + cc_args + [src, '-o', obj] +
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64/build/Lib/distutils/ccompiler.py", line 910, in spawn
spawn(cmd, dry_run=self.dry_run)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64/build/Lib/distutils/spawn.py", line 81, in spawn
raise DistutilsExecError(
distutils.errors.DistutilsExecError: command '/usr/bin/gcc' failed with exit code 1
|
Sorry, something went wrong.
⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️Hi! The buildbot PPC64LE RHEL7 LTO + PGO 3.x has failed when building commit 2c4928d. What do you need to do:
You can take a look at the buildbot page here: https://buildbot.python.org/all/#builders/344/builds/797 Failed tests:
Failed subtests:
Summary of the results of the build (if available): == Tests result: FAILURE then FAILURE == 409 tests OK. 10 slowest tests:
1 test failed: 14 tests skipped: 1 re-run test: Total duration: 7 min 35 sec Click to see traceback logsTraceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto-pgo/build/Lib/distutils/tests/test_build_ext.py", line 76, in test_build_ext
cmd.run()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto-pgo/build/Lib/distutils/command/build_ext.py", line 340, in run
self.build_extensions()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto-pgo/build/Lib/distutils/command/build_ext.py", line 449, in build_extensions
self._build_extensions_serial()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto-pgo/build/Lib/distutils/command/build_ext.py", line 474, in _build_extensions_serial
self.build_extension(ext)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto-pgo/build/Lib/distutils/command/build_ext.py", line 529, in build_extension
objects = self.compiler.compile(sources,
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto-pgo/build/Lib/distutils/ccompiler.py", line 574, in compile
self._compile(obj, src, ext, cc_args, extra_postargs, pp_opts)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto-pgo/build/Lib/distutils/unixccompiler.py", line 120, in _compile
raise CompileError(msg)
distutils.errors.CompileError: command '/usr/bin/gcc' failed with exit code 1
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto-pgo/build/Lib/distutils/tests/test_install.py", line 220, in test_record_extensions
cmd.run()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto-pgo/build/Lib/distutils/command/install.py", line 546, in run
self.run_command('build')
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto-pgo/build/Lib/distutils/cmd.py", line 313, in run_command
self.distribution.run_command(command)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto-pgo/build/Lib/distutils/dist.py", line 985, in run_command
cmd_obj.run()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto-pgo/build/Lib/distutils/command/build.py", line 135, in run
self.run_command(cmd_name)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto-pgo/build/Lib/distutils/cmd.py", line 313, in run_command
self.distribution.run_command(command)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto-pgo/build/Lib/distutils/dist.py", line 985, in run_command
cmd_obj.run()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto-pgo/build/Lib/distutils/command/build_ext.py", line 340, in run
self.build_extensions()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto-pgo/build/Lib/distutils/command/build_ext.py", line 449, in build_extensions
self._build_extensions_serial()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto-pgo/build/Lib/distutils/command/build_ext.py", line 474, in _build_extensions_serial
self.build_extension(ext)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto-pgo/build/Lib/distutils/command/build_ext.py", line 529, in build_extension
objects = self.compiler.compile(sources,
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto-pgo/build/Lib/distutils/ccompiler.py", line 574, in compile
self._compile(obj, src, ext, cc_args, extra_postargs, pp_opts)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto-pgo/build/Lib/distutils/unixccompiler.py", line 120, in _compile
raise CompileError(msg)
distutils.errors.CompileError: command '/usr/bin/gcc' failed with exit code 1
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto-pgo/build/Lib/distutils/tests/test_build_ext.py", line 76, in test_build_ext
cmd.run()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto-pgo/build/Lib/distutils/command/build_ext.py", line 340, in run
self.build_extensions()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto-pgo/build/Lib/distutils/command/build_ext.py", line 447, in build_extensions
self._build_extensions_parallel()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto-pgo/build/Lib/distutils/command/build_ext.py", line 469, in _build_extensions_parallel
fut.result()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto-pgo/build/Lib/concurrent/futures/_base.py", line 440, in result
return self.__get_result()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto-pgo/build/Lib/concurrent/futures/_base.py", line 389, in __get_result
raise self._exception
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto-pgo/build/Lib/concurrent/futures/thread.py", line 52, in run
result = self.fn(*self.args, **self.kwargs)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto-pgo/build/Lib/distutils/command/build_ext.py", line 529, in build_extension
objects = self.compiler.compile(sources,
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto-pgo/build/Lib/distutils/ccompiler.py", line 574, in compile
self._compile(obj, src, ext, cc_args, extra_postargs, pp_opts)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto-pgo/build/Lib/distutils/unixccompiler.py", line 120, in _compile
raise CompileError(msg)
distutils.errors.CompileError: command '/usr/bin/gcc' failed with exit code 1
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto-pgo/build/Lib/distutils/unixccompiler.py", line 117, in _compile
self.spawn(compiler_so + cc_args + [src, '-o', obj] +
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto-pgo/build/Lib/distutils/ccompiler.py", line 910, in spawn
spawn(cmd, dry_run=self.dry_run)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto-pgo/build/Lib/distutils/spawn.py", line 81, in spawn
raise DistutilsExecError(
distutils.errors.DistutilsExecError: command '/usr/bin/gcc' failed with exit code 1
|
Sorry, something went wrong.
⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️Hi! The buildbot aarch64 RHEL7 3.x has failed when building commit 2c4928d. What do you need to do:
You can take a look at the buildbot page here: https://buildbot.python.org/all/#builders/568/builds/724 Failed tests:
Failed subtests:
Summary of the results of the build (if available): == Tests result: FAILURE then FAILURE == 409 tests OK. 10 slowest tests:
1 test failed: 14 tests skipped: 1 re-run test: Total duration: 7 min 57 sec Click to see traceback logsTraceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-aarch64/build/Lib/distutils/tests/test_build_ext.py", line 76, in test_build_ext
cmd.run()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-aarch64/build/Lib/distutils/command/build_ext.py", line 340, in run
self.build_extensions()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-aarch64/build/Lib/distutils/command/build_ext.py", line 449, in build_extensions
self._build_extensions_serial()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-aarch64/build/Lib/distutils/command/build_ext.py", line 474, in _build_extensions_serial
self.build_extension(ext)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-aarch64/build/Lib/distutils/command/build_ext.py", line 529, in build_extension
objects = self.compiler.compile(sources,
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-aarch64/build/Lib/distutils/ccompiler.py", line 574, in compile
self._compile(obj, src, ext, cc_args, extra_postargs, pp_opts)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-aarch64/build/Lib/distutils/unixccompiler.py", line 120, in _compile
raise CompileError(msg)
distutils.errors.CompileError: command '/usr/bin/gcc' failed with exit code 1
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-aarch64/build/Lib/distutils/tests/test_build_ext.py", line 76, in test_build_ext
cmd.run()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-aarch64/build/Lib/distutils/command/build_ext.py", line 340, in run
self.build_extensions()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-aarch64/build/Lib/distutils/command/build_ext.py", line 447, in build_extensions
self._build_extensions_parallel()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-aarch64/build/Lib/distutils/command/build_ext.py", line 469, in _build_extensions_parallel
fut.result()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-aarch64/build/Lib/concurrent/futures/_base.py", line 440, in result
return self.__get_result()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-aarch64/build/Lib/concurrent/futures/_base.py", line 389, in __get_result
raise self._exception
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-aarch64/build/Lib/concurrent/futures/thread.py", line 52, in run
result = self.fn(*self.args, **self.kwargs)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-aarch64/build/Lib/distutils/command/build_ext.py", line 529, in build_extension
objects = self.compiler.compile(sources,
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-aarch64/build/Lib/distutils/ccompiler.py", line 574, in compile
self._compile(obj, src, ext, cc_args, extra_postargs, pp_opts)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-aarch64/build/Lib/distutils/unixccompiler.py", line 120, in _compile
raise CompileError(msg)
distutils.errors.CompileError: command '/usr/bin/gcc' failed with exit code 1
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-aarch64/build/Lib/distutils/unixccompiler.py", line 117, in _compile
self.spawn(compiler_so + cc_args + [src, '-o', obj] +
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-aarch64/build/Lib/distutils/ccompiler.py", line 910, in spawn
spawn(cmd, dry_run=self.dry_run)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-aarch64/build/Lib/distutils/spawn.py", line 81, in spawn
raise DistutilsExecError(
distutils.errors.DistutilsExecError: command '/usr/bin/gcc' failed with exit code 1
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-aarch64/build/Lib/distutils/tests/test_install.py", line 220, in test_record_extensions
cmd.run()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-aarch64/build/Lib/distutils/command/install.py", line 546, in run
self.run_command('build')
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-aarch64/build/Lib/distutils/cmd.py", line 313, in run_command
self.distribution.run_command(command)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-aarch64/build/Lib/distutils/dist.py", line 985, in run_command
cmd_obj.run()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-aarch64/build/Lib/distutils/command/build.py", line 135, in run
self.run_command(cmd_name)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-aarch64/build/Lib/distutils/cmd.py", line 313, in run_command
self.distribution.run_command(command)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-aarch64/build/Lib/distutils/dist.py", line 985, in run_command
cmd_obj.run()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-aarch64/build/Lib/distutils/command/build_ext.py", line 340, in run
self.build_extensions()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-aarch64/build/Lib/distutils/command/build_ext.py", line 449, in build_extensions
self._build_extensions_serial()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-aarch64/build/Lib/distutils/command/build_ext.py", line 474, in _build_extensions_serial
self.build_extension(ext)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-aarch64/build/Lib/distutils/command/build_ext.py", line 529, in build_extension
objects = self.compiler.compile(sources,
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-aarch64/build/Lib/distutils/ccompiler.py", line 574, in compile
self._compile(obj, src, ext, cc_args, extra_postargs, pp_opts)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-aarch64/build/Lib/distutils/unixccompiler.py", line 120, in _compile
raise CompileError(msg)
distutils.errors.CompileError: command '/usr/bin/gcc' failed with exit code 1
|
Sorry, something went wrong.
⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️Hi! The buildbot PPC64LE RHEL7 LTO 3.x has failed when building commit 2c4928d. What do you need to do:
You can take a look at the buildbot page here: https://buildbot.python.org/all/#builders/373/builds/800 Failed tests:
Failed subtests:
Summary of the results of the build (if available): == Tests result: FAILURE then FAILURE == 410 tests OK. 10 slowest tests:
1 test failed: 13 tests skipped: 1 re-run test: Total duration: 8 min 2 sec Click to see traceback logsTraceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto/build/Lib/distutils/tests/test_build_ext.py", line 76, in test_build_ext
cmd.run()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto/build/Lib/distutils/command/build_ext.py", line 340, in run
self.build_extensions()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto/build/Lib/distutils/command/build_ext.py", line 449, in build_extensions
self._build_extensions_serial()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto/build/Lib/distutils/command/build_ext.py", line 474, in _build_extensions_serial
self.build_extension(ext)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto/build/Lib/distutils/command/build_ext.py", line 529, in build_extension
objects = self.compiler.compile(sources,
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto/build/Lib/distutils/ccompiler.py", line 574, in compile
self._compile(obj, src, ext, cc_args, extra_postargs, pp_opts)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto/build/Lib/distutils/unixccompiler.py", line 120, in _compile
raise CompileError(msg)
distutils.errors.CompileError: command '/usr/bin/gcc' failed with exit code 1
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto/build/Lib/distutils/unixccompiler.py", line 117, in _compile
self.spawn(compiler_so + cc_args + [src, '-o', obj] +
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto/build/Lib/distutils/ccompiler.py", line 910, in spawn
spawn(cmd, dry_run=self.dry_run)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto/build/Lib/distutils/spawn.py", line 81, in spawn
raise DistutilsExecError(
distutils.errors.DistutilsExecError: command '/usr/bin/gcc' failed with exit code 1
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto/build/Lib/distutils/tests/test_install.py", line 220, in test_record_extensions
cmd.run()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto/build/Lib/distutils/command/install.py", line 546, in run
self.run_command('build')
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto/build/Lib/distutils/cmd.py", line 313, in run_command
self.distribution.run_command(command)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto/build/Lib/distutils/dist.py", line 985, in run_command
cmd_obj.run()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto/build/Lib/distutils/command/build.py", line 135, in run
self.run_command(cmd_name)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto/build/Lib/distutils/cmd.py", line 313, in run_command
self.distribution.run_command(command)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto/build/Lib/distutils/dist.py", line 985, in run_command
cmd_obj.run()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto/build/Lib/distutils/command/build_ext.py", line 340, in run
self.build_extensions()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto/build/Lib/distutils/command/build_ext.py", line 449, in build_extensions
self._build_extensions_serial()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto/build/Lib/distutils/command/build_ext.py", line 474, in _build_extensions_serial
self.build_extension(ext)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto/build/Lib/distutils/command/build_ext.py", line 529, in build_extension
objects = self.compiler.compile(sources,
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto/build/Lib/distutils/ccompiler.py", line 574, in compile
self._compile(obj, src, ext, cc_args, extra_postargs, pp_opts)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto/build/Lib/distutils/unixccompiler.py", line 120, in _compile
raise CompileError(msg)
distutils.errors.CompileError: command '/usr/bin/gcc' failed with exit code 1
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto/build/Lib/distutils/tests/test_build_ext.py", line 76, in test_build_ext
cmd.run()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto/build/Lib/distutils/command/build_ext.py", line 340, in run
self.build_extensions()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto/build/Lib/distutils/command/build_ext.py", line 447, in build_extensions
self._build_extensions_parallel()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto/build/Lib/distutils/command/build_ext.py", line 469, in _build_extensions_parallel
fut.result()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto/build/Lib/concurrent/futures/_base.py", line 440, in result
return self.__get_result()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto/build/Lib/concurrent/futures/_base.py", line 389, in __get_result
raise self._exception
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto/build/Lib/concurrent/futures/thread.py", line 52, in run
result = self.fn(*self.args, **self.kwargs)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto/build/Lib/distutils/command/build_ext.py", line 529, in build_extension
objects = self.compiler.compile(sources,
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto/build/Lib/distutils/ccompiler.py", line 574, in compile
self._compile(obj, src, ext, cc_args, extra_postargs, pp_opts)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto/build/Lib/distutils/unixccompiler.py", line 120, in _compile
raise CompileError(msg)
distutils.errors.CompileError: command '/usr/bin/gcc' failed with exit code 1
|
Sorry, something went wrong.
⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️Hi! The buildbot AMD64 RHEL7 LTO + PGO 3.x has failed when building commit 2c4928d. What do you need to do:
You can take a look at the buildbot page here: https://buildbot.python.org/all/#builders/196/builds/1037 Failed tests:
Failed subtests:
Summary of the results of the build (if available): == Tests result: FAILURE then FAILURE == 409 tests OK. 10 slowest tests:
1 test failed: 14 tests skipped: 1 re-run test: Total duration: 6 min 9 sec Click to see traceback logsTraceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto-pgo/build/Lib/distutils/unixccompiler.py", line 117, in _compile
self.spawn(compiler_so + cc_args + [src, '-o', obj] +
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto-pgo/build/Lib/distutils/ccompiler.py", line 910, in spawn
spawn(cmd, dry_run=self.dry_run)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto-pgo/build/Lib/distutils/spawn.py", line 81, in spawn
raise DistutilsExecError(
distutils.errors.DistutilsExecError: command '/usr/bin/gcc' failed with exit code 1
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto-pgo/build/Lib/distutils/tests/test_build_ext.py", line 76, in test_build_ext
cmd.run()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto-pgo/build/Lib/distutils/command/build_ext.py", line 340, in run
self.build_extensions()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto-pgo/build/Lib/distutils/command/build_ext.py", line 447, in build_extensions
self._build_extensions_parallel()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto-pgo/build/Lib/distutils/command/build_ext.py", line 469, in _build_extensions_parallel
fut.result()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto-pgo/build/Lib/concurrent/futures/_base.py", line 440, in result
return self.__get_result()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto-pgo/build/Lib/concurrent/futures/_base.py", line 389, in __get_result
raise self._exception
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto-pgo/build/Lib/concurrent/futures/thread.py", line 52, in run
result = self.fn(*self.args, **self.kwargs)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto-pgo/build/Lib/distutils/command/build_ext.py", line 529, in build_extension
objects = self.compiler.compile(sources,
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto-pgo/build/Lib/distutils/ccompiler.py", line 574, in compile
self._compile(obj, src, ext, cc_args, extra_postargs, pp_opts)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto-pgo/build/Lib/distutils/unixccompiler.py", line 120, in _compile
raise CompileError(msg)
distutils.errors.CompileError: command '/usr/bin/gcc' failed with exit code 1
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto-pgo/build/Lib/distutils/tests/test_install.py", line 220, in test_record_extensions
cmd.run()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto-pgo/build/Lib/distutils/command/install.py", line 546, in run
self.run_command('build')
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto-pgo/build/Lib/distutils/cmd.py", line 313, in run_command
self.distribution.run_command(command)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto-pgo/build/Lib/distutils/dist.py", line 985, in run_command
cmd_obj.run()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto-pgo/build/Lib/distutils/command/build.py", line 135, in run
self.run_command(cmd_name)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto-pgo/build/Lib/distutils/cmd.py", line 313, in run_command
self.distribution.run_command(command)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto-pgo/build/Lib/distutils/dist.py", line 985, in run_command
cmd_obj.run()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto-pgo/build/Lib/distutils/command/build_ext.py", line 340, in run
self.build_extensions()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto-pgo/build/Lib/distutils/command/build_ext.py", line 449, in build_extensions
self._build_extensions_serial()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto-pgo/build/Lib/distutils/command/build_ext.py", line 474, in _build_extensions_serial
self.build_extension(ext)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto-pgo/build/Lib/distutils/command/build_ext.py", line 529, in build_extension
objects = self.compiler.compile(sources,
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto-pgo/build/Lib/distutils/ccompiler.py", line 574, in compile
self._compile(obj, src, ext, cc_args, extra_postargs, pp_opts)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto-pgo/build/Lib/distutils/unixccompiler.py", line 120, in _compile
raise CompileError(msg)
distutils.errors.CompileError: command '/usr/bin/gcc' failed with exit code 1
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto-pgo/build/Lib/distutils/tests/test_build_ext.py", line 76, in test_build_ext
cmd.run()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto-pgo/build/Lib/distutils/command/build_ext.py", line 340, in run
self.build_extensions()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto-pgo/build/Lib/distutils/command/build_ext.py", line 449, in build_extensions
self._build_extensions_serial()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto-pgo/build/Lib/distutils/command/build_ext.py", line 474, in _build_extensions_serial
self.build_extension(ext)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto-pgo/build/Lib/distutils/command/build_ext.py", line 529, in build_extension
objects = self.compiler.compile(sources,
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto-pgo/build/Lib/distutils/ccompiler.py", line 574, in compile
self._compile(obj, src, ext, cc_args, extra_postargs, pp_opts)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto-pgo/build/Lib/distutils/unixccompiler.py", line 120, in _compile
raise CompileError(msg)
distutils.errors.CompileError: command '/usr/bin/gcc' failed with exit code 1
|
Sorry, something went wrong.
⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️Hi! The buildbot AMD64 RHEL7 LTO 3.x has failed when building commit 2c4928d. What do you need to do:
You can take a look at the buildbot page here: https://buildbot.python.org/all/#builders/103/builds/1044 Failed tests:
Failed subtests:
Summary of the results of the build (if available): == Tests result: FAILURE then FAILURE == 409 tests OK. 10 slowest tests:
1 test failed: 14 tests skipped: 1 re-run test: Total duration: 5 min 52 sec Click to see traceback logsTraceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto/build/Lib/distutils/unixccompiler.py", line 117, in _compile
self.spawn(compiler_so + cc_args + [src, '-o', obj] +
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto/build/Lib/distutils/ccompiler.py", line 910, in spawn
spawn(cmd, dry_run=self.dry_run)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto/build/Lib/distutils/spawn.py", line 81, in spawn
raise DistutilsExecError(
distutils.errors.DistutilsExecError: command '/usr/bin/gcc' failed with exit code 1
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto/build/Lib/distutils/tests/test_install.py", line 220, in test_record_extensions
cmd.run()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto/build/Lib/distutils/command/install.py", line 546, in run
self.run_command('build')
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto/build/Lib/distutils/cmd.py", line 313, in run_command
self.distribution.run_command(command)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto/build/Lib/distutils/dist.py", line 985, in run_command
cmd_obj.run()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto/build/Lib/distutils/command/build.py", line 135, in run
self.run_command(cmd_name)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto/build/Lib/distutils/cmd.py", line 313, in run_command
self.distribution.run_command(command)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto/build/Lib/distutils/dist.py", line 985, in run_command
cmd_obj.run()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto/build/Lib/distutils/command/build_ext.py", line 340, in run
self.build_extensions()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto/build/Lib/distutils/command/build_ext.py", line 449, in build_extensions
self._build_extensions_serial()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto/build/Lib/distutils/command/build_ext.py", line 474, in _build_extensions_serial
self.build_extension(ext)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto/build/Lib/distutils/command/build_ext.py", line 529, in build_extension
objects = self.compiler.compile(sources,
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto/build/Lib/distutils/ccompiler.py", line 574, in compile
self._compile(obj, src, ext, cc_args, extra_postargs, pp_opts)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto/build/Lib/distutils/unixccompiler.py", line 120, in _compile
raise CompileError(msg)
distutils.errors.CompileError: command '/usr/bin/gcc' failed with exit code 1
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto/build/Lib/distutils/tests/test_build_ext.py", line 76, in test_build_ext
cmd.run()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto/build/Lib/distutils/command/build_ext.py", line 340, in run
self.build_extensions()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto/build/Lib/distutils/command/build_ext.py", line 449, in build_extensions
self._build_extensions_serial()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto/build/Lib/distutils/command/build_ext.py", line 474, in _build_extensions_serial
self.build_extension(ext)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto/build/Lib/distutils/command/build_ext.py", line 529, in build_extension
objects = self.compiler.compile(sources,
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto/build/Lib/distutils/ccompiler.py", line 574, in compile
self._compile(obj, src, ext, cc_args, extra_postargs, pp_opts)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto/build/Lib/distutils/unixccompiler.py", line 120, in _compile
raise CompileError(msg)
distutils.errors.CompileError: command '/usr/bin/gcc' failed with exit code 1
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto/build/Lib/distutils/tests/test_build_ext.py", line 76, in test_build_ext
cmd.run()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto/build/Lib/distutils/command/build_ext.py", line 340, in run
self.build_extensions()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto/build/Lib/distutils/command/build_ext.py", line 447, in build_extensions
self._build_extensions_parallel()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto/build/Lib/distutils/command/build_ext.py", line 469, in _build_extensions_parallel
fut.result()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto/build/Lib/concurrent/futures/_base.py", line 440, in result
return self.__get_result()
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto/build/Lib/concurrent/futures/_base.py", line 389, in __get_result
raise self._exception
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto/build/Lib/concurrent/futures/thread.py", line 52, in run
result = self.fn(*self.args, **self.kwargs)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto/build/Lib/distutils/command/build_ext.py", line 529, in build_extension
objects = self.compiler.compile(sources,
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto/build/Lib/distutils/ccompiler.py", line 574, in compile
self._compile(obj, src, ext, cc_args, extra_postargs, pp_opts)
File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto/build/Lib/distutils/unixccompiler.py", line 120, in _compile
raise CompileError(msg)
distutils.errors.CompileError: command '/usr/bin/gcc' failed with exit code 1
|
Sorry, something went wrong.
Co-authored-by: Kyle Stanley <aeros167@gmail.com> Co-authored-by: Victor Stinner <vstinner@python.org> (cherry picked from commit 2c4928d)
https://bugs.python.org/issue36346