Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gh-118486: Support mkdir(mode=0o700) on Windows #118488

Merged
merged 3 commits into from
May 2, 2024
Merged

Conversation

zooba
Copy link
Member

@zooba zooba commented May 1, 2024

Lib/test/test_tempfile.py Show resolved Hide resolved
Modules/posixmodule.c Outdated Show resolved Hide resolved
Modules/posixmodule.c Show resolved Hide resolved
Lib/test/test_os.py Outdated Show resolved Hide resolved
Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
data->ea[0].grfInheritance = SUB_CONTAINERS_AND_OBJECTS_INHERIT;
data->ea[0].Trustee.TrusteeForm = TRUSTEE_IS_NAME;
data->ea[0].Trustee.TrusteeType = TRUSTEE_IS_ALIAS;
data->ea[0].Trustee.ptstrName = L"CURRENT_USER";
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What about the security issue for an elevated administrator? Say you're an elevated administrator with the account name "SpamAdmin". If you create a directory that you should only be able to access when elevated (e.g. in another user's profile), then no permissions should be granted to the "SpamAdmin" account, which would allow access even when not elevated.

Since administrator access tokens use the "Administrators" group as the owner of new objects, a generic approach would be to assign full control to the "OWNER_RIGHTS" SID (S-1-3-4)1 instead of the current user. Otherwise the implementation has to omit the entry for the current user if the user is an elevated administrator.

Footnotes

  1. Note there are significant differences in what ownership means and how it's handled on POSIX vs Windows. On POSIX, the owner must be a user, not a group, and the owner permissions apply exactly to the owner, even if an ACL is present. On Windows, the owner can be a group. Also, access is cumulative across the mandatory label and entries in the discretionary ACL. A user that's an effective owner could match other allow or deny entries in the discretionary ACL, and thus have a different set of rights than the explicit owner-rights. This isn't a problem given the simple ACL that's being set for 0o700.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That's interesting, I hadn't come across OWNER_RIGHTS before (seems it's newer than the rest). It doesn't appear to be a supported alias, unfortunately.

I think it's good to know about, but as you say in the footnote, CURRENT_USER is closer to emulating POSIX semantics (for better or worse). If we/someone produce a library with full-featured ACL support, being able to arrange that nuance would be worth supporting, but I think this sufficiently improves our "best effort" (by imitating the ACLs that would be applied to any directory in the user profile, but for directories outside of the profile as well).

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If a user wouldn't be allowed to create the directory without elevating, they shouldn't have access to it when not elevated. That's why the owner is set to the Administrators group in this case, for inherited "CREATOR_OWNER" permissions. Since we're bypassing inheritance, the onus is on us to make this secure. That's addressed by omitting the "CURRENT_USER" entry if the current user is an elevated administrator. Or by using "OWNER_RIGHTS".

That's interesting, I hadn't come across OWNER_RIGHTS before (seems it's newer than the rest). It doesn't appear to be a supported alias, unfortunately.

It's been around for a long time; I think since Windows 7 (2008). One would use CreateWellKnownSid(WinCreatorOwnerRightsSid, ...) and set an entry for TRUSTEE_IS_SID.

@zooba zooba merged commit 81939da into python:main May 2, 2024
36 checks passed
@zooba zooba deleted the gh-118486 branch May 2, 2024 14:20
@bedevere-app
Copy link

bedevere-app bot commented May 7, 2024

GH-118740 is a backport of this pull request to the 3.10 branch.

@bedevere-app
Copy link

bedevere-app bot commented May 7, 2024

GH-118738 is a backport of this pull request to the 3.12 branch.

@bedevere-app
Copy link

bedevere-app bot commented May 7, 2024

GH-118739 is a backport of this pull request to the 3.11 branch.

@bedevere-app
Copy link

bedevere-app bot commented May 7, 2024

GH-118741 is a backport of this pull request to the 3.9 branch.

@bedevere-app
Copy link

bedevere-app bot commented May 7, 2024

GH-118742 is a backport of this pull request to the 3.8 branch.

SonicField pushed a commit to SonicField/cpython that referenced this pull request May 8, 2024
ambv added a commit that referenced this pull request May 24, 2024
ambv added a commit that referenced this pull request May 24, 2024
ambv added a commit that referenced this pull request May 24, 2024
@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot AMD64 FreeBSD 3.10 has failed when building commit c8f868d.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/1221/builds/27) and take a look at the build logs.
  4. Check if the failure is related to this commit (c8f868d) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/1221/builds/27

Failed tests:

  • test_tarfile
  • test_cmd_line_script

Failed subtests:

  • test_script_as_dev_fd - test.test_cmd_line_script.CmdLineTest
  • test_modes - test.test_tarfile.TestExtractionFilters

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

409 tests OK.

10 slowest tests:

  • test_concurrent_futures: 2 min 14 sec
  • test_multiprocessing_spawn: 1 min 28 sec
  • test_multiprocessing_forkserver: 1 min 16 sec
  • test_multiprocessing_fork: 1 min 9 sec
  • test_signal: 46.4 sec
  • test_asyncio: 42.4 sec
  • test_capi: 32.7 sec
  • test_io: 32.5 sec
  • test_pydoc: 31.4 sec
  • test_subprocess: 29.8 sec

2 tests failed:
test_cmd_line_script test_tarfile

14 tests skipped:
test_devpoll test_epoll test_ioctl test_msilib test_readline
test_spwd test_startfile test_tix test_tk test_ttk_guionly
test_winconsoleio test_winreg test_winsound test_zipfile64

2 re-run tests:
test_cmd_line_script test_tarfile

Total duration: 6 min 11 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.ware-freebsd/build/Lib/test/test_tarfile.py", line 3658, in test_modes
    os.chmod(tmp_filename, os.stat(tmp_filename).st_mode | stat.S_ISVTX)
OSError: [Errno 79] Inappropriate file type or format: '/buildbot/buildarea/3.10.ware-freebsd/build/build/test_python_95017æ/test_python_worker_97739æ/@test_97739_tmpæ-tardir/tmp.file'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.ware-freebsd/build/Lib/multiprocessing/resource_tracker.py", line 209, in main
    cache[rtype].remove(name)
KeyError: '/psm_90d8edef'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.ware-freebsd/build/Lib/multiprocessing/resource_tracker.py", line 209, in main
    cache[rtype].remove(name)
KeyError: '/psm_1ef63448'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.ware-freebsd/build/Lib/multiprocessing/resource_tracker.py", line 209, in main
    cache[rtype].remove(name)
KeyError: '/psm_2e55de9a'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.ware-freebsd/build/Lib/test/test_tarfile.py", line 3658, in test_modes
    os.chmod(tmp_filename, os.stat(tmp_filename).st_mode | stat.S_ISVTX)
OSError: [Errno 79] Inappropriate file type or format: '/buildbot/buildarea/3.10.ware-freebsd/build/build/test_python_95017æ/@test_95017_tmpæ-tardir/tmp.file'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.ware-freebsd/build/Lib/test/test_cmd_line_script.py", line 752, in test_script_as_dev_fd
    self.assertEqual(out, b"12345678912345678912345\n")
AssertionError: b"/buildbot/buildarea/3.10.ware-freebsd/bu[74 chars]ry\n" != b'12345678912345678912345\n'

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot s390x SLES 3.10 has failed when building commit c8f868d.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/611/builds/1435) and take a look at the build logs.
  4. Check if the failure is related to this commit (c8f868d) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/611/builds/1435

Failed tests:

  • test_zlib

Failed subtests:

  • test_speech128 - test.test_zlib.CompressTestCase
  • test_pair - test.test_zlib.CompressObjectTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

411 tests OK.

10 slowest tests:

  • test_concurrent_futures: 2 min 21 sec
  • test_multiprocessing_spawn: 1 min 37 sec
  • test_multiprocessing_forkserver: 1 min 18 sec
  • test_multiprocessing_fork: 1 min 5 sec
  • test_unparse: 50.9 sec
  • test_signal: 47.4 sec
  • test_asyncio: 44.4 sec
  • test_tokenize: 43.0 sec
  • test_capi: 32.8 sec
  • test_io: 32.8 sec

1 test failed:
test_zlib

13 tests skipped:
test_devpoll test_ioctl test_kqueue test_msilib test_nis
test_startfile test_tix test_tk test_ttk_guionly test_winconsoleio
test_winreg test_winsound test_zipfile64

1 re-run test:
test_zlib

Total duration: 4 min 13 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.10.edelsohn-sles-z/build/Lib/test/test_zlib.py", line 189, in test_speech128
    self.assertEqual(zlib.compress(bytearray(data)), x)
AssertionError: b'x\x[3830 chars]Z\x01+@+\xe0Dh\x05\x9c\n\xad\x80+\xa1\x15p&\xb[110093 chars]\x95' != b'x\x[3830 chars]Z\x01C\x80{Q"\x8d+`\x05\n+\xe0<*U\xc0\xa9h\x15[112365 chars]\x95'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.10.edelsohn-sles-z/build/Lib/test/test_zlib.py", line 246, in test_pair
    self.assertEqual(x1 + x2, datazip)
AssertionError: b'x\x9c\xe2\xf2qt\r\nq\r\xe6\xe2R\x80\x00\x7f\x1d\x[110607 chars]\x95' != b'x\x9c\xe3\xf2qt\r\nq\r\xe6\xe2R\x80\x00\x7f\x1d\x[114866 chars]\x95'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.10.edelsohn-sles-z/build/Lib/multiprocessing/resource_tracker.py", line 209, in main
    cache[rtype].remove(name)
KeyError: '/psm_ae799301'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.10.edelsohn-sles-z/build/Lib/test/test_zlib.py", line 246, in test_pair
    self.assertEqual(x1 + x2, datazip)
AssertionError: b'x\x9c\xe2\xf2qt\r\nq\r\xe6\xe2R\x80\x00\x7f\x1d\x[110757 chars]\x95' != b'x\x9c\xe3\xf2qt\r\nq\r\xe6\xe2R\x80\x00\x7f\x1d\x[116195 chars]\x95'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.10.edelsohn-sles-z/build/Lib/test/test_zlib.py", line 189, in test_speech128
    self.assertEqual(zlib.compress(bytearray(data)), x)
AssertionError: b'x\x[3391 chars]x17\xe3\xa8\x80a\x8eA\xaf\x80\x0bpT\xc0\xe8\xb[111997 chars]\x95' != b'x\x[3391 chars]x17\xa3U\xc0\xb0\n\x18\xe6\x18\xf4\n\xb8\x00G\[111475 chars]\x95'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.10.edelsohn-sles-z/build/Lib/multiprocessing/resource_tracker.py", line 209, in main
    cache[rtype].remove(name)
KeyError: '/psm_98967963'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.10.edelsohn-sles-z/build/Lib/multiprocessing/resource_tracker.py", line 209, in main
    cache[rtype].remove(name)
KeyError: '/psm_e1d4c4dc'

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot AMD64 FreeBSD14 3.10 has failed when building commit c8f868d.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/1231/builds/22) and take a look at the build logs.
  4. Check if the failure is related to this commit (c8f868d) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/1231/builds/22

Failed tests:

  • test_tarfile
  • test_cmd_line_script

Failed subtests:

  • test_script_as_dev_fd - test.test_cmd_line_script.CmdLineTest
  • test_modes - test.test_tarfile.TestExtractionFilters

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

406 tests OK.

10 slowest tests:

  • test_concurrent_futures: 2 min 29 sec
  • test_multiprocessing_spawn: 2 min 13 sec
  • test_multiprocessing_forkserver: 1 min 39 sec
  • test_multiprocessing_fork: 1 min 30 sec
  • test_unparse: 1 min 28 sec
  • test_asyncio: 1 min 21 sec
  • test_tokenize: 1 min 10 sec
  • test_subprocess: 57.8 sec
  • test_lib2to3: 55.7 sec
  • test_capi: 54.2 sec

2 tests failed:
test_cmd_line_script test_tarfile

17 tests skipped:
test_dbm_gnu test_devpoll test_epoll test_gdb test_ioctl
test_msilib test_readline test_spwd test_sqlite test_startfile
test_tix test_tk test_ttk_guionly test_winconsoleio test_winreg
test_winsound test_zipfile64

2 re-run tests:
test_cmd_line_script test_tarfile

Total duration: 8 min 47 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.10.opsec-fbsd14/build/Lib/multiprocessing/resource_tracker.py", line 209, in main
    cache[rtype].remove(name)
KeyError: '/psm_ff07b133'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.10.opsec-fbsd14/build/Lib/multiprocessing/resource_tracker.py", line 209, in main
    cache[rtype].remove(name)
KeyError: '/psm_5bc3657e'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.10.opsec-fbsd14/build/Lib/test/test_cmd_line_script.py", line 752, in test_script_as_dev_fd
    self.assertEqual(out, b"12345678912345678912345\n")
AssertionError: b"/home/buildbot/buildarea/3.10.opsec-fbsd[79 chars]ry\n" != b'12345678912345678912345\n'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.10.opsec-fbsd14/build/Lib/multiprocessing/resource_tracker.py", line 209, in main
    cache[rtype].remove(name)
KeyError: '/psm_c73792ba'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.10.opsec-fbsd14/build/Lib/test/test_tarfile.py", line 3658, in test_modes
    os.chmod(tmp_filename, os.stat(tmp_filename).st_mode | stat.S_ISVTX)
OSError: [Errno 79] Inappropriate file type or format: '/home/buildbot/buildarea/3.10.opsec-fbsd14/build/build/test_python_95048æ/test_python_worker_1971æ/@test_1971_tmpæ-tardir/tmp.file'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.10.opsec-fbsd14/build/Lib/test/test_tarfile.py", line 3658, in test_modes
    os.chmod(tmp_filename, os.stat(tmp_filename).st_mode | stat.S_ISVTX)
OSError: [Errno 79] Inappropriate file type or format: '/home/buildbot/buildarea/3.10.opsec-fbsd14/build/build/test_python_95048æ/@test_95048_tmpæ-tardir/tmp.file'

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot ARM64 macOS 3.10 has failed when building commit c8f868d.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/724/builds/1157) and take a look at the build logs.
  4. Check if the failure is related to this commit (c8f868d) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/724/builds/1157

Failed tests:

  • test_asyncio

Failed subtests:

  • test_create_ssl_unix_connection - test.test_asyncio.test_events.KqueueEventLoopTests
  • test_create_ssl_unix_connection - test.test_asyncio.test_events.PollEventLoopTests
  • test_create_ssl_connection - test.test_asyncio.test_events.SelectEventLoopTests
  • test_create_ssl_connection - test.test_asyncio.test_events.KqueueEventLoopTests
  • test_create_ssl_connection - test.test_asyncio.test_events.PollEventLoopTests
  • test_create_ssl_unix_connection - test.test_asyncio.test_events.SelectEventLoopTests

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

405 tests OK.

10 slowest tests:

  • test_concurrent_futures: 2 min 54 sec
  • test_multiprocessing_spawn: 2 min 24 sec
  • test_multiprocessing_forkserver: 1 min 47 sec
  • test_ssl: 1 min 44 sec
  • test_unparse: 1 min 34 sec
  • test_tokenize: 1 min 15 sec
  • test_logging: 1 min 12 sec
  • test_asyncio: 1 min 6 sec
  • test_lib2to3: 58.4 sec
  • test_capi: 56.4 sec

1 test failed:
test_asyncio

16 tests skipped:
test_devpoll test_epoll test_gdb test_ioctl test_msilib
test_multiprocessing_fork test_ossaudiodev test_spwd
test_startfile test_tix test_tk test_ttk_guionly test_winconsoleio
test_winreg test_winsound test_zipfile64

1 re-run test:
test_asyncio

Total duration: 8 min 44 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/Users/buildbot/buildarea/3.10.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_asyncio/test_events.py", line 642, in test_create_ssl_connection
    self._test_create_ssl_connection(httpd, create_connection,
  File "/Users/buildbot/buildarea/3.10.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_asyncio/test_events.py", line 630, in _test_create_ssl_connection
    self._basetest_create_ssl_connection(conn_fut, check_sockname,
  File "/Users/buildbot/buildarea/3.10.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_asyncio/test_events.py", line 589, in _basetest_create_ssl_connection
    tr, pr = self.loop.run_until_complete(connection_fut)
  File "/Users/buildbot/buildarea/3.10.pablogsal-macos-m1.macos-with-brew/build/Lib/asyncio/base_events.py", line 649, in run_until_complete
    return future.result()
  File "/Users/buildbot/buildarea/3.10.pablogsal-macos-m1.macos-with-brew/build/Lib/asyncio/base_events.py", line 1103, in create_connection
    transport, protocol = await self._create_connection_transport(
  File "/Users/buildbot/buildarea/3.10.pablogsal-macos-m1.macos-with-brew/build/Lib/asyncio/base_events.py", line 1133, in _create_connection_transport
    await waiter
ConnectionResetError


Traceback (most recent call last):
  File "/Users/buildbot/buildarea/3.10.pablogsal-macos-m1.macos-with-brew/build/Lib/multiprocessing/resource_tracker.py", line 209, in main
    cache[rtype].remove(name)
KeyError: '/psm_482ec8bb'


Traceback (most recent call last):
  File "/Users/buildbot/buildarea/3.10.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_asyncio/test_events.py", line 658, in test_create_ssl_unix_connection
    self._test_create_ssl_connection(httpd, create_connection,
  File "/Users/buildbot/buildarea/3.10.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_asyncio/test_events.py", line 630, in _test_create_ssl_connection
    self._basetest_create_ssl_connection(conn_fut, check_sockname,
  File "/Users/buildbot/buildarea/3.10.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_asyncio/test_events.py", line 589, in _basetest_create_ssl_connection
    tr, pr = self.loop.run_until_complete(connection_fut)
  File "/Users/buildbot/buildarea/3.10.pablogsal-macos-m1.macos-with-brew/build/Lib/asyncio/base_events.py", line 649, in run_until_complete
    return future.result()
  File "/Users/buildbot/buildarea/3.10.pablogsal-macos-m1.macos-with-brew/build/Lib/asyncio/unix_events.py", line 269, in create_unix_connection
    transport, protocol = await self._create_connection_transport(
  File "/Users/buildbot/buildarea/3.10.pablogsal-macos-m1.macos-with-brew/build/Lib/asyncio/base_events.py", line 1133, in _create_connection_transport
    await waiter
ConnectionResetError


Traceback (most recent call last):
  File "/Users/buildbot/buildarea/3.10.pablogsal-macos-m1.macos-with-brew/build/Lib/multiprocessing/resource_tracker.py", line 209, in main
    cache[rtype].remove(name)
KeyError: '/psm_9c606c50'

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot s390x SLES 3.9 has failed when building commit 5130731.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/535/builds/704) and take a look at the build logs.
  4. Check if the failure is related to this commit (5130731) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/535/builds/704

Failed tests:

  • test_zlib

Failed subtests:

  • test_speech128 - test.test_zlib.CompressTestCase
  • test_pair - test.test_zlib.CompressObjectTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

411 tests OK.

10 slowest tests:

  • test_concurrent_futures: 2 min 24 sec
  • test_multiprocessing_spawn: 1 min 35 sec
  • test_multiprocessing_forkserver: 1 min 29 sec
  • test_multiprocessing_fork: 1 min 2 sec
  • test_unparse: 54.0 sec
  • test_tokenize: 49.9 sec
  • test_signal: 48.3 sec
  • test_asyncio: 43.6 sec
  • test_capi: 39.0 sec
  • test_io: 36.5 sec

1 test failed:
test_zlib

13 tests skipped:
test_devpoll test_ioctl test_kqueue test_msilib test_nis
test_startfile test_tix test_tk test_ttk_guionly test_winconsoleio
test_winreg test_winsound test_zipfile64

1 re-run test:
test_zlib

Total duration: 5 min 7 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-sles-z/build/Lib/test/test_zlib.py", line 238, in test_pair
    self.assertEqual(x1 + x2, datazip)
AssertionError: b'x\x9c\xe2\xf2qt\r\nq\r\xe6\xe2R\x80\x00\x7f\x1d\x[99701 chars]\x95' != b'x\x9c\xe3\xf2qt\r\nq\r\xe6\xe2R\x80\x00\x7f\x1d\x[115316 chars]\x95'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-sles-z/build/Lib/multiprocessing/resource_tracker.py", line 201, in main
    cache[rtype].remove(name)
KeyError: '/psm_5d735dec'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-sles-z/build/Lib/multiprocessing/resource_tracker.py", line 201, in main
    cache[rtype].remove(name)
KeyError: '/psm_76f61742'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-sles-z/build/Lib/test/test_zlib.py", line 238, in test_pair
    self.assertEqual(x1 + x2, datazip)
AssertionError: b'x\x9c\xe2\xf2qt\r\nq\r\xe6\xe2R\x80\x00\x7f\x1d\x[99702 chars]\x95' != b'x\x9c\xe3\xf2qt\r\nq\r\xe6\xe2R\x80\x00\x7f\x1d\x[114964 chars]\x95'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-sles-z/build/Lib/test/test_zlib.py", line 181, in test_speech128
    self.assertEqual(zlib.compress(bytearray(data)), x)
AssertionError: b'x\x[2207 chars]\xf9y0m\x8e\x90`LT\xc8\x05\xfaG\xa185\'5\xb9\x[112720 chars]\x95' != b'x\x[2207 chars]\xf9ypm\x90`LT\xc8\x05\xfaG\xa185\'5\xb9\x04\x[112757 chars]\x95'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-sles-z/build/Lib/multiprocessing/resource_tracker.py", line 201, in main
    cache[rtype].remove(name)
KeyError: '/psm_98417457'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-sles-z/build/Lib/test/test_zlib.py", line 181, in test_speech128
    self.assertEqual(zlib.compress(bytearray(data)), x)
AssertionError: b'x\x[4275 chars]d\x80a\xd1\n\xab\x80\xc1r\x19\x89I\x99\xd0\n\x[110702 chars]\x95' != b'x\x[4275 chars]d\x80\xe1\xd1\n\xad\x80\x15\xa0\x15p&\xb4\x02\[111041 chars]\x95'

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot ARM64 macOS 3.9 has failed when building commit 5130731.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/726/builds/427) and take a look at the build logs.
  4. Check if the failure is related to this commit (5130731) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/726/builds/427

Failed tests:

  • test_asyncio

Failed subtests:

  • test_create_ssl_unix_connection - test.test_asyncio.test_events.KqueueEventLoopTests
  • test_create_ssl_unix_connection - test.test_asyncio.test_events.PollEventLoopTests
  • test_create_ssl_connection - test.test_asyncio.test_events.SelectEventLoopTests
  • test_create_ssl_connection - test.test_asyncio.test_events.KqueueEventLoopTests
  • test_create_ssl_connection - test.test_asyncio.test_events.PollEventLoopTests
  • test_create_ssl_unix_connection - test.test_asyncio.test_events.SelectEventLoopTests

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

405 tests OK.

10 slowest tests:

  • test_concurrent_futures: 2 min 58 sec
  • test_multiprocessing_spawn: 2 min 37 sec
  • test_multiprocessing_forkserver: 1 min 53 sec
  • test_unparse: 1 min 35 sec
  • test_tokenize: 1 min 31 sec
  • test_ssl: 1 min 27 sec
  • test_capi: 1 min 14 sec
  • test_asyncio: 1 min 2 sec
  • test_lib2to3: 59.5 sec
  • test_logging: 58.9 sec

1 test failed:
test_asyncio

16 tests skipped:
test_devpoll test_epoll test_gdb test_ioctl test_msilib
test_multiprocessing_fork test_ossaudiodev test_spwd
test_startfile test_tix test_tk test_ttk_guionly test_winconsoleio
test_winreg test_winsound test_zipfile64

1 re-run test:
test_asyncio

Total duration: 8 min 56 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/Users/buildbot/buildarea/3.9.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_asyncio/test_events.py", line 633, in test_create_ssl_unix_connection
    self._test_create_ssl_connection(httpd, create_connection,
  File "/Users/buildbot/buildarea/3.9.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_asyncio/test_events.py", line 605, in _test_create_ssl_connection
    self._basetest_create_ssl_connection(conn_fut, check_sockname,
  File "/Users/buildbot/buildarea/3.9.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_asyncio/test_events.py", line 564, in _basetest_create_ssl_connection
    tr, pr = self.loop.run_until_complete(connection_fut)
  File "/Users/buildbot/buildarea/3.9.pablogsal-macos-m1.macos-with-brew/build/Lib/asyncio/base_events.py", line 647, in run_until_complete
    return future.result()
  File "/Users/buildbot/buildarea/3.9.pablogsal-macos-m1.macos-with-brew/build/Lib/asyncio/unix_events.py", line 258, in create_unix_connection
    transport, protocol = await self._create_connection_transport(
  File "/Users/buildbot/buildarea/3.9.pablogsal-macos-m1.macos-with-brew/build/Lib/asyncio/base_events.py", line 1120, in _create_connection_transport
    await waiter
ConnectionResetError


Traceback (most recent call last):
  File "/Users/buildbot/buildarea/3.9.pablogsal-macos-m1.macos-with-brew/build/Lib/multiprocessing/resource_tracker.py", line 201, in main
    cache[rtype].remove(name)
KeyError: '/psm_e356055e'


Traceback (most recent call last):
  File "/Users/buildbot/buildarea/3.9.pablogsal-macos-m1.macos-with-brew/build/Lib/multiprocessing/resource_tracker.py", line 201, in main
    cache[rtype].remove(name)
KeyError: '/psm_2e5b868e'


Traceback (most recent call last):
  File "/Users/buildbot/buildarea/3.9.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_asyncio/test_events.py", line 617, in test_create_ssl_connection
    self._test_create_ssl_connection(httpd, create_connection,
  File "/Users/buildbot/buildarea/3.9.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_asyncio/test_events.py", line 605, in _test_create_ssl_connection
    self._basetest_create_ssl_connection(conn_fut, check_sockname,
  File "/Users/buildbot/buildarea/3.9.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_asyncio/test_events.py", line 564, in _basetest_create_ssl_connection
    tr, pr = self.loop.run_until_complete(connection_fut)
  File "/Users/buildbot/buildarea/3.9.pablogsal-macos-m1.macos-with-brew/build/Lib/asyncio/base_events.py", line 647, in run_until_complete
    return future.result()
  File "/Users/buildbot/buildarea/3.9.pablogsal-macos-m1.macos-with-brew/build/Lib/asyncio/base_events.py", line 1090, in create_connection
    transport, protocol = await self._create_connection_transport(
  File "/Users/buildbot/buildarea/3.9.pablogsal-macos-m1.macos-with-brew/build/Lib/asyncio/base_events.py", line 1120, in _create_connection_transport
    await waiter
ConnectionResetError

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot AMD64 RHEL8 FIPS Only Blake2 Builtin Hash 3.10 has failed when building commit c8f868d.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/610/builds/1331) and take a look at the build logs.
  4. Check if the failure is related to this commit (c8f868d) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/610/builds/1331

Failed tests:

  • test_socket

Failed subtests:

  • test_hmac_sha1 - test.test_socket.LinuxKernelCryptoAPI

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

412 tests OK.

10 slowest tests:

  • test_gdb: 6 min 23 sec
  • test_concurrent_futures: 2 min 42 sec
  • test_capi: 1 min 59 sec
  • test_multiprocessing_spawn: 1 min 55 sec
  • test_unparse: 1 min 23 sec
  • test_asyncio: 1 min 16 sec
  • test_multiprocessing_forkserver: 1 min 13 sec
  • test_multiprocessing_fork: 1 min 2 sec
  • test_tokenize: 59.1 sec
  • test_lib2to3: 51.7 sec

1 test failed:
test_socket

12 tests skipped:
test_devpoll test_ioctl test_kqueue test_msilib test_startfile
test_tix test_tk test_ttk_guionly test_winconsoleio test_winreg
test_winsound test_zipfile64

1 re-run test:
test_socket

Total duration: 9 min 31 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-fips-x86_64.no-builtin-hashes-except-blake2/build/Lib/test/test_socket.py", line 6300, in test_hmac_sha1
    algo.setsockopt(socket.SOL_ALG, socket.ALG_SET_KEY, b"Jefe")
OSError: [Errno 22] Invalid argument

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot s390x RHEL8 3.10 has failed when building commit c8f868d.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/700/builds/1226) and take a look at the build logs.
  4. Check if the failure is related to this commit (c8f868d) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/700/builds/1226

Failed tests:

  • test_zlib

Failed subtests:

  • test_speech128 - test.test_zlib.CompressTestCase
  • test_pair - test.test_zlib.CompressObjectTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

411 tests OK.

10 slowest tests:

  • test_concurrent_futures: 2 min 24 sec
  • test_multiprocessing_spawn: 1 min 42 sec
  • test_multiprocessing_forkserver: 1 min 19 sec
  • test_multiprocessing_fork: 1 min 4 sec
  • test_gdb: 1 min
  • test_unparse: 51.8 sec
  • test_asyncio: 50.0 sec
  • test_signal: 47.8 sec
  • test_capi: 43.1 sec
  • test_tokenize: 41.6 sec

1 test failed:
test_zlib

13 tests skipped:
test_devpoll test_ioctl test_kqueue test_msilib test_nis
test_startfile test_tix test_tk test_ttk_guionly test_winconsoleio
test_winreg test_winsound test_zipfile64

1 re-run test:
test_zlib

Total duration: 5 min 17 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z/build/Lib/multiprocessing/resource_tracker.py", line 209, in main
    cache[rtype].remove(name)
KeyError: '/psm_f3336a02'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z/build/Lib/test/test_zlib.py", line 189, in test_speech128
    self.assertEqual(zlib.compress(bytearray(data)), x)
AssertionError: b'x\x[3513 chars]\x80\x89\xad\x80\xe1\x9a\xa1\x15p*\xb4\x02N\x8[111080 chars]\x95' != b'x\x[3513 chars]\x80\tU\xc0%8*\xe0Th\x05\x9c\n\xad\x80\xf3\xa0[110422 chars]\x95'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z/build/Lib/multiprocessing/resource_tracker.py", line 209, in main
    cache[rtype].remove(name)
KeyError: '/psm_8e38e675'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z/build/Lib/test/test_zlib.py", line 189, in test_speech128
    self.assertEqual(zlib.compress(bytearray(data)), x)
AssertionError: b'x\x[3721 chars]2\xce\x84V\xc0\n\xd0\n8\x15Z\x01\xa7C+`\x05h\x[111973 chars]\x95' != b'x\x[3721 chars]2\xceD\xab\x80\xd1+`\x052+`\x05:U\xc0\n\x14V\x[109770 chars]\x95'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z/build/Lib/test/test_zlib.py", line 246, in test_pair
    self.assertEqual(x1 + x2, datazip)
AssertionError: b'x\x9c\xe2\xf2qt\r\nq\r\xe6\xe2R\x80\x00\x7f\x1d\x[109716 chars]\x95' != b'x\x9c\xe3\xf2qt\r\nq\r\xe6\xe2R\x80\x00\x7f\x1d\x[113935 chars]\x95'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z/build/Lib/multiprocessing/resource_tracker.py", line 209, in main
    cache[rtype].remove(name)
KeyError: '/psm_60ad4ad8'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z/build/Lib/test/test_zlib.py", line 246, in test_pair
    self.assertEqual(x1 + x2, datazip)
AssertionError: b'x\x9c\xe2\xf2qt\r\nq\r\xe6\xe2R\x80\x00\x7f\x1d\x[109372 chars]\x95' != b'x\x9c\xe3\xf2qt\r\nq\r\xe6\xe2R\x80\x00\x7f\x1d\x[113491 chars]\x95'

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot aarch64 Fedora Stable Clang 3.10 has failed when building commit c8f868d.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/635/builds/1100) and take a look at the build logs.
  4. Check if the failure is related to this commit (c8f868d) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/635/builds/1100

Failed tests:

  • test_zlib

Failed subtests:

  • test_flushes - test.test_zlib.CompressObjectTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

412 tests OK.

10 slowest tests:

  • test_unparse: 3 min 51 sec
  • test_multiprocessing_spawn: 3 min 42 sec
  • test_tokenize: 3 min 1 sec
  • test_concurrent_futures: 2 min 59 sec
  • test_lib2to3: 2 min 21 sec
  • test_asyncio: 2 min 4 sec
  • test_unicodedata: 2 min 4 sec
  • test_capi: 2 min
  • test_multiprocessing_forkserver: 1 min 47 sec
  • test_multiprocessing_fork: 1 min 31 sec

1 test failed:
test_zlib

12 tests skipped:
test_devpoll test_ioctl test_kqueue test_msilib test_startfile
test_tix test_tk test_ttk_guionly test_winconsoleio test_winreg
test_winsound test_zipfile64

1 re-run test:
test_zlib

Total duration: 4 min 23 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.10.cstratak-fedora-stable-aarch64.clang/build/Lib/test/test_zlib.py", line 448, in test_flushes
    ver = tuple(int(v) for v in zlib.ZLIB_RUNTIME_VERSION.split('.'))
  File "/home/buildbot/buildarea/3.10.cstratak-fedora-stable-aarch64.clang/build/Lib/test/test_zlib.py", line 448, in <genexpr>
    ver = tuple(int(v) for v in zlib.ZLIB_RUNTIME_VERSION.split('.'))
ValueError: invalid literal for int() with base 10: 'zlib-ng'

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot s390x RHEL8 LTO + PGO 3.9 has failed when building commit 5130731.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/436/builds/619) and take a look at the build logs.
  4. Check if the failure is related to this commit (5130731) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/436/builds/619

Failed tests:

  • test_zlib

Failed subtests:

  • test_speech128 - test.test_zlib.CompressTestCase
  • test_pair - test.test_zlib.CompressObjectTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

410 tests OK.

10 slowest tests:

  • test_concurrent_futures: 2 min 25 sec
  • test_multiprocessing_spawn: 1 min 24 sec
  • test_multiprocessing_forkserver: 1 min 10 sec
  • test_multiprocessing_fork: 1 min 3 sec
  • test_signal: 47.1 sec
  • test_asyncio: 37.4 sec
  • test_io: 34.2 sec
  • test_imaplib: 31.8 sec
  • test_pydoc: 30.8 sec
  • test_xmlrpc: 27.2 sec

1 test failed:
test_zlib

14 tests skipped:
test_devpoll test_gdb test_ioctl test_kqueue test_msilib test_nis
test_startfile test_tix test_tk test_ttk_guionly test_winconsoleio
test_winreg test_winsound test_zipfile64

1 re-run test:
test_zlib

Total duration: 3 min 6 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-rhel8-z.lto-pgo/build/Lib/multiprocessing/resource_tracker.py", line 201, in main
    cache[rtype].remove(name)
KeyError: '/psm_cafcc750'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-rhel8-z.lto-pgo/build/Lib/test/test_zlib.py", line 181, in test_speech128
    self.assertEqual(zlib.compress(bytearray(data)), x)
AssertionError: b'x\x[3434 chars]\xb1Jl\x05\\D\xa0\x02V P\x01\xc3\xe3\x01Z\x01\[111767 chars]\x95' != b'x\x[3434 chars]\xb1Jj\x05\x0c\xd3\x04J\n\xe5\x99y)\xb0\nX\x01[111020 chars]\x95'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-rhel8-z.lto-pgo/build/Lib/test/test_zlib.py", line 238, in test_pair
    self.assertEqual(x1 + x2, datazip)
AssertionError: b'x\x9c\xe2\xf2qt\r\nq\r\xe6\xe2R\x80\x00\x7f\x1d\x[98619 chars]\x95' != b'x\x9c\xe3\xf2qt\r\nq\r\xe6\xe2R\x80\x00\x7f\x1d\x[114669 chars]\x95'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-rhel8-z.lto-pgo/build/Lib/multiprocessing/resource_tracker.py", line 201, in main
    cache[rtype].remove(name)
KeyError: '/psm_25023efc'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-rhel8-z.lto-pgo/build/Lib/multiprocessing/resource_tracker.py", line 201, in main
    cache[rtype].remove(name)
KeyError: '/psm_e31162f2'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-rhel8-z.lto-pgo/build/Lib/test/test_zlib.py", line 181, in test_speech128
    self.assertEqual(zlib.compress(bytearray(data)), x)
AssertionError: b'x\x[2576 chars]I\xf9\xc0\xd8J\xcc\xc9\xb1\x82$\xfe\xcc<\xa0\x[113121 chars]\x95' != b'x\x[2576 chars]I\xf9e\xc0\xe0\xca\xc9\xb1\x82$\xfe\xcc<\xa0\x[112093 chars]\x95'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-rhel8-z.lto-pgo/build/Lib/test/test_zlib.py", line 238, in test_pair
    self.assertEqual(x1 + x2, datazip)
AssertionError: b'x\x9c\xe2\xf2qt\r\nq\r\xe6\xe2R\x80\x00\x7f\x1d\x[100999 chars]\x95' != b'x\x9c\xe3\xf2qt\r\nq\r\xe6\xe2R\x80\x00\x7f\x1d\x[114454 chars]\x95'

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot aarch64 Fedora Stable Clang Installed 3.10 has failed when building commit c8f868d.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/625/builds/1105) and take a look at the build logs.
  4. Check if the failure is related to this commit (c8f868d) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/625/builds/1105

Failed tests:

  • test_zlib

Failed subtests:

  • test_flushes - test.test_zlib.CompressObjectTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

407 tests OK.

1 test failed:
test_zlib

16 tests skipped:
test_asdl_parser test_check_c_globals test_clinic test_devpoll
test_gdb test_ioctl test_kqueue test_msilib test_startfile
test_tix test_tk test_ttk_guionly test_winconsoleio test_winreg
test_winsound test_zipfile64

1 re-run test:
test_zlib

Total duration: 2 min 33 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.10.cstratak-fedora-stable-aarch64.clang-installed/build/target/lib/python3.10/test/test_zlib.py", line 448, in test_flushes
    ver = tuple(int(v) for v in zlib.ZLIB_RUNTIME_VERSION.split('.'))
  File "/home/buildbot/buildarea/3.10.cstratak-fedora-stable-aarch64.clang-installed/build/target/lib/python3.10/test/test_zlib.py", line 448, in <genexpr>
    ver = tuple(int(v) for v in zlib.ZLIB_RUNTIME_VERSION.split('.'))
ValueError: invalid literal for int() with base 10: 'zlib-ng'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.10.cstratak-fedora-stable-aarch64.clang-installed/build/target/lib/python3.10/multiprocessing/resource_tracker.py", line 209, in main
    cache[rtype].remove(name)
KeyError: '/psm_0afb724e'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.10.cstratak-fedora-stable-aarch64.clang-installed/build/target/lib/python3.10/multiprocessing/resource_tracker.py", line 209, in main
    cache[rtype].remove(name)
KeyError: '/psm_d7b1d06f'

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot AMD64 Fedora Stable Clang 3.10 has failed when building commit c8f868d.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/627/builds/1127) and take a look at the build logs.
  4. Check if the failure is related to this commit (c8f868d) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/627/builds/1127

Failed tests:

  • test_zlib

Failed subtests:

  • test_flushes - test.test_zlib.CompressObjectTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

412 tests OK.

10 slowest tests:

  • test_multiprocessing_spawn: 3 min 39 sec
  • test_concurrent_futures: 3 min 31 sec
  • test_unparse: 3 min 5 sec
  • test_tokenize: 2 min 44 sec
  • test_capi: 2 min 24 sec
  • test_asyncio: 2 min 22 sec
  • test_lib2to3: 2 min 15 sec
  • test_multiprocessing_forkserver: 1 min 57 sec
  • test_multiprocessing_fork: 1 min 51 sec
  • test_unicodedata: 1 min 48 sec

1 test failed:
test_zlib

12 tests skipped:
test_devpoll test_ioctl test_kqueue test_msilib test_startfile
test_tix test_tk test_ttk_guionly test_winconsoleio test_winreg
test_winsound test_zipfile64

1 re-run test:
test_zlib

Total duration: 7 min 51 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.10.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zlib.py", line 448, in test_flushes
    ver = tuple(int(v) for v in zlib.ZLIB_RUNTIME_VERSION.split('.'))
  File "/home/buildbot/buildarea/3.10.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zlib.py", line 448, in <genexpr>
    ver = tuple(int(v) for v in zlib.ZLIB_RUNTIME_VERSION.split('.'))
ValueError: invalid literal for int() with base 10: 'zlib-ng'

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot s390x RHEL8 LTO 3.9 has failed when building commit 5130731.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/281/builds/619) and take a look at the build logs.
  4. Check if the failure is related to this commit (5130731) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/281/builds/619

Failed tests:

  • test_zlib

Failed subtests:

  • test_speech128 - test.test_zlib.CompressTestCase
  • test_pair - test.test_zlib.CompressObjectTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

411 tests OK.

10 slowest tests:

  • test_concurrent_futures: 2 min 24 sec
  • test_multiprocessing_spawn: 1 min 24 sec
  • test_multiprocessing_forkserver: 1 min 15 sec
  • test_gdb: 1 min 14 sec
  • test_multiprocessing_fork: 1 min 4 sec
  • test_signal: 47.3 sec
  • test_asyncio: 38.0 sec
  • test_io: 34.9 sec
  • test_imaplib: 31.8 sec
  • test_pydoc: 30.9 sec

1 test failed:
test_zlib

13 tests skipped:
test_devpoll test_ioctl test_kqueue test_msilib test_nis
test_startfile test_tix test_tk test_ttk_guionly test_winconsoleio
test_winreg test_winsound test_zipfile64

1 re-run test:
test_zlib

Total duration: 4 min 30 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-rhel8-z.lto/build/Lib/test/test_zlib.py", line 238, in test_pair
    self.assertEqual(x1 + x2, datazip)
AssertionError: b'x\x9c\xe2\xf2qt\r\nq\r\xe6\xe2R\x80\x00\x7f\x1d\x[99395 chars]\x95' != b'x\x9c\xe3\xf2qt\r\nq\r\xe6\xe2R\x80\x00\x7f\x1d\x[115832 chars]\x95'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-rhel8-z.lto/build/Lib/multiprocessing/resource_tracker.py", line 201, in main
    cache[rtype].remove(name)
KeyError: '/psm_46501660'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-rhel8-z.lto/build/Lib/test/test_zlib.py", line 181, in test_speech128
    self.assertEqual(zlib.compress(bytearray(data)), x)
AssertionError: b'x\x[3482 chars]x01\xc3*`\xf4\n\x18\x1e\x0f\xd0\n\x98\xd8\n\x1[112017 chars]\x95' != b'x\x[3482 chars]x01\xe3\xaa\x80\xe1\xf1\x00\xad\x80\x89\xad\x8[111834 chars]\x95'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-rhel8-z.lto/build/Lib/test/test_zlib.py", line 181, in test_speech128
    self.assertEqual(zlib.compress(bytearray(data)), x)
AssertionError: b'x\x[3514 chars]x80\x89\xad\x80\xe1\x9a\xa1\x15p*\xb4\x02N\x85[110762 chars]\x95' != b'x\x[3514 chars]x80\xd1+`\\\x150\\3\xb4\x02N\x85V\xc0\xa9\xd0\[112318 chars]\x95'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-rhel8-z.lto/build/Lib/test/test_zlib.py", line 238, in test_pair
    self.assertEqual(x1 + x2, datazip)
AssertionError: b'x\x9c\xe2\xf2qt\r\nq\r\xe6\xe2R\x80\x00\x7f\x1d\x[99701 chars]\x95' != b'x\x9c\xe3\xf2qt\r\nq\r\xe6\xe2R\x80\x00\x7f\x1d\x[115316 chars]\x95'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-rhel8-z.lto/build/Lib/multiprocessing/resource_tracker.py", line 201, in main
    cache[rtype].remove(name)
KeyError: '/psm_dadd9312'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-rhel8-z.lto/build/Lib/multiprocessing/resource_tracker.py", line 201, in main
    cache[rtype].remove(name)
KeyError: '/psm_2faea3ce'

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot AMD64 Fedora Stable Clang Installed 3.10 has failed when building commit c8f868d.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/650/builds/1127) and take a look at the build logs.
  4. Check if the failure is related to this commit (c8f868d) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/650/builds/1127

Failed tests:

  • test_zlib

Failed subtests:

  • test_flushes - test.test_zlib.CompressObjectTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

407 tests OK.

1 test failed:
test_zlib

16 tests skipped:
test_asdl_parser test_check_c_globals test_clinic test_devpoll
test_gdb test_ioctl test_kqueue test_msilib test_startfile
test_tix test_tk test_ttk_guionly test_winconsoleio test_winreg
test_winsound test_zipfile64

1 re-run test:
test_zlib

Total duration: 3 min 21 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.10.cstratak-fedora-stable-x86_64.clang-installed/build/target/lib/python3.10/multiprocessing/resource_tracker.py", line 209, in main
    cache[rtype].remove(name)
KeyError: '/psm_d5882d0b'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.10.cstratak-fedora-stable-x86_64.clang-installed/build/target/lib/python3.10/test/test_zlib.py", line 448, in test_flushes
    ver = tuple(int(v) for v in zlib.ZLIB_RUNTIME_VERSION.split('.'))
  File "/home/buildbot/buildarea/3.10.cstratak-fedora-stable-x86_64.clang-installed/build/target/lib/python3.10/test/test_zlib.py", line 448, in <genexpr>
    ver = tuple(int(v) for v in zlib.ZLIB_RUNTIME_VERSION.split('.'))
ValueError: invalid literal for int() with base 10: 'zlib-ng'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.10.cstratak-fedora-stable-x86_64.clang-installed/build/target/lib/python3.10/multiprocessing/resource_tracker.py", line 209, in main
    cache[rtype].remove(name)
KeyError: '/psm_e7383a2f'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.10.cstratak-fedora-stable-x86_64.clang-installed/build/target/lib/python3.10/multiprocessing/resource_tracker.py", line 209, in main
    cache[rtype].remove(name)
KeyError: '/psm_08508ef6'

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot aarch64 Fedora Stable LTO + PGO 3.10 has failed when building commit c8f868d.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/642/builds/1100) and take a look at the build logs.
  4. Check if the failure is related to this commit (c8f868d) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/642/builds/1100

Failed tests:

  • test_zlib

Failed subtests:

  • test_flushes - test.test_zlib.CompressObjectTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

411 tests OK.

10 slowest tests:

  • test_concurrent_futures: 2 min 35 sec
  • test_multiprocessing_spawn: 1 min 45 sec
  • test_multiprocessing_forkserver: 1 min 16 sec
  • test_multiprocessing_fork: 1 min 14 sec
  • test_asyncio: 54.6 sec
  • test_signal: 47.1 sec
  • test_socket: 43.6 sec
  • test_io: 39.6 sec
  • test_pydoc: 31.4 sec
  • test_imaplib: 30.8 sec

1 test failed:
test_zlib

13 tests skipped:
test_devpoll test_gdb test_ioctl test_kqueue test_msilib
test_startfile test_tix test_tk test_ttk_guionly test_winconsoleio
test_winreg test_winsound test_zipfile64

1 re-run test:
test_zlib

Total duration: 2 min 43 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.10.cstratak-fedora-stable-aarch64.lto-pgo/build/Lib/multiprocessing/resource_tracker.py", line 209, in main
    cache[rtype].remove(name)
KeyError: '/psm_fe480681'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.10.cstratak-fedora-stable-aarch64.lto-pgo/build/Lib/multiprocessing/resource_tracker.py", line 209, in main
    cache[rtype].remove(name)
KeyError: '/psm_76d9c0a5'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.10.cstratak-fedora-stable-aarch64.lto-pgo/build/Lib/test/test_zlib.py", line 448, in test_flushes
    ver = tuple(int(v) for v in zlib.ZLIB_RUNTIME_VERSION.split('.'))
  File "/home/buildbot/buildarea/3.10.cstratak-fedora-stable-aarch64.lto-pgo/build/Lib/test/test_zlib.py", line 448, in <genexpr>
    ver = tuple(int(v) for v in zlib.ZLIB_RUNTIME_VERSION.split('.'))
ValueError: invalid literal for int() with base 10: 'zlib-ng'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.10.cstratak-fedora-stable-aarch64.lto-pgo/build/Lib/multiprocessing/resource_tracker.py", line 209, in main
    cache[rtype].remove(name)
KeyError: '/psm_8b11e946'

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot AMD64 Fedora Stable LTO + PGO 3.10 has failed when building commit c8f868d.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/651/builds/1129) and take a look at the build logs.
  4. Check if the failure is related to this commit (c8f868d) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/651/builds/1129

Failed tests:

  • test_zlib

Failed subtests:

  • test_flushes - test.test_zlib.CompressObjectTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

411 tests OK.

10 slowest tests:

  • test_concurrent_futures: 2 min 19 sec
  • test_multiprocessing_spawn: 1 min 32 sec
  • test_multiprocessing_forkserver: 1 min 10 sec
  • test_multiprocessing_fork: 1 min 7 sec
  • test_asyncio: 53.6 sec
  • test_signal: 47.0 sec
  • test_io: 39.0 sec
  • test_socket: 38.7 sec
  • test_pydoc: 31.2 sec
  • test_imaplib: 30.3 sec

1 test failed:
test_zlib

13 tests skipped:
test_devpoll test_gdb test_ioctl test_kqueue test_msilib
test_startfile test_tix test_tk test_ttk_guionly test_winconsoleio
test_winreg test_winsound test_zipfile64

1 re-run test:
test_zlib

Total duration: 2 min 56 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.10.cstratak-fedora-stable-x86_64.lto-pgo/build/Lib/test/test_zlib.py", line 448, in test_flushes
    ver = tuple(int(v) for v in zlib.ZLIB_RUNTIME_VERSION.split('.'))
  File "/home/buildbot/buildarea/3.10.cstratak-fedora-stable-x86_64.lto-pgo/build/Lib/test/test_zlib.py", line 448, in <genexpr>
    ver = tuple(int(v) for v in zlib.ZLIB_RUNTIME_VERSION.split('.'))
ValueError: invalid literal for int() with base 10: 'zlib-ng'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.10.cstratak-fedora-stable-x86_64.lto-pgo/build/Lib/multiprocessing/resource_tracker.py", line 209, in main
    cache[rtype].remove(name)
KeyError: '/psm_fde2d171'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.10.cstratak-fedora-stable-x86_64.lto-pgo/build/Lib/multiprocessing/resource_tracker.py", line 209, in main
    cache[rtype].remove(name)
KeyError: '/psm_3b3ce350'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.10.cstratak-fedora-stable-x86_64.lto-pgo/build/Lib/multiprocessing/resource_tracker.py", line 209, in main
    cache[rtype].remove(name)
KeyError: '/psm_10bad752'

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot aarch64 Fedora Stable LTO 3.10 has failed when building commit c8f868d.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/617/builds/1052) and take a look at the build logs.
  4. Check if the failure is related to this commit (c8f868d) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/617/builds/1052

Failed tests:

  • test_zlib

Failed subtests:

  • test_flushes - test.test_zlib.CompressObjectTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

412 tests OK.

10 slowest tests:

  • test_concurrent_futures: 2 min 29 sec
  • test_gdb: 1 min 56 sec
  • test_multiprocessing_spawn: 1 min 42 sec
  • test_multiprocessing_forkserver: 1 min 17 sec
  • test_multiprocessing_fork: 1 min 8 sec
  • test_peg_generator: 1 min 5 sec
  • test_asyncio: 54.6 sec
  • test_signal: 46.7 sec
  • test_socket: 44.0 sec
  • test_io: 38.9 sec

1 test failed:
test_zlib

12 tests skipped:
test_devpoll test_ioctl test_kqueue test_msilib test_startfile
test_tix test_tk test_ttk_guionly test_winconsoleio test_winreg
test_winsound test_zipfile64

1 re-run test:
test_zlib

Total duration: 2 min 34 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.10.cstratak-fedora-stable-aarch64.lto/build/Lib/test/test_zlib.py", line 448, in test_flushes
    ver = tuple(int(v) for v in zlib.ZLIB_RUNTIME_VERSION.split('.'))
  File "/home/buildbot/buildarea/3.10.cstratak-fedora-stable-aarch64.lto/build/Lib/test/test_zlib.py", line 448, in <genexpr>
    ver = tuple(int(v) for v in zlib.ZLIB_RUNTIME_VERSION.split('.'))
ValueError: invalid literal for int() with base 10: 'zlib-ng'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.10.cstratak-fedora-stable-aarch64.lto/build/Lib/multiprocessing/resource_tracker.py", line 209, in main
    cache[rtype].remove(name)
KeyError: '/psm_8e409e71'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.10.cstratak-fedora-stable-aarch64.lto/build/Lib/multiprocessing/resource_tracker.py", line 209, in main
    cache[rtype].remove(name)
KeyError: '/psm_75e15f37'

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot AMD64 Fedora Stable LTO 3.10 has failed when building commit c8f868d.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/624/builds/1060) and take a look at the build logs.
  4. Check if the failure is related to this commit (c8f868d) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/624/builds/1060

Failed tests:

  • test_zlib

Failed subtests:

  • test_flushes - test.test_zlib.CompressObjectTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

412 tests OK.

10 slowest tests:

  • test_concurrent_futures: 2 min 19 sec
  • test_gdb: 1 min 51 sec
  • test_multiprocessing_spawn: 1 min 35 sec
  • test_multiprocessing_forkserver: 1 min 14 sec
  • test_multiprocessing_fork: 1 min 5 sec
  • test_peg_generator: 58.2 sec
  • test_asyncio: 50.7 sec
  • test_signal: 47.0 sec
  • test_socket: 38.8 sec
  • test_io: 38.2 sec

1 test failed:
test_zlib

12 tests skipped:
test_devpoll test_ioctl test_kqueue test_msilib test_startfile
test_tix test_tk test_ttk_guionly test_winconsoleio test_winreg
test_winsound test_zipfile64

1 re-run test:
test_zlib

Total duration: 3 min 24 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.10.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zlib.py", line 448, in test_flushes
    ver = tuple(int(v) for v in zlib.ZLIB_RUNTIME_VERSION.split('.'))
  File "/home/buildbot/buildarea/3.10.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zlib.py", line 448, in <genexpr>
    ver = tuple(int(v) for v in zlib.ZLIB_RUNTIME_VERSION.split('.'))
ValueError: invalid literal for int() with base 10: 'zlib-ng'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.10.cstratak-fedora-stable-x86_64.lto/build/Lib/multiprocessing/resource_tracker.py", line 209, in main
    cache[rtype].remove(name)
KeyError: '/psm_a4cd983a'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.10.cstratak-fedora-stable-x86_64.lto/build/Lib/multiprocessing/resource_tracker.py", line 209, in main
    cache[rtype].remove(name)
KeyError: '/psm_b307e308'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.10.cstratak-fedora-stable-x86_64.lto/build/Lib/multiprocessing/resource_tracker.py", line 209, in main
    cache[rtype].remove(name)
KeyError: '/psm_b8b236db'

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot aarch64 Fedora Stable 3.9 has failed when building commit 5130731.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/12/builds/558) and take a look at the build logs.
  4. Check if the failure is related to this commit (5130731) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/12/builds/558

Failed tests:

  • test_zlib

Failed subtests:

  • test_flushes - test.test_zlib.CompressObjectTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

412 tests OK.

10 slowest tests:

  • test_gdb: 2 min 53 sec
  • test_concurrent_futures: 2 min 43 sec
  • test_multiprocessing_spawn: 2 min 21 sec
  • test_asyncio: 2 min 7 sec
  • test_unparse: 1 min 53 sec
  • test_multiprocessing_forkserver: 1 min 32 sec
  • test_tokenize: 1 min 24 sec
  • test_capi: 1 min 19 sec
  • test_multiprocessing_fork: 1 min 18 sec
  • test_lib2to3: 1 min 1 sec

1 test failed:
test_zlib

12 tests skipped:
test_devpoll test_ioctl test_kqueue test_msilib test_startfile
test_tix test_tk test_ttk_guionly test_winconsoleio test_winreg
test_winsound test_zipfile64

1 re-run test:
test_zlib

Total duration: 3 min 14 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.9.cstratak-fedora-stable-aarch64/build/Lib/multiprocessing/resource_tracker.py", line 201, in main
    cache[rtype].remove(name)
KeyError: '/psm_9226bfb4'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.9.cstratak-fedora-stable-aarch64/build/Lib/test/test_zlib.py", line 440, in test_flushes
    ver = tuple(int(v) for v in zlib.ZLIB_RUNTIME_VERSION.split('.'))
  File "/home/buildbot/buildarea/3.9.cstratak-fedora-stable-aarch64/build/Lib/test/test_zlib.py", line 440, in <genexpr>
    ver = tuple(int(v) for v in zlib.ZLIB_RUNTIME_VERSION.split('.'))
ValueError: invalid literal for int() with base 10: 'zlib-ng'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.9.cstratak-fedora-stable-aarch64/build/Lib/multiprocessing/resource_tracker.py", line 201, in main
    cache[rtype].remove(name)
KeyError: '/psm_6ae1a1bb'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.9.cstratak-fedora-stable-aarch64/build/Lib/multiprocessing/resource_tracker.py", line 201, in main
    cache[rtype].remove(name)
KeyError: '/psm_a79feda4'

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot aarch64 Fedora Stable Clang 3.9 has failed when building commit 5130731.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/175/builds/555) and take a look at the build logs.
  4. Check if the failure is related to this commit (5130731) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/175/builds/555

Failed tests:

  • test_zlib

Failed subtests:

  • test_flushes - test.test_zlib.CompressObjectTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

412 tests OK.

10 slowest tests:

  • test_tokenize: 3 min 48 sec
  • test_unparse: 3 min 47 sec
  • test_multiprocessing_spawn: 3 min 40 sec
  • test_concurrent_futures: 3 min 14 sec
  • test_lib2to3: 2 min 34 sec
  • test_asyncio: 2 min 14 sec
  • test_capi: 2 min 4 sec
  • test_unicodedata: 2 min
  • test_multiprocessing_forkserver: 1 min 57 sec
  • test_multiprocessing_fork: 1 min 23 sec

1 test failed:
test_zlib

12 tests skipped:
test_devpoll test_ioctl test_kqueue test_msilib test_startfile
test_tix test_tk test_ttk_guionly test_winconsoleio test_winreg
test_winsound test_zipfile64

1 re-run test:
test_zlib

Total duration: 4 min 27 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.9.cstratak-fedora-stable-aarch64.clang/build/Lib/test/test_zlib.py", line 440, in test_flushes
    ver = tuple(int(v) for v in zlib.ZLIB_RUNTIME_VERSION.split('.'))
  File "/home/buildbot/buildarea/3.9.cstratak-fedora-stable-aarch64.clang/build/Lib/test/test_zlib.py", line 440, in <genexpr>
    ver = tuple(int(v) for v in zlib.ZLIB_RUNTIME_VERSION.split('.'))
ValueError: invalid literal for int() with base 10: 'zlib-ng'

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot aarch64 Fedora Stable Clang Installed 3.9 has failed when building commit 5130731.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/128/builds/560) and take a look at the build logs.
  4. Check if the failure is related to this commit (5130731) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/128/builds/560

Failed tests:

  • test_zlib

Failed subtests:

  • test_flushes - test.test_zlib.CompressObjectTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

408 tests OK.

1 test failed:
test_zlib

16 tests skipped:
test_asdl_parser test_check_c_globals test_clinic test_devpoll
test_gdb test_ioctl test_kqueue test_msilib test_startfile
test_tix test_tk test_ttk_guionly test_winconsoleio test_winreg
test_winsound test_zipfile64

1 re-run test:
test_zlib

Total duration: 2 min 27 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.9.cstratak-fedora-stable-aarch64.clang-installed/build/target/lib/python3.9/multiprocessing/resource_tracker.py", line 201, in main
    cache[rtype].remove(name)
KeyError: '/psm_098e1acf'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.9.cstratak-fedora-stable-aarch64.clang-installed/build/target/lib/python3.9/multiprocessing/resource_tracker.py", line 201, in main
    cache[rtype].remove(name)
KeyError: '/psm_67580331'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.9.cstratak-fedora-stable-aarch64.clang-installed/build/target/lib/python3.9/test/test_zlib.py", line 440, in test_flushes
    ver = tuple(int(v) for v in zlib.ZLIB_RUNTIME_VERSION.split('.'))
  File "/home/buildbot/buildarea/3.9.cstratak-fedora-stable-aarch64.clang-installed/build/target/lib/python3.9/test/test_zlib.py", line 440, in <genexpr>
    ver = tuple(int(v) for v in zlib.ZLIB_RUNTIME_VERSION.split('.'))
ValueError: invalid literal for int() with base 10: 'zlib-ng'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.9.cstratak-fedora-stable-aarch64.clang-installed/build/target/lib/python3.9/multiprocessing/resource_tracker.py", line 201, in main
    cache[rtype].remove(name)
KeyError: '/psm_ea718228'

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot AMD64 Fedora Stable 3.9 has failed when building commit 5130731.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/176/builds/583) and take a look at the build logs.
  4. Check if the failure is related to this commit (5130731) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/176/builds/583

Failed tests:

  • test_zlib

Failed subtests:

  • test_flushes - test.test_zlib.CompressObjectTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

412 tests OK.

10 slowest tests:

  • test_gdb: 2 min 53 sec
  • test_concurrent_futures: 2 min 41 sec
  • test_multiprocessing_spawn: 2 min 30 sec
  • test_capi: 1 min 45 sec
  • test_asyncio: 1 min 29 sec
  • test_multiprocessing_forkserver: 1 min 29 sec
  • test_unparse: 1 min 22 sec
  • test_multiprocessing_fork: 1 min 18 sec
  • test_tokenize: 1 min 15 sec
  • test_peg_generator: 57.6 sec

1 test failed:
test_zlib

12 tests skipped:
test_devpoll test_ioctl test_kqueue test_msilib test_startfile
test_tix test_tk test_ttk_guionly test_winconsoleio test_winreg
test_winsound test_zipfile64

1 re-run test:
test_zlib

Total duration: 5 min 44 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.9.cstratak-fedora-stable-x86_64/build/Lib/multiprocessing/resource_tracker.py", line 201, in main
    cache[rtype].remove(name)
KeyError: '/psm_928968d0'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.9.cstratak-fedora-stable-x86_64/build/Lib/test/test_zlib.py", line 440, in test_flushes
    ver = tuple(int(v) for v in zlib.ZLIB_RUNTIME_VERSION.split('.'))
  File "/home/buildbot/buildarea/3.9.cstratak-fedora-stable-x86_64/build/Lib/test/test_zlib.py", line 440, in <genexpr>
    ver = tuple(int(v) for v in zlib.ZLIB_RUNTIME_VERSION.split('.'))
ValueError: invalid literal for int() with base 10: 'zlib-ng'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.9.cstratak-fedora-stable-x86_64/build/Lib/multiprocessing/resource_tracker.py", line 201, in main
    cache[rtype].remove(name)
KeyError: '/psm_17321ccc'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.9.cstratak-fedora-stable-x86_64/build/Lib/multiprocessing/resource_tracker.py", line 201, in main
    cache[rtype].remove(name)
KeyError: '/psm_4ff66867'

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot AMD64 Fedora Stable Clang 3.9 has failed when building commit 5130731.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/365/builds/587) and take a look at the build logs.
  4. Check if the failure is related to this commit (5130731) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/365/builds/587

Failed tests:

  • test_zlib

Failed subtests:

  • test_flushes - test.test_zlib.CompressObjectTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

412 tests OK.

10 slowest tests:

  • test_multiprocessing_spawn: 3 min 37 sec
  • test_concurrent_futures: 2 min 57 sec
  • test_tokenize: 2 min 55 sec
  • test_unparse: 2 min 54 sec
  • test_capi: 2 min 14 sec
  • test_lib2to3: 1 min 52 sec
  • test_asyncio: 1 min 50 sec
  • test_multiprocessing_forkserver: 1 min 46 sec
  • test_multiprocessing_fork: 1 min 39 sec
  • test_unicodedata: 1 min 28 sec

1 test failed:
test_zlib

12 tests skipped:
test_devpoll test_ioctl test_kqueue test_msilib test_startfile
test_tix test_tk test_ttk_guionly test_winconsoleio test_winreg
test_winsound test_zipfile64

1 re-run test:
test_zlib

Total duration: 7 min 16 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.9.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zlib.py", line 440, in test_flushes
    ver = tuple(int(v) for v in zlib.ZLIB_RUNTIME_VERSION.split('.'))
  File "/home/buildbot/buildarea/3.9.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zlib.py", line 440, in <genexpr>
    ver = tuple(int(v) for v in zlib.ZLIB_RUNTIME_VERSION.split('.'))
ValueError: invalid literal for int() with base 10: 'zlib-ng'

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot AMD64 Fedora Stable Clang Installed 3.9 has failed when building commit 5130731.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/17/builds/589) and take a look at the build logs.
  4. Check if the failure is related to this commit (5130731) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/17/builds/589

Failed tests:

  • test_zlib

Failed subtests:

  • test_flushes - test.test_zlib.CompressObjectTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

408 tests OK.

1 test failed:
test_zlib

16 tests skipped:
test_asdl_parser test_check_c_globals test_clinic test_devpoll
test_gdb test_ioctl test_kqueue test_msilib test_startfile
test_tix test_tk test_ttk_guionly test_winconsoleio test_winreg
test_winsound test_zipfile64

1 re-run test:
test_zlib

Total duration: 2 min 59 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.9.cstratak-fedora-stable-x86_64.clang-installed/build/target/lib/python3.9/multiprocessing/resource_tracker.py", line 201, in main
    cache[rtype].remove(name)
KeyError: '/psm_2b333b2d'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.9.cstratak-fedora-stable-x86_64.clang-installed/build/target/lib/python3.9/multiprocessing/resource_tracker.py", line 201, in main
    cache[rtype].remove(name)
KeyError: '/psm_10246e2f'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.9.cstratak-fedora-stable-x86_64.clang-installed/build/target/lib/python3.9/test/test_zlib.py", line 440, in test_flushes
    ver = tuple(int(v) for v in zlib.ZLIB_RUNTIME_VERSION.split('.'))
  File "/home/buildbot/buildarea/3.9.cstratak-fedora-stable-x86_64.clang-installed/build/target/lib/python3.9/test/test_zlib.py", line 440, in <genexpr>
    ver = tuple(int(v) for v in zlib.ZLIB_RUNTIME_VERSION.split('.'))
ValueError: invalid literal for int() with base 10: 'zlib-ng'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.9.cstratak-fedora-stable-x86_64.clang-installed/build/target/lib/python3.9/multiprocessing/resource_tracker.py", line 201, in main
    cache[rtype].remove(name)
KeyError: '/psm_90ff7f3c'

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot AMD64 Fedora Stable LTO + PGO 3.9 has failed when building commit 5130731.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/135/builds/587) and take a look at the build logs.
  4. Check if the failure is related to this commit (5130731) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/135/builds/587

Failed tests:

  • test_zlib

Failed subtests:

  • test_flushes - test.test_zlib.CompressObjectTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

411 tests OK.

10 slowest tests:

  • test_concurrent_futures: 2 min 22 sec
  • test_multiprocessing_spawn: 1 min 32 sec
  • test_multiprocessing_forkserver: 1 min 14 sec
  • test_multiprocessing_fork: 1 min 5 sec
  • test_asyncio: 49.5 sec
  • test_signal: 46.9 sec
  • test_io: 38.7 sec
  • test_socket: 38.5 sec
  • test_pydoc: 31.3 sec
  • test_imaplib: 30.2 sec

1 test failed:
test_zlib

13 tests skipped:
test_devpoll test_gdb test_ioctl test_kqueue test_msilib
test_startfile test_tix test_tk test_ttk_guionly test_winconsoleio
test_winreg test_winsound test_zipfile64

1 re-run test:
test_zlib

Total duration: 2 min 30 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.9.cstratak-fedora-stable-x86_64.lto-pgo/build/Lib/multiprocessing/resource_tracker.py", line 201, in main
    cache[rtype].remove(name)
KeyError: '/psm_787841c5'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.9.cstratak-fedora-stable-x86_64.lto-pgo/build/Lib/test/test_zlib.py", line 440, in test_flushes
    ver = tuple(int(v) for v in zlib.ZLIB_RUNTIME_VERSION.split('.'))
  File "/home/buildbot/buildarea/3.9.cstratak-fedora-stable-x86_64.lto-pgo/build/Lib/test/test_zlib.py", line 440, in <genexpr>
    ver = tuple(int(v) for v in zlib.ZLIB_RUNTIME_VERSION.split('.'))
ValueError: invalid literal for int() with base 10: 'zlib-ng'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.9.cstratak-fedora-stable-x86_64.lto-pgo/build/Lib/multiprocessing/resource_tracker.py", line 201, in main
    cache[rtype].remove(name)
KeyError: '/psm_e785f23f'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.9.cstratak-fedora-stable-x86_64.lto-pgo/build/Lib/multiprocessing/resource_tracker.py", line 201, in main
    cache[rtype].remove(name)
KeyError: '/psm_78c16a01'

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot AMD64 Fedora Stable LTO 3.9 has failed when building commit 5130731.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/426/builds/559) and take a look at the build logs.
  4. Check if the failure is related to this commit (5130731) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/426/builds/559

Failed tests:

  • test_zlib

Failed subtests:

  • test_flushes - test.test_zlib.CompressObjectTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

412 tests OK.

10 slowest tests:

  • test_concurrent_futures: 2 min 23 sec
  • test_gdb: 1 min 46 sec
  • test_multiprocessing_spawn: 1 min 37 sec
  • test_multiprocessing_forkserver: 1 min 17 sec
  • test_multiprocessing_fork: 1 min 7 sec
  • test_asyncio: 51.4 sec
  • test_peg_generator: 50.3 sec
  • test_signal: 47.1 sec
  • test_io: 39.1 sec
  • test_socket: 38.4 sec

1 test failed:
test_zlib

12 tests skipped:
test_devpoll test_ioctl test_kqueue test_msilib test_startfile
test_tix test_tk test_ttk_guionly test_winconsoleio test_winreg
test_winsound test_zipfile64

1 re-run test:
test_zlib

Total duration: 3 min 12 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.9.cstratak-fedora-stable-x86_64.lto/build/Lib/multiprocessing/resource_tracker.py", line 201, in main
    cache[rtype].remove(name)
KeyError: '/psm_34bbf635'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.9.cstratak-fedora-stable-x86_64.lto/build/Lib/multiprocessing/resource_tracker.py", line 201, in main
    cache[rtype].remove(name)
KeyError: '/psm_faff54d0'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.9.cstratak-fedora-stable-x86_64.lto/build/Lib/multiprocessing/resource_tracker.py", line 201, in main
    cache[rtype].remove(name)
KeyError: '/psm_b7d419e5'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.9.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zlib.py", line 440, in test_flushes
    ver = tuple(int(v) for v in zlib.ZLIB_RUNTIME_VERSION.split('.'))
  File "/home/buildbot/buildarea/3.9.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zlib.py", line 440, in <genexpr>
    ver = tuple(int(v) for v in zlib.ZLIB_RUNTIME_VERSION.split('.'))
ValueError: invalid literal for int() with base 10: 'zlib-ng'

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot PPC64LE Fedora Stable 3.10 has failed when building commit c8f868d.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/660/builds/982) and take a look at the build logs.
  4. Check if the failure is related to this commit (c8f868d) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/660/builds/982

Failed tests:

  • test_zlib

Failed subtests:

  • test_flushes - test.test_zlib.CompressObjectTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

412 tests OK.

10 slowest tests:

  • test_gdb: 6 min 48 sec
  • test_unparse: 5 min 33 sec
  • test_tokenize: 4 min 51 sec
  • test_multiprocessing_spawn: 4 min 22 sec
  • test_concurrent_futures: 4 min 1 sec
  • test_lib2to3: 3 min 39 sec
  • test_unicodedata: 3 min 11 sec
  • test_capi: 2 min 33 sec
  • test_peg_generator: 2 min 30 sec
  • test_multiprocessing_forkserver: 2 min 10 sec

1 test failed:
test_zlib

12 tests skipped:
test_devpoll test_ioctl test_kqueue test_msilib test_startfile
test_tix test_tk test_ttk_guionly test_winconsoleio test_winreg
test_winsound test_zipfile64

1 re-run test:
test_zlib

Total duration: 11 min 44 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.10.cstratak-fedora-stable-ppc64le/build/Lib/test/test_zlib.py", line 448, in test_flushes
    ver = tuple(int(v) for v in zlib.ZLIB_RUNTIME_VERSION.split('.'))
  File "/home/buildbot/buildarea/3.10.cstratak-fedora-stable-ppc64le/build/Lib/test/test_zlib.py", line 448, in <genexpr>
    ver = tuple(int(v) for v in zlib.ZLIB_RUNTIME_VERSION.split('.'))
ValueError: invalid literal for int() with base 10: 'zlib-ng'

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot PPC64LE Fedora Stable Clang 3.10 has failed when building commit c8f868d.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/631/builds/985) and take a look at the build logs.
  4. Check if the failure is related to this commit (c8f868d) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/631/builds/985

Failed tests:

  • test_zlib

Failed subtests:

  • test_flushes - test.test_zlib.CompressObjectTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

412 tests OK.

10 slowest tests:

  • test_unparse: 10 min 51 sec
  • test_tokenize: 8 min 39 sec
  • test_multiprocessing_spawn: 7 min 12 sec
  • test_lib2to3: 6 min 46 sec
  • test_unicodedata: 6 min 7 sec
  • test_concurrent_futures: 4 min 46 sec
  • test_capi: 3 min 57 sec
  • test_multiprocessing_forkserver: 3 min 38 sec
  • test_asyncio: 3 min 36 sec
  • test_pickle: 3 min 26 sec

1 test failed:
test_zlib

12 tests skipped:
test_devpoll test_ioctl test_kqueue test_msilib test_startfile
test_tix test_tk test_ttk_guionly test_winconsoleio test_winreg
test_winsound test_zipfile64

1 re-run test:
test_zlib

Total duration: 16 min 40 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.10.cstratak-fedora-stable-ppc64le.clang/build/Lib/test/test_zlib.py", line 448, in test_flushes
    ver = tuple(int(v) for v in zlib.ZLIB_RUNTIME_VERSION.split('.'))
  File "/home/buildbot/buildarea/3.10.cstratak-fedora-stable-ppc64le.clang/build/Lib/test/test_zlib.py", line 448, in <genexpr>
    ver = tuple(int(v) for v in zlib.ZLIB_RUNTIME_VERSION.split('.'))
ValueError: invalid literal for int() with base 10: 'zlib-ng'

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot PPC64LE Fedora Stable Clang Installed 3.10 has failed when building commit c8f868d.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/620/builds/986) and take a look at the build logs.
  4. Check if the failure is related to this commit (c8f868d) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/620/builds/986

Failed tests:

  • test_zlib

Failed subtests:

  • test_flushes - test.test_zlib.CompressObjectTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

407 tests OK.

1 test failed:
test_zlib

16 tests skipped:
test_asdl_parser test_check_c_globals test_clinic test_devpoll
test_gdb test_ioctl test_kqueue test_msilib test_startfile
test_tix test_tk test_ttk_guionly test_winconsoleio test_winreg
test_winsound test_zipfile64

1 re-run test:
test_zlib

Total duration: 4 min 56 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.10.cstratak-fedora-stable-ppc64le.clang-installed/build/target/lib/python3.10/test/test_zlib.py", line 448, in test_flushes
    ver = tuple(int(v) for v in zlib.ZLIB_RUNTIME_VERSION.split('.'))
  File "/home/buildbot/buildarea/3.10.cstratak-fedora-stable-ppc64le.clang-installed/build/target/lib/python3.10/test/test_zlib.py", line 448, in <genexpr>
    ver = tuple(int(v) for v in zlib.ZLIB_RUNTIME_VERSION.split('.'))
ValueError: invalid literal for int() with base 10: 'zlib-ng'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.10.cstratak-fedora-stable-ppc64le.clang-installed/build/target/lib/python3.10/multiprocessing/resource_tracker.py", line 209, in main
    cache[rtype].remove(name)
KeyError: '/psm_178ef26a'

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot AMD64 Arch Linux Usan 3.9 has failed when building commit 5130731.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/715/builds/381) and take a look at the build logs.
  4. Check if the failure is related to this commit (5130731) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/715/builds/381

Summary of the results of the build (if available):

Click to see traceback logs
remote: Enumerating objects: 18, done.        
remote: Counting objects:   5% (1/17)        
remote: Counting objects:  11% (2/17)        
remote: Counting objects:  17% (3/17)        
remote: Counting objects:  23% (4/17)        
remote: Counting objects:  29% (5/17)        
remote: Counting objects:  35% (6/17)        
remote: Counting objects:  41% (7/17)        
remote: Counting objects:  47% (8/17)        
remote: Counting objects:  52% (9/17)        
remote: Counting objects:  58% (10/17)        
remote: Counting objects:  64% (11/17)        
remote: Counting objects:  70% (12/17)        
remote: Counting objects:  76% (13/17)        
remote: Counting objects:  82% (14/17)        
remote: Counting objects:  88% (15/17)        
remote: Counting objects:  94% (16/17)        
remote: Counting objects: 100% (17/17)        
remote: Counting objects: 100% (17/17), done.        
remote: Compressing objects:  10% (1/10)        
remote: Compressing objects:  20% (2/10)        
remote: Compressing objects:  30% (3/10)        
remote: Compressing objects:  40% (4/10)        
remote: Compressing objects:  50% (5/10)        
remote: Compressing objects:  60% (6/10)        
remote: Compressing objects:  70% (7/10)        
remote: Compressing objects:  80% (8/10)        
remote: Compressing objects:  90% (9/10)        
remote: Compressing objects: 100% (10/10)        
remote: Compressing objects: 100% (10/10), done.        
remote: Total 18 (delta 7), reused 8 (delta 7), pack-reused 1        
From https://github.com/python/cpython
 * branch                  3.9        -> FETCH_HEAD
Previous HEAD position was b228655c22 [3.9] gh-114572: Fix locking in cert_store_stats and get_ca_certs (#118109)
HEAD is now at 5130731c9e [3.9] gh-118486: Support mkdir(mode=0o700) on Windows (GH-118488) (GH-118741)
Switched to and reset branch '3.9'

Objects/fileobject.c:245:9: warning: variable 'newlinetypes' set but not used [-Wunused-but-set-variable]
  245 |     int newlinetypes = 0;
      |         ^
1 warning generated.
Objects/dictobject.c:2229:16: warning: variable 'i' set but not used [-Wunused-but-set-variable]
 2229 |     Py_ssize_t i, j;
      |                ^
1 warning generated.
Objects/obmalloc.c:2639:14: warning: variable 'j' set but not used [-Wunused-but-set-variable]
 2639 |         uint j;
      |              ^
1 warning generated.
Python/pytime.c:160:10: warning: implicit conversion from 'time_t' (aka 'long') to 'double' changes value from 9223372036854775807 to 9223372036854775808 [-Wimplicit-const-int-float-conversion]
  160 |     if (!_Py_InIntegralTypeRange(time_t, intpart)) {
      |          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./Include/pymath.h:228:82: note: expanded from macro '_Py_InIntegralTypeRange'
  228 | #define _Py_InIntegralTypeRange(type, v) (_Py_IntegralTypeMin(type) <= v && v <= _Py_IntegralTypeMax(type))
      |                                                                               ~~ ^~~~~~~~~~~~~~~~~~~~~~~~~
./Include/pymath.h:221:124: note: expanded from macro '_Py_IntegralTypeMax'
  221 | #define _Py_IntegralTypeMax(type) ((_Py_IntegralTypeSigned(type)) ? (((((type)1 << (sizeof(type)*CHAR_BIT - 2)) - 1) << 1) + 1) : ~(type)0)
      |                                                                      ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~
Python/pytime.c:213:14: warning: implicit conversion from 'time_t' (aka 'long') to 'double' changes value from 9223372036854775807 to 9223372036854775808 [-Wimplicit-const-int-float-conversion]
  213 |         if (!_Py_InIntegralTypeRange(time_t, intpart)) {
      |              ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./Include/pymath.h:228:82: note: expanded from macro '_Py_InIntegralTypeRange'
  228 | #define _Py_InIntegralTypeRange(type, v) (_Py_IntegralTypeMin(type) <= v && v <= _Py_IntegralTypeMax(type))
      |                                                                               ~~ ^~~~~~~~~~~~~~~~~~~~~~~~~
./Include/pymath.h:221:124: note: expanded from macro '_Py_IntegralTypeMax'
  221 | #define _Py_IntegralTypeMax(type) ((_Py_IntegralTypeSigned(type)) ? (((((type)1 << (sizeof(type)*CHAR_BIT - 2)) - 1) << 1) + 1) : ~(type)0)
      |                                                                      ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~
Python/pytime.c:398:10: warning: implicit conversion from '_PyTime_t' (aka 'long') to 'double' changes value from 9223372036854775807 to 9223372036854775808 [-Wimplicit-const-int-float-conversion]
  398 |     if (!_Py_InIntegralTypeRange(_PyTime_t, d)) {
      |          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./Include/pymath.h:228:82: note: expanded from macro '_Py_InIntegralTypeRange'
  228 | #define _Py_InIntegralTypeRange(type, v) (_Py_IntegralTypeMin(type) <= v && v <= _Py_IntegralTypeMax(type))
      |                                                                               ~~ ^~~~~~~~~~~~~~~~~~~~~~~~~
./Include/pymath.h:221:124: note: expanded from macro '_Py_IntegralTypeMax'
  221 | #define _Py_IntegralTypeMax(type) ((_Py_IntegralTypeSigned(type)) ? (((((type)1 << (sizeof(type)*CHAR_BIT - 2)) - 1) << 1) + 1) : ~(type)0)
      |                                                                      ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~
3 warnings generated.
./Modules/signalmodule.c:663:9: warning: 'siginterrupt' is deprecated: Use sigaction with SA_RESTART instead [-Wdeprecated-declarations]
  663 |     if (siginterrupt(signalnum, flag)<0) {
      |         ^
/usr/include/signal.h:325:3: note: 'siginterrupt' has been explicitly marked deprecated here
  325 |   __attribute_deprecated_msg__ ("Use sigaction with SA_RESTART instead");
      |   ^
/usr/include/sys/cdefs.h:367:19: note: expanded from macro '__attribute_deprecated_msg__'
  367 |          __attribute__ ((__deprecated__ (msg)))
      |                          ^
1 warning generated.
./Modules/timemodule.c:125:13: warning: code will never be executed [-Wunreachable-code]
  125 |             PyErr_SetString(PyExc_OverflowError,
      |             ^~~~~~~~~~~~~~~
1 warning generated.
./Modules/_threadmodule.c:812:20: warning: unused variable 'tstate' [-Wunused-variable]
  812 |     PyThreadState *tstate;
      |                    ^~~~~~
./Modules/_threadmodule.c:1604:19: warning: implicit conversion from '_PyTime_t' (aka 'long') to 'double' changes value from 9223372036854775 to 9223372036854776 [-Wimplicit-const-int-float-conversion]
 1604 |     timeout_max = (_PyTime_t)PY_TIMEOUT_MAX * 1e-6;
      |                   ^~~~~~~~~~~~~~~~~~~~~~~~~ ~
2 warnings generated.
./Modules/_io/bufferedio.c:1075:19: warning: variable 'written' set but not used [-Wunused-but-set-variable]
 1075 |     Py_ssize_t n, written = 0;
      |                   ^
./Modules/_io/bufferedio.c:1854:16: warning: variable 'written' set but not used [-Wunused-but-set-variable]
 1854 |     Py_ssize_t written = 0;
      |                ^
2 warnings generated.
Objects/object.c:2209:5: runtime error: call to function list_dealloc through pointer to incorrect function type 'void (*)(struct _object *)'
/buildbot/buildarea/3.9.pablogsal-arch-x86_64.clang-ubsan/build/Objects/listobject.c:332: note: list_dealloc defined here
SUMMARY: UndefinedBehaviorSanitizer: undefined-behavior Objects/object.c:2209:5 in 
make: *** [Makefile:618: pybuilddir.txt] Error 1

find: ‘build’: No such file or directory
find: ‘build’: No such file or directory
find: ‘build’: No such file or directory
find: ‘build’: No such file or directory
make: [Makefile:1888: clean-retain-profile] Error 1 (ignored)

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot PPC64LE Fedora Stable LTO + PGO 3.10 has failed when building commit c8f868d.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/682/builds/987) and take a look at the build logs.
  4. Check if the failure is related to this commit (c8f868d) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/682/builds/987

Failed tests:

  • test_zlib

Failed subtests:

  • test_flushes - test.test_zlib.CompressObjectTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

411 tests OK.

10 slowest tests:

  • test_concurrent_futures: 2 min 26 sec
  • test_multiprocessing_spawn: 2 min 14 sec
  • test_tokenize: 1 min 36 sec
  • test_unparse: 1 min 27 sec
  • test_multiprocessing_forkserver: 1 min 26 sec
  • test_multiprocessing_fork: 1 min 21 sec
  • test_lib2to3: 1 min 19 sec
  • test_asyncio: 1 min 11 sec
  • test_io: 1 min 6 sec
  • test_signal: 48.4 sec

1 test failed:
test_zlib

13 tests skipped:
test_devpoll test_gdb test_ioctl test_kqueue test_msilib
test_startfile test_tix test_tk test_ttk_guionly test_winconsoleio
test_winreg test_winsound test_zipfile64

1 re-run test:
test_zlib

Total duration: 5 min 24 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.10.cstratak-fedora-stable-ppc64le.lto-pgo/build/Lib/multiprocessing/resource_tracker.py", line 209, in main
    cache[rtype].remove(name)
KeyError: '/psm_a37be991'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.10.cstratak-fedora-stable-ppc64le.lto-pgo/build/Lib/multiprocessing/resource_tracker.py", line 209, in main
    cache[rtype].remove(name)
KeyError: '/psm_0bb8561c'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.10.cstratak-fedora-stable-ppc64le.lto-pgo/build/Lib/test/test_zlib.py", line 448, in test_flushes
    ver = tuple(int(v) for v in zlib.ZLIB_RUNTIME_VERSION.split('.'))
  File "/home/buildbot/buildarea/3.10.cstratak-fedora-stable-ppc64le.lto-pgo/build/Lib/test/test_zlib.py", line 448, in <genexpr>
    ver = tuple(int(v) for v in zlib.ZLIB_RUNTIME_VERSION.split('.'))
ValueError: invalid literal for int() with base 10: 'zlib-ng'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.10.cstratak-fedora-stable-ppc64le.lto-pgo/build/Lib/multiprocessing/resource_tracker.py", line 209, in main
    cache[rtype].remove(name)
KeyError: '/psm_c19efdc1'

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot PPC64LE Fedora Stable LTO 3.10 has failed when building commit c8f868d.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/644/builds/980) and take a look at the build logs.
  4. Check if the failure is related to this commit (c8f868d) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/644/builds/980

Failed tests:

  • test_zlib

Failed subtests:

  • test_flushes - test.test_zlib.CompressObjectTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

412 tests OK.

10 slowest tests:

  • test_gdb: 4 min 22 sec
  • test_concurrent_futures: 2 min 29 sec
  • test_multiprocessing_spawn: 2 min 24 sec
  • test_peg_generator: 2 min 3 sec
  • test_tokenize: 2 min 3 sec
  • test_unparse: 1 min 45 sec
  • test_multiprocessing_forkserver: 1 min 32 sec
  • test_lib2to3: 1 min 27 sec
  • test_multiprocessing_fork: 1 min 14 sec
  • test_asyncio: 1 min 11 sec

1 test failed:
test_zlib

12 tests skipped:
test_devpoll test_ioctl test_kqueue test_msilib test_startfile
test_tix test_tk test_ttk_guionly test_winconsoleio test_winreg
test_winsound test_zipfile64

1 re-run test:
test_zlib

Total duration: 6 min 2 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.10.cstratak-fedora-stable-ppc64le.lto/build/Lib/multiprocessing/resource_tracker.py", line 209, in main
    cache[rtype].remove(name)
KeyError: '/psm_029b2d36'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.10.cstratak-fedora-stable-ppc64le.lto/build/Lib/test/test_zlib.py", line 448, in test_flushes
    ver = tuple(int(v) for v in zlib.ZLIB_RUNTIME_VERSION.split('.'))
  File "/home/buildbot/buildarea/3.10.cstratak-fedora-stable-ppc64le.lto/build/Lib/test/test_zlib.py", line 448, in <genexpr>
    ver = tuple(int(v) for v in zlib.ZLIB_RUNTIME_VERSION.split('.'))
ValueError: invalid literal for int() with base 10: 'zlib-ng'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.10.cstratak-fedora-stable-ppc64le.lto/build/Lib/multiprocessing/resource_tracker.py", line 209, in main
    cache[rtype].remove(name)
KeyError: '/psm_9b63fd77'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.10.cstratak-fedora-stable-ppc64le.lto/build/Lib/multiprocessing/resource_tracker.py", line 209, in main
    cache[rtype].remove(name)
KeyError: '/psm_7aeef168'

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot PPC64LE Fedora Stable 3.9 has failed when building commit 5130731.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/397/builds/470) and take a look at the build logs.
  4. Check if the failure is related to this commit (5130731) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/397/builds/470

Failed tests:

  • test_zlib

Failed subtests:

  • test_flushes - test.test_zlib.CompressObjectTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

412 tests OK.

10 slowest tests:

  • test_tokenize: 6 min 42 sec
  • test_gdb: 6 min 24 sec
  • test_unparse: 6 min 8 sec
  • test_multiprocessing_spawn: 5 min 35 sec
  • test_lib2to3: 4 min 27 sec
  • test_concurrent_futures: 4 min 6 sec
  • test_multiprocessing_forkserver: 3 min 32 sec
  • test_unicodedata: 3 min 5 sec
  • test_capi: 2 min 56 sec
  • test_peg_generator: 2 min 39 sec

1 test failed:
test_zlib

12 tests skipped:
test_devpoll test_ioctl test_kqueue test_msilib test_startfile
test_tix test_tk test_ttk_guionly test_winconsoleio test_winreg
test_winsound test_zipfile64

1 re-run test:
test_zlib

Total duration: 13 min 35 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.9.cstratak-fedora-stable-ppc64le/build/Lib/test/test_zlib.py", line 440, in test_flushes
    ver = tuple(int(v) for v in zlib.ZLIB_RUNTIME_VERSION.split('.'))
  File "/home/buildbot/buildarea/3.9.cstratak-fedora-stable-ppc64le/build/Lib/test/test_zlib.py", line 440, in <genexpr>
    ver = tuple(int(v) for v in zlib.ZLIB_RUNTIME_VERSION.split('.'))
ValueError: invalid literal for int() with base 10: 'zlib-ng'

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot PPC64LE Fedora Stable Clang 3.9 has failed when building commit 5130731.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/48/builds/474) and take a look at the build logs.
  4. Check if the failure is related to this commit (5130731) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/48/builds/474

Failed tests:

  • test_zlib

Failed subtests:

  • test_flushes - test.test_zlib.CompressObjectTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

412 tests OK.

10 slowest tests:

  • test_tokenize: 12 min 18 sec
  • test_unparse: 11 min 31 sec
  • test_multiprocessing_spawn: 10 min 47 sec
  • test_lib2to3: 8 min 17 sec
  • test_unicodedata: 6 min 14 sec
  • test_capi: 5 min 23 sec
  • test_multiprocessing_forkserver: 5 min 1 sec
  • test_concurrent_futures: 4 min 49 sec
  • test_asyncio: 4 min 32 sec
  • test_pickle: 4 min 28 sec

1 test failed:
test_zlib

12 tests skipped:
test_devpoll test_ioctl test_kqueue test_msilib test_startfile
test_tix test_tk test_ttk_guionly test_winconsoleio test_winreg
test_winsound test_zipfile64

1 re-run test:
test_zlib

Total duration: 20 min 5 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.9.cstratak-fedora-stable-ppc64le.clang/build/Lib/test/test_zlib.py", line 440, in test_flushes
    ver = tuple(int(v) for v in zlib.ZLIB_RUNTIME_VERSION.split('.'))
  File "/home/buildbot/buildarea/3.9.cstratak-fedora-stable-ppc64le.clang/build/Lib/test/test_zlib.py", line 440, in <genexpr>
    ver = tuple(int(v) for v in zlib.ZLIB_RUNTIME_VERSION.split('.'))
ValueError: invalid literal for int() with base 10: 'zlib-ng'

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot AMD64 Arch Linux Usan 3.10 has failed when building commit c8f868d.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/714/builds/838) and take a look at the build logs.
  4. Check if the failure is related to this commit (c8f868d) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/714/builds/838

Summary of the results of the build (if available):

Click to see traceback logs
Cloning into '.'...
remote: Enumerating objects: 1032457, done.        
remote: Counting objects:   0% (1/610)        
remote: Counting objects:   1% (7/610)        
remote: Counting objects:   2% (13/610)        
remote: Counting objects:   3% (19/610)        
remote: Counting objects:   4% (25/610)        
remote: Counting objects:   5% (31/610)        
remote: Counting objects:   6% (37/610)        
remote: Counting objects:   7% (43/610)        
remote: Counting objects:   8% (49/610)        
remote: Counting objects:   9% (55/610)        
remote: Counting objects:  10% (61/610)        
remote: Counting objects:  11% (68/610)        
remote: Counting objects:  12% (74/610)        
remote: Counting objects:  13% (80/610)        
remote: Counting objects:  14% (86/610)        
remote: Counting objects:  15% (92/610)        
remote: Counting objects:  16% (98/610)        
remote: Counting objects:  17% (104/610)        
remote: Counting objects:  18% (110/610)        
remote: Counting objects:  19% (116/610)        
remote: Counting objects:  20% (122/610)        
remote: Counting objects:  21% (129/610)        
remote: Counting objects:  22% (135/610)        
remote: Counting objects:  23% (141/610)        
remote: Counting objects:  24% (147/610)        
remote: Counting objects:  25% (153/610)        
remote: Counting objects:  26% (159/610)        
remote: Counting objects:  27% (165/610)        
remote: Counting objects:  28% (171/610)        
remote: Counting objects:  29% (177/610)        
remote: Counting objects:  30% (183/610)        
remote: Counting objects:  31% (190/610)        
remote: Counting objects:  32% (196/610)        
remote: Counting objects:  33% (202/610)        
remote: Counting objects:  34% (208/610)        
remote: Counting objects:  35% (214/610)        
remote: Counting objects:  36% (220/610)        
remote: Counting objects:  37% (226/610)        
remote: Counting objects:  38% (232/610)        
remote: Counting objects:  39% (238/610)        
remote: Counting objects:  40% (244/610)        
remote: Counting objects:  41% (251/610)        
remote: Counting objects:  42% (257/610)        
remote: Counting objects:  43% (263/610)        
remote: Counting objects:  44% (269/610)        
remote: Counting objects:  45% (275/610)        
remote: Counting objects:  46% (281/610)        
remote: Counting objects:  47% (287/610)        
remote: Counting objects:  48% (293/610)        
remote: Counting objects:  49% (299/610)        
remote: Counting objects:  50% (305/610)        
remote: Counting objects:  51% (312/610)        
remote: Counting objects:  52% (318/610)        
remote: Counting objects:  53% (324/610)        
remote: Counting objects:  54% (330/610)        
remote: Counting objects:  55% (336/610)        
remote: Counting objects:  56% (342/610)        
remote: Counting objects:  57% (348/610)        
remote: Counting objects:  58% (354/610)        
remote: Counting objects:  59% (360/610)        
remote: Counting objects:  60% (366/610)        
remote: Counting objects:  61% (373/610)        
remote: Counting objects:  62% (379/610)        
remote: Counting objects:  63% (385/610)        
remote: Counting objects:  64% (391/610)        
remote: Counting objects:  65% (397/610)        
remote: Counting objects:  66% (403/610)        
remote: Counting objects:  67% (409/610)        
remote: Counting objects:  68% (415/610)        
remote: Counting objects:  69% (421/610)        
remote: Counting objects:  70% (427/610)        
remote: Counting objects:  71% (434/610)        
remote: Counting objects:  72% (440/610)        
remote: Counting objects:  73% (446/610)        
remote: Counting objects:  74% (452/610)        
remote: Counting objects:  75% (458/610)        
remote: Counting objects:  76% (464/610)        
remote: Counting objects:  77% (470/610)        
remote: Counting objects:  78% (476/610)        
remote: Counting objects:  79% (482/610)        
remote: Counting objects:  80% (488/610)        
remote: Counting objects:  81% (495/610)        
remote: Counting objects:  82% (501/610)        
remote: Counting objects:  83% (507/610)        
remote: Counting objects:  84% (513/610)        
remote: Counting objects:  85% (519/610)        
remote: Counting objects:  86% (525/610)        
remote: Counting objects:  87% (531/610)        
remote: Counting objects:  88% (537/610)        
remote: Counting objects:  89% (543/610)        
remote: Counting objects:  90% (549/610)        
remote: Counting objects:  91% (556/610)        
remote: Counting objects:  92% (562/610)        
remote: Counting objects:  93% (568/610)        
remote: Counting objects:  94% (574/610)        
remote: Counting objects:  95% (580/610)        
remote: Counting objects:  96% (586/610)        
remote: Counting objects:  97% (592/610)        
remote: Counting objects:  98% (598/610)        
remote: Counting objects:  99% (604/610)        
remote: Counting objects: 100% (610/610)        
remote: Counting objects: 100% (610/610), done.        
remote: Compressing objects:   0% (1/461)        
remote: Compressing objects:   1% (5/461)        
remote: Compressing objects:   2% (10/461)        
remote: Compressing objects:   3% (14/461)        
remote: Compressing objects:   4% (19/461)        
remote: Compressing objects:   5% (24/461)        
remote: Compressing objects:   6% (28/461)        
remote: Compressing objects:   7% (33/461)        
remote: Compressing objects:   8% (37/461)        
remote: Compressing objects:   9% (42/461)        
remote: Compressing objects:  10% (47/461)        
remote: Compressing objects:  11% (51/461)        
remote: Compressing objects:  12% (56/461)        
remote: Compressing objects:  13% (60/461)        
remote: Compressing objects:  14% (65/461)        
remote: Compressing objects:  15% (70/461)        
remote: Compressing objects:  16% (74/461)        
remote: Compressing objects:  17% (79/461)        
remote: Compressing objects:  18% (83/461)        
remote: Compressing objects:  19% (88/461)        
remote: Compressing objects:  20% (93/461)        
remote: Compressing objects:  21% (97/461)        
remote: Compressing objects:  22% (102/461)        
remote: Compressing objects:  23% (107/461)        
remote: Compressing objects:  24% (111/461)        
remote: Compressing objects:  25% (116/461)        
remote: Compressing objects:  26% (120/461)        
remote: Compressing objects:  27% (125/461)        
remote: Compressing objects:  28% (130/461)        
remote: Compressing objects:  29% (134/461)        
remote: Compressing objects:  30% (139/461)        
remote: Compressing objects:  31% (143/461)        
remote: Compressing objects:  32% (148/461)        
remote: Compressing objects:  33% (153/461)        
remote: Compressing objects:  34% (157/461)        
remote: Compressing objects:  35% (162/461)        
remote: Compressing objects:  36% (166/461)        
remote: Compressing objects:  37% (171/461)        
remote: Compressing objects:  38% (176/461)        
remote: Compressing objects:  39% (180/461)        
remote: Compressing objects:  40% (185/461)        
remote: Compressing objects:  41% (190/461)        
remote: Compressing objects:  42% (194/461)        
remote: Compressing objects:  43% (199/461)        
remote: Compressing objects:  44% (203/461)        
remote: Compressing objects:  45% (208/461)        
remote: Compressing objects:  46% (213/461)        
remote: Compressing objects:  47% (217/461)        
remote: Compressing objects:  48% (222/461)        
remote: Compressing objects:  49% (226/461)        
remote: Compressing objects:  50% (231/461)        
remote: Compressing objects:  51% (236/461)        
remote: Compressing objects:  52% (240/461)        
remote: Compressing objects:  53% (245/461)        
remote: Compressing objects:  54% (249/461)        
remote: Compressing objects:  55% (254/461)        
remote: Compressing objects:  56% (259/461)        
remote: Compressing objects:  57% (263/461)        
remote: Compressing objects:  58% (268/461)        
remote: Compressing objects:  59% (272/461)        
remote: Compressing objects:  60% (277/461)        
remote: Compressing objects:  61% (282/461)        
remote: Compressing objects:  62% (286/461)        
remote: Compressing objects:  63% (291/461)        
remote: Compressing objects:  64% (296/461)        
remote: Compressing objects:  65% (300/461)        
remote: Compressing objects:  66% (305/461)        
remote: Compressing objects:  67% (309/461)        
remote: Compressing objects:  68% (314/461)        
remote: Compressing objects:  69% (319/461)        
remote: Compressing objects:  70% (323/461)        
remote: Compressing objects:  71% (328/461)        
remote: Compressing objects:  72% (332/461)        
remote: Compressing objects:  73% (337/461)        
remote: Compressing objects:  74% (342/461)        
remote: Compressing objects:  75% (346/461)        
remote: Compressing objects:  76% (351/461)        
remote: Compressing objects:  77% (355/461)        
remote: Compressing objects:  78% (360/461)        
remote: Compressing objects:  79% (365/461)        
remote: Compressing objects:  80% (369/461)        
remote: Compressing objects:  81% (374/461)        
remote: Compressing objects:  82% (379/461)        
remote: Compressing objects:  83% (383/461)        
remote: Compressing objects:  84% (388/461)        
remote: Compressing objects:  85% (392/461)        
remote: Compressing objects:  86% (397/461)        
remote: Compressing objects:  87% (402/461)        
remote: Compressing objects:  88% (406/461)        
remote: Compressing objects:  89% (411/461)        
remote: Compressing objects:  90% (415/461)        
remote: Compressing objects:  91% (420/461)        
remote: Compressing objects:  92% (425/461)        
remote: Compressing objects:  93% (429/461)        
remote: Compressing objects:  94% (434/461)        
remote: Compressing objects:  95% (438/461)        
remote: Compressing objects:  96% (443/461)        
remote: Compressing objects:  97% (448/461)        
remote: Compressing objects:  98% (452/461)        
remote: Compressing objects:  99% (457/461)        
remote: Compressing objects: 100% (461/461)        
remote: Compressing objects: 100% (461/461), done.        
Receiving objects:   0% (1/1032457)
Receiving objects:   1% (10325/1032457)
Receiving objects:   2% (20650/1032457), 8.40 MiB | 15.98 MiB/s
Receiving objects:   3% (30974/1032457), 8.40 MiB | 15.98 MiB/s
Receiving objects:   3% (38509/1032457), 8.40 MiB | 15.98 MiB/s
Receiving objects:   4% (41299/1032457), 8.40 MiB | 15.98 MiB/s
Receiving objects:   5% (51623/1032457), 25.82 MiB | 25.17 MiB/s
Receiving objects:   6% (61948/1032457), 25.82 MiB | 25.17 MiB/s
Receiving objects:   7% (72272/1032457), 25.82 MiB | 25.17 MiB/s
Receiving objects:   8% (82597/1032457), 25.82 MiB | 25.17 MiB/s
Receiving objects:   9% (92922/1032457), 25.82 MiB | 25.17 MiB/s
Receiving objects:  10% (103246/1032457), 40.25 MiB | 26.38 MiB/s
Receiving objects:  11% (113571/1032457), 40.25 MiB | 26.38 MiB/s
Receiving objects:  12% (123895/1032457), 40.25 MiB | 26.38 MiB/s
Receiving objects:  13% (134220/1032457), 40.25 MiB | 26.38 MiB/s
Receiving objects:  14% (144544/1032457), 40.25 MiB | 26.38 MiB/s
Receiving objects:  14% (147010/1032457), 40.25 MiB | 26.38 MiB/s
Receiving objects:  15% (154869/1032457), 55.09 MiB | 27.20 MiB/s
Receiving objects:  15% (161950/1032457), 74.44 MiB | 29.47 MiB/s
Receiving objects:  16% (165194/1032457), 94.82 MiB | 31.34 MiB/s
Receiving objects:  17% (175518/1032457), 112.43 MiB | 31.89 MiB/s
Receiving objects:  17% (178557/1032457), 112.43 MiB | 31.89 MiB/s
Receiving objects:  18% (185843/1032457), 130.03 MiB | 32.23 MiB/s
Receiving objects:  19% (196167/1032457), 149.04 MiB | 32.85 MiB/s
Receiving objects:  19% (201827/1032457), 149.04 MiB | 32.85 MiB/s
Receiving objects:  20% (206492/1032457), 166.01 MiB | 34.94 MiB/s
Receiving objects:  21% (216816/1032457), 184.74 MiB | 34.98 MiB/s
Receiving objects:  21% (220463/1032457), 184.74 MiB | 34.98 MiB/s
Receiving objects:  22% (227141/1032457), 203.75 MiB | 35.97 MiB/s
Receiving objects:  23% (237466/1032457), 220.79 MiB | 36.46 MiB/s
Receiving objects:  23% (241435/1032457), 220.79 MiB | 36.46 MiB/s
Receiving objects:  24% (247790/1032457), 239.44 MiB | 36.00 MiB/s
Receiving objects:  25% (258115/1032457), 258.70 MiB | 35.76 MiB/s
Receiving objects:  25% (263899/1032457), 258.70 MiB | 35.76 MiB/s
Receiving objects:  26% (268439/1032457), 275.77 MiB | 35.64 MiB/s
Receiving objects:  27% (278764/1032457), 294.33 MiB | 35.69 MiB/s
Receiving objects:  27% (280725/1032457), 294.33 MiB | 35.69 MiB/s
Receiving objects:  28% (289088/1032457), 312.34 MiB | 35.49 MiB/s
Receiving objects:  29% (299413/1032457), 330.07 MiB | 35.65 MiB/s
Receiving objects:  29% (308019/1032457), 330.07 MiB | 35.65 MiB/s
Receiving objects:  30% (309738/1032457), 330.07 MiB | 35.65 MiB/s
Receiving objects:  31% (320062/1032457), 330.07 MiB | 35.65 MiB/s
Receiving objects:  32% (330387/1032457), 348.96 MiB | 35.94 MiB/s
Receiving objects:  33% (340711/1032457), 348.96 MiB | 35.94 MiB/s
Receiving objects:  34% (351036/1032457), 366.45 MiB | 35.62 MiB/s
Receiving objects:  35% (361360/1032457), 366.45 MiB | 35.62 MiB/s
Receiving objects:  36% (371685/1032457), 366.45 MiB | 35.62 MiB/s
Receiving objects:  37% (382010/1032457), 366.45 MiB | 35.62 MiB/s
Receiving objects:  37% (387962/1032457), 366.45 MiB | 35.62 MiB/s
Receiving objects:  38% (392334/1032457), 366.45 MiB | 35.62 MiB/s
Receiving objects:  39% (402659/1032457), 384.61 MiB | 35.69 MiB/s
Receiving objects:  40% (412983/1032457), 384.61 MiB | 35.69 MiB/s
Receiving objects:  41% (423308/1032457), 402.94 MiB | 35.92 MiB/s
Receiving objects:  42% (433632/1032457), 402.94 MiB | 35.92 MiB/s
Receiving objects:  42% (442213/1032457), 402.94 MiB | 35.92 MiB/s
Receiving objects:  43% (443957/1032457), 402.94 MiB | 35.92 MiB/s
Receiving objects:  44% (454282/1032457), 402.94 MiB | 35.92 MiB/s
Receiving objects:  45% (464606/1032457), 420.46 MiB | 35.54 MiB/s
Receiving objects:  46% (474931/1032457), 420.46 MiB | 35.54 MiB/s
Receiving objects:  47% (485255/1032457), 420.46 MiB | 35.54 MiB/s
Receiving objects:  48% (495580/1032457), 420.46 MiB | 35.54 MiB/s
Receiving objects:  49% (505904/1032457), 420.46 MiB | 35.54 MiB/s
Receiving objects:  50% (516229/1032457), 420.46 MiB | 35.54 MiB/s
Receiving objects:  51% (526554/1032457), 439.67 MiB | 35.73 MiB/s
Receiving objects:  52% (536878/1032457), 439.67 MiB | 35.73 MiB/s
Receiving objects:  53% (547203/1032457), 439.67 MiB | 35.73 MiB/s
Receiving objects:  54% (557527/1032457), 439.67 MiB | 35.73 MiB/s
Receiving objects:  55% (567852/1032457), 439.67 MiB | 35.73 MiB/s
Receiving objects:  56% (578176/1032457), 439.67 MiB | 35.73 MiB/s
Receiving objects:  56% (581464/1032457), 439.67 MiB | 35.73 MiB/s
Receiving objects:  57% (588501/1032457), 439.67 MiB | 35.73 MiB/s
Receiving objects:  58% (598826/1032457), 458.49 MiB | 36.02 MiB/s
Receiving objects:  59% (609150/1032457), 475.62 MiB | 35.83 MiB/s
Receiving objects:  60% (619475/1032457), 475.62 MiB | 35.83 MiB/s
Receiving objects:  60% (624855/1032457), 475.62 MiB | 35.83 MiB/s
Receiving objects:  61% (629799/1032457), 475.62 MiB | 35.83 MiB/s
Receiving objects:  62% (640124/1032457), 494.76 MiB | 36.13 MiB/s
Receiving objects:  63% (650448/1032457), 494.76 MiB | 36.13 MiB/s
Receiving objects:  64% (660773/1032457), 494.76 MiB | 36.13 MiB/s
Receiving objects:  65% (671098/1032457), 494.76 MiB | 36.13 MiB/s
Receiving objects:  66% (681422/1032457), 494.76 MiB | 36.13 MiB/s
Receiving objects:  67% (691747/1032457), 494.76 MiB | 36.13 MiB/s
Receiving objects:  68% (702071/1032457), 494.76 MiB | 36.13 MiB/s
Receiving objects:  69% (712396/1032457), 494.76 MiB | 36.13 MiB/s
Receiving objects:  70% (722720/1032457), 494.76 MiB | 36.13 MiB/s
Receiving objects:  71% (733045/1032457), 511.36 MiB | 35.63 MiB/s
Receiving objects:  72% (743370/1032457), 511.36 MiB | 35.63 MiB/s
Receiving objects:  73% (753694/1032457), 511.36 MiB | 35.63 MiB/s
Receiving objects:  74% (764019/1032457), 511.36 MiB | 35.63 MiB/s
Receiving objects:  75% (774343/1032457), 511.36 MiB | 35.63 MiB/s
Receiving objects:  76% (784668/1032457), 511.36 MiB | 35.63 MiB/s
Receiving objects:  77% (794992/1032457), 511.36 MiB | 35.63 MiB/s
Receiving objects:  78% (805317/1032457), 511.36 MiB | 35.63 MiB/s
Receiving objects:  79% (815642/1032457), 511.36 MiB | 35.63 MiB/s
Receiving objects:  79% (817295/1032457), 511.36 MiB | 35.63 MiB/s
Receiving objects:  80% (825966/1032457), 511.36 MiB | 35.63 MiB/s
Receiving objects:  81% (836291/1032457), 511.36 MiB | 35.63 MiB/s
Receiving objects:  82% (846615/1032457), 511.36 MiB | 35.63 MiB/s
Receiving objects:  83% (856940/1032457), 529.77 MiB | 35.83 MiB/s
Receiving objects:  84% (867264/1032457), 529.77 MiB | 35.83 MiB/s
Receiving objects:  85% (877589/1032457), 529.77 MiB | 35.83 MiB/s
Receiving objects:  86% (887914/1032457), 529.77 MiB | 35.83 MiB/s
Receiving objects:  87% (898238/1032457), 529.77 MiB | 35.83 MiB/s
Receiving objects:  88% (908563/1032457), 529.77 MiB | 35.83 MiB/s
Receiving objects:  89% (918887/1032457), 547.59 MiB | 35.94 MiB/s
Receiving objects:  90% (929212/1032457), 547.59 MiB | 35.94 MiB/s
Receiving objects:  91% (939536/1032457), 547.59 MiB | 35.94 MiB/s
Receiving objects:  91% (941067/1032457), 547.59 MiB | 35.94 MiB/s
Receiving objects:  92% (949861/1032457), 547.59 MiB | 35.94 MiB/s
Receiving objects:  93% (960186/1032457), 547.59 MiB | 35.94 MiB/s
Receiving objects:  94% (970510/1032457), 565.77 MiB | 35.83 MiB/s
Receiving objects:  95% (980835/1032457), 565.77 MiB | 35.83 MiB/s
Receiving objects:  96% (991159/1032457), 565.77 MiB | 35.83 MiB/s
Receiving objects:  97% (1001484/1032457), 565.77 MiB | 35.83 MiB/s
Receiving objects:  98% (1011808/1032457), 583.88 MiB | 35.96 MiB/s
Receiving objects:  99% (1022133/1032457), 583.88 MiB | 35.96 MiB/s
remote: Total 1032457 (delta 381), reused 284 (delta 148), pack-reused 1031847        
Receiving objects: 100% (1032457/1032457), 583.88 MiB | 35.96 MiB/s
Receiving objects: 100% (1032457/1032457), 589.60 MiB | 34.92 MiB/s, done.
Resolving deltas:   0% (0/826113)
Resolving deltas:   1% (8262/826113)
Resolving deltas:   2% (16523/826113)
Resolving deltas:   3% (24784/826113)
Resolving deltas:   4% (33045/826113)
Resolving deltas:   4% (33724/826113)
Resolving deltas:   5% (41306/826113)
Resolving deltas:   6% (49567/826113)
Resolving deltas:   6% (54768/826113)
Resolving deltas:   7% (57829/826113)
Resolving deltas:   8% (66090/826113)
Resolving deltas:   9% (74351/826113)
Resolving deltas:   9% (75894/826113)
Resolving deltas:  10% (82612/826113)
Resolving deltas:  10% (87867/826113)
Resolving deltas:  11% (90873/826113)
Resolving deltas:  12% (99134/826113)
Resolving deltas:  12% (99757/826113)
Resolving deltas:  13% (107395/826113)
Resolving deltas:  14% (115656/826113)
Resolving deltas:  15% (123917/826113)
Resolving deltas:  15% (127584/826113)
Resolving deltas:  16% (132179/826113)
Resolving deltas:  17% (140440/826113)
Resolving deltas:  18% (148701/826113)
Resolving deltas:  19% (156962/826113)
Resolving deltas:  19% (157638/826113)
Resolving deltas:  20% (165223/826113)
Resolving deltas:  21% (173484/826113)
Resolving deltas:  21% (178446/826113)
Resolving deltas:  22% (181745/826113)
Resolving deltas:  23% (190006/826113)
Resolving deltas:  23% (195792/826113)
Resolving deltas:  24% (198268/826113)
Resolving deltas:  25% (206529/826113)
Resolving deltas:  26% (214790/826113)
Resolving deltas:  26% (221847/826113)
Resolving deltas:  27% (223051/826113)
Resolving deltas:  28% (231312/826113)
Resolving deltas:  29% (239573/826113)
Resolving deltas:  30% (247834/826113)
Resolving deltas:  31% (256096/826113)
Resolving deltas:  32% (264357/826113)
Resolving deltas:  33% (272618/826113)
Resolving deltas:  34% (280879/826113)
Resolving deltas:  34% (288864/826113)
Resolving deltas:  35% (289140/826113)
Resolving deltas:  36% (297401/826113)
Resolving deltas:  37% (305662/826113)
Resolving deltas:  38% (313923/826113)
Resolving deltas:  39% (322185/826113)
Resolving deltas:  39% (326866/826113)
Resolving deltas:  40% (330446/826113)
Resolving deltas:  41% (338708/826113)
Resolving deltas:  42% (346968/826113)
Resolving deltas:  43% (355229/826113)
Resolving deltas:  44% (363490/826113)
Resolving deltas:  44% (369774/826113)
Resolving deltas:  45% (371751/826113)
Resolving deltas:  46% (380012/826113)
Resolving deltas:  47% (388274/826113)
Resolving deltas:  48% (396535/826113)
Resolving deltas:  48% (399124/826113)
Resolving deltas:  49% (404796/826113)
Resolving deltas:  50% (413057/826113)
Resolving deltas:  51% (421318/826113)
Resolving deltas:  52% (429579/826113)
Resolving deltas:  53% (437840/826113)
Resolving deltas:  54% (446102/826113)
Resolving deltas:  55% (454363/826113)
Resolving deltas:  55% (456910/826113)
Resolving deltas:  56% (462624/826113)
Resolving deltas:  57% (470885/826113)
Resolving deltas:  58% (479146/826113)
Resolving deltas:  59% (487407/826113)
Resolving deltas:  60% (495668/826113)
Resolving deltas:  61% (503929/826113)
Resolving deltas:  62% (512191/826113)
Resolving deltas:  62% (513674/826113)
Resolving deltas:  63% (520452/826113)
Resolving deltas:  64% (528713/826113)
Resolving deltas:  65% (536974/826113)
Resolving deltas:  66% (545235/826113)
Resolving deltas:  67% (553496/826113)
Resolving deltas:  67% (561581/826113)
Resolving deltas:  68% (561757/826113)
Resolving deltas:  69% (570018/826113)
Resolving deltas:  70% (578280/826113)
Resolving deltas:  71% (586541/826113)
Resolving deltas:  72% (594802/826113)
Resolving deltas:  73% (603063/826113)
Resolving deltas:  74% (611324/826113)
Resolving deltas:  75% (619585/826113)
Resolving deltas:  75% (623276/826113)
Resolving deltas:  76% (627846/826113)
Resolving deltas:  77% (636108/826113)
Resolving deltas:  78% (644369/826113)
Resolving deltas:  79% (652630/826113)
Resolving deltas:  80% (660891/826113)
Resolving deltas:  81% (669152/826113)
Resolving deltas:  82% (677413/826113)
Resolving deltas:  83% (685674/826113)
Resolving deltas:  84% (693935/826113)
Resolving deltas:  84% (701972/826113)
Resolving deltas:  85% (702197/826113)
Resolving deltas:  86% (710458/826113)
Resolving deltas:  87% (718719/826113)
Resolving deltas:  88% (726980/826113)
Resolving deltas:  89% (735241/826113)
Resolving deltas:  90% (743502/826113)
Resolving deltas:  91% (751763/826113)
Resolving deltas:  92% (760024/826113)
Resolving deltas:  93% (768286/826113)
Resolving deltas:  94% (776547/826113)
Resolving deltas:  95% (784808/826113)
Resolving deltas:  96% (793069/826113)
Resolving deltas:  96% (793530/826113)
Resolving deltas:  97% (801330/826113)
Resolving deltas:  98% (809591/826113)
Resolving deltas:  99% (817852/826113)
Resolving deltas: 100% (826113/826113)
Resolving deltas: 100% (826113/826113), done.
Note: switching to 'c8f868dc52f98011d0f9b459b6487920bfb0ac4d'.

You are in 'detached HEAD' state. You can look around, make experimental
changes and commit them, and you can discard any commits you make in this
state without impacting any branches by switching back to a branch.

If you want to create a new branch to retain commits you create, you may
do so (now or later) by using -c with the switch command. Example:

  git switch -c <new-branch-name>

Or undo this operation with:

  git switch -

Turn off this advice by setting config variable advice.detachedHead to false

HEAD is now at c8f868dc52 [3.10] gh-118486: Support mkdir(mode=0o700) on Windows (GH-118488) (GH-118740)

Objects/fileobject.c:256:9: warning: variable 'newlinetypes' set but not used [-Wunused-but-set-variable]
  256 |     int newlinetypes = 0;
      |         ^
1 warning generated.
Objects/dictobject.c:2281:16: warning: variable 'i' set but not used [-Wunused-but-set-variable]
 2281 |     Py_ssize_t i, j;
      |                ^
1 warning generated.
./Modules/timemodule.c:139:13: warning: code will never be executed [-Wunreachable-code]
  139 |             PyErr_SetString(PyExc_OverflowError,
      |             ^~~~~~~~~~~~~~~
1 warning generated.
./Modules/_threadmodule.c:1654:26: warning: implicit conversion from '_PyTime_t' (aka 'long') to 'double' changes value from 9223372036854775 to 9223372036854776 [-Wimplicit-const-int-float-conversion]
 1654 |     double timeout_max = (_PyTime_t)PY_TIMEOUT_MAX * 1e-6;
      |                          ^~~~~~~~~~~~~~~~~~~~~~~~~ ~
1 warning generated.
./Modules/_io/bufferedio.c:1075:19: warning: variable 'written' set but not used [-Wunused-but-set-variable]
 1075 |     Py_ssize_t n, written = 0;
      |                   ^
./Modules/_io/bufferedio.c:1863:16: warning: variable 'written' set but not used [-Wunused-but-set-variable]
 1863 |     Py_ssize_t written = 0;
      |                ^
2 warnings generated.
Objects/object.c:2301:5: runtime error: call to function list_dealloc through pointer to incorrect function type 'void (*)(struct _object *)'
/buildbot/buildarea/3.10.pablogsal-arch-x86_64.clang-ubsan/build/Objects/listobject.c:344: note: list_dealloc defined here
SUMMARY: UndefinedBehaviorSanitizer: undefined-behavior Objects/object.c:2301:5 in 
make: *** [Makefile:615: pybuilddir.txt] Error 1

find: ‘build’: No such file or directory
find: ‘build’: No such file or directory
find: ‘build’: No such file or directory
find: ‘build’: No such file or directory
make: [Makefile:1940: clean-retain-profile] Error 1 (ignored)

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot PPC64LE Fedora Stable Clang Installed 3.9 has failed when building commit 5130731.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/283/builds/472) and take a look at the build logs.
  4. Check if the failure is related to this commit (5130731) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/283/builds/472

Failed tests:

  • test_zlib

Failed subtests:

  • test_flushes - test.test_zlib.CompressObjectTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

408 tests OK.

1 test failed:
test_zlib

16 tests skipped:
test_asdl_parser test_check_c_globals test_clinic test_devpoll
test_gdb test_ioctl test_kqueue test_msilib test_startfile
test_tix test_tk test_ttk_guionly test_winconsoleio test_winreg
test_winsound test_zipfile64

1 re-run test:
test_zlib

Total duration: 7 min 1 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.9.cstratak-fedora-stable-ppc64le.clang-installed/build/target/lib/python3.9/test/test_zlib.py", line 440, in test_flushes
    ver = tuple(int(v) for v in zlib.ZLIB_RUNTIME_VERSION.split('.'))
  File "/home/buildbot/buildarea/3.9.cstratak-fedora-stable-ppc64le.clang-installed/build/target/lib/python3.9/test/test_zlib.py", line 440, in <genexpr>
    ver = tuple(int(v) for v in zlib.ZLIB_RUNTIME_VERSION.split('.'))
ValueError: invalid literal for int() with base 10: 'zlib-ng'

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot PPC64LE Fedora Stable LTO + PGO 3.9 has failed when building commit 5130731.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/46/builds/476) and take a look at the build logs.
  4. Check if the failure is related to this commit (5130731) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/46/builds/476

Failed tests:

  • test_zlib

Failed subtests:

  • test_flushes - test.test_zlib.CompressObjectTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

411 tests OK.

10 slowest tests:

  • test_concurrent_futures: 2 min 55 sec
  • test_multiprocessing_spawn: 2 min 35 sec
  • test_tokenize: 2 min 8 sec
  • test_unparse: 1 min 38 sec
  • test_multiprocessing_forkserver: 1 min 37 sec
  • test_lib2to3: 1 min 27 sec
  • test_asyncio: 1 min 21 sec
  • test_multiprocessing_fork: 1 min 19 sec
  • test_io: 55.2 sec
  • test_signal: 48.9 sec

1 test failed:
test_zlib

13 tests skipped:
test_devpoll test_gdb test_ioctl test_kqueue test_msilib
test_startfile test_tix test_tk test_ttk_guionly test_winconsoleio
test_winreg test_winsound test_zipfile64

1 re-run test:
test_zlib

Total duration: 4 min 50 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.9.cstratak-fedora-stable-ppc64le.lto-pgo/build/Lib/multiprocessing/resource_tracker.py", line 201, in main
    cache[rtype].remove(name)
KeyError: '/psm_25fad1e1'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.9.cstratak-fedora-stable-ppc64le.lto-pgo/build/Lib/test/test_zlib.py", line 440, in test_flushes
    ver = tuple(int(v) for v in zlib.ZLIB_RUNTIME_VERSION.split('.'))
  File "/home/buildbot/buildarea/3.9.cstratak-fedora-stable-ppc64le.lto-pgo/build/Lib/test/test_zlib.py", line 440, in <genexpr>
    ver = tuple(int(v) for v in zlib.ZLIB_RUNTIME_VERSION.split('.'))
ValueError: invalid literal for int() with base 10: 'zlib-ng'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.9.cstratak-fedora-stable-ppc64le.lto-pgo/build/Lib/multiprocessing/resource_tracker.py", line 201, in main
    cache[rtype].remove(name)
KeyError: '/psm_09012533'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.9.cstratak-fedora-stable-ppc64le.lto-pgo/build/Lib/multiprocessing/resource_tracker.py", line 201, in main
    cache[rtype].remove(name)
KeyError: '/psm_07628543'

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot PPC64LE Fedora Stable LTO 3.9 has failed when building commit 5130731.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/155/builds/472) and take a look at the build logs.
  4. Check if the failure is related to this commit (5130731) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/155/builds/472

Failed tests:

  • test_zlib

Failed subtests:

  • test_flushes - test.test_zlib.CompressObjectTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

412 tests OK.

10 slowest tests:

  • test_gdb: 5 min 53 sec
  • test_multiprocessing_spawn: 3 min 19 sec
  • test_tokenize: 3 min 15 sec
  • test_concurrent_futures: 3 min 8 sec
  • test_peg_generator: 2 min 32 sec
  • test_unparse: 2 min 13 sec
  • test_multiprocessing_forkserver: 2 min 8 sec
  • test_lib2to3: 2 min 6 sec
  • test_asyncio: 1 min 32 sec
  • test_multiprocessing_fork: 1 min 14 sec

1 test failed:
test_zlib

12 tests skipped:
test_devpoll test_ioctl test_kqueue test_msilib test_startfile
test_tix test_tk test_ttk_guionly test_winconsoleio test_winreg
test_winsound test_zipfile64

1 re-run test:
test_zlib

Total duration: 6 min 52 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.9.cstratak-fedora-stable-ppc64le.lto/build/Lib/test/test_zlib.py", line 440, in test_flushes
    ver = tuple(int(v) for v in zlib.ZLIB_RUNTIME_VERSION.split('.'))
  File "/home/buildbot/buildarea/3.9.cstratak-fedora-stable-ppc64le.lto/build/Lib/test/test_zlib.py", line 440, in <genexpr>
    ver = tuple(int(v) for v in zlib.ZLIB_RUNTIME_VERSION.split('.'))
ValueError: invalid literal for int() with base 10: 'zlib-ng'

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants