[go: nahoru, domu]

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-120400 :Support Linux perf profile to see Python calls on RISC-V architecture #120089

Merged
merged 4 commits into from
Jun 12, 2024

Conversation

ixgbe00
Copy link
Contributor
@ixgbe00 ixgbe00 commented Jun 5, 2024

Pull Request title

Refer to gh-96143:Allow Linux perf profiler to see Python calls
Refer to gh-96143:Move the perf trampoline files to the Python directory

Copy link
cpython-cla-bot bot commented Jun 5, 2024

All commit authors signed the Contributor License Agreement.
CLA signed

@bedevere-app
Copy link
bedevere-app bot commented Jun 5, 2024

Most changes to Python require a NEWS entry. Add one using the blurb_it web app or the blurb command-line tool.

If this change has little impact on Python users, wait for a maintainer to apply the skip news label instead.

@bedevere-app
Copy link
bedevere-app bot commented Jun 5, 2024

Most changes to Python require a NEWS entry. Add one using the blurb_it web app or the blurb command-line tool.

If this change has little impact on Python users, wait for a maintainer to apply the skip news label instead.

@corona10 corona10 requested a review from pablogsal June 9, 2024 09:00
@corona10
Copy link
Member
corona10 commented Jun 9, 2024

@pablogsal will be the proper reviewer.

@pablogsal
Copy link
Member

@ixgbe00 Thanks a lot for the contribution! This looks good to me but I would like to ensure this works as expected. Have you successfully run "test_perf_profiler" in a RISC-V system?

@ixgbe00
Copy link
Contributor Author
ixgbe00 commented Jun 11, 2024

@ixgbe00 Thanks a lot for the contribution! This looks good to me but I would like to ensure this works as expected. Have you successfully run "test_perf_profiler" in a RISC-V system?

yes, I have successfully run "test_perf_profiler" in a RISC-V system.

Test environment:
OS: openEuler 24.03 (LTS)
Arch:riscv64
Linux version: 6.6.0-19.0.0.21.oe2403.riscv64
Processor: SOPHON SG2042
Python version: 3.12.2
perf version: 6.6.0-19.0.0.21.oe2403.riscv64

Test content refer to https://docs.python.org/3.12/howto/perf_profiling.html
check the output of python -m sysconfig | grep HAVE_PERF_TRAMPOLINE to see if your system is supported
(python312_perf_venv) [root@openeuler-riscv64 pytorch]# python3 -m sysconfig | grep HAVE_PERF_TRAMPOLINE
PY_HAVE_PERF_TRAMPOLINE = "1"

(python312_perf_venv) [root@openeuler-riscv64 pytorch]# cat my_script.py
def foo(n):
result = 0
for _ in range(n):
result += 1
return result

def bar(n):
foo(n)

def baz(n):
bar(n)

if name == "main":
baz(1000000)


We can run perf to sample CPU stack traces at default hertz:
(python312_perf_venv) [root@openeuler-riscv64 pytorch]# perf record -g -o perf.data python my_script.py
[ perf record: Woken up 1 times to write data ]
[ perf record: Captured and wrote 0.183 MB perf.data (1053 samples) ]


Then we can use perf report to analyze the data:
(python312_perf_venv) [root@openeuler-riscv64 pytorch]# perf report --stdio -n -g --no-children -G
To display the perf.data header info, please use --header/--header-only options.

Total Lost Samples: 0

Samples: 1K of event 'cycles:P'
Event count (approx.): 494630954

Overhead Samples Command Shared Object Symbol
........ ............ ....... ........................... .....................................................................

22.36%           230  python   python3.12                   [.] _PyEval_EvalFrameDefault
        |
        ---0x929f50ef880a4701
           0x2
           .L0
           Py_BytesMain
           |
           |--20.95%--pymain_run_python.constprop.0
           |          _PyRun_AnyFileObject
           |          _PyRun_SimpleFileObject
           |          run_mod
           |          _PyEval_EvalFrameDefault
           |
            --1.41%--pymain_init
                      Py_InitializeFromConfig
                      pyinit_main
                      init_interp_main
                      |
                       --0.75%--PyImport_ImportModule
                                 PyImport_Import
                                 PyObject_CallFunction
                                 _PyObject_CallFunctionVa
                                 cfunction_vectorcall_FASTCALL_KEYWORDS
                                 builtin___import__
                                 PyImport_ImportModuleLevelObject
                                 PyObject_CallMethodObjArgs
                                 object_vacall
                                 _PyEval_EvalFrameDefault
                                 builtin_exec
                                 |
                                  --0.65%--PyEval_EvalCode
                                            _PyEval_EvalFrameDefault

@pablogsal
Copy link
Member

I think there is some confusion here. The test I mention is the one in the test suite:

./python -m test test_perf_profiler -v

@ixgbe00
Copy link
Contributor Author
ixgbe00 commented Jun 12, 2024

I think there is some confusion here. The test I mention is the one in the test suite:

./python -m test test_perf_profiler -v

I am terribly sorry. Thank you very much for your answer.
I re-tested according to your advice. As shown in the picture below, the result seem to be ok.

image

@pablogsal
Copy link
Member

Great!! Thanks a lot for checking @ixgbe00 👍

@bedevere-app
Copy link
bedevere-app bot commented Jun 12, 2024

Most changes to Python require a NEWS entry. Add one using the blurb_it web app or the blurb command-line tool.

If this change has little impact on Python users, wait for a maintainer to apply the skip news label instead.

@pablogsal
Copy link
Member

@ixgbe00 For us to merge the PR we need an issue number and to correct the NEWS entry. Do you mind opening a issue and changing the PR title per this instructions: https://devguide.python.org/getting-started/pull-request-lifecycle/#submitting

(We just need gh-ISSUE_NUMBER_HERE: Support Linux....)

@pablogsal
Copy link
Member

Also the NEWS entry file is called Misc/NEWS.d/next/Core and Builtins/2024-06-05-06-26-04.gh-issue- but the number should be added at the end: Misc/NEWS.d/next/Core and Builtins/2024-06-05-06-26-04.gh-issue-xxxxx. That is normally done by blurb or blurb-it. If you struggle with this part I can do it for you once we have an issue number

@ixgbe00
Copy link
Contributor Author
ixgbe00 commented Jun 12, 2024

@ixgbe00 For us to merge the PR we need an issue number and to correct the NEWS entry. Do you mind opening a issue and changing the PR title per this instructions: https://devguide.python.org/getting-started/pull-request-lifecycle/#submitting

(We just need gh-ISSUE_NUMBER_HERE: Support Linux....)

Thanks for your advice! I will open a issue and change the PR title.

@ixgbe00 ixgbe00 changed the title Support Linux perf profile to see Python calls on RISC-V architecture gh-120400 :Support Linux perf profile to see Python calls on RISC-V architecture Jun 12, 2024
@ixgbe00 ixgbe00 requested a review from pablogsal June 12, 2024 13:03
@pablogsal pablogsal merged commit 4b1e85b into python:main Jun 12, 2024
36 checks passed
@pablogsal
Copy link
Member

Congrats on your contribution @ixgbe00! 🚀

@pablogsal
Copy link
Member

@Yhg1s This PR adds the trampoline to RISK-V + the configure detection. This is a new feature so technically we should not back port it, but I want us to consider adding it to 3.13 as this is quite isolated from anything else. WDYT?

(Feel free to say "no")

@Yhg1s
Copy link
Member
Yhg1s commented Jun 12, 2024

Yeah, it makes sense to backport this fix to the existing feature.

@Yhg1s Yhg1s added the needs backport to 3.13 bugs and security fixes label Jun 12, 2024
@miss-islington-app
Copy link

Thanks @ixgbe00 for the PR, and @pablogsal for merging it 🌮🎉.. I'm working now to backport this PR to: 3.13.
🐍🍒⛏🤖

miss-islington pushed a commit to miss-islington/cpython that referenced this pull request Jun 12, 2024
…SC-V architecture (pythonGH-120089)

(cherry picked from commit 4b1e85b)

Co-authored-by: ixgbe00 <yangwang@iscas.ac.cn>
Co-authored-by: Pablo Galindo Salgado <Pablogsal@gmail.com>
@bedevere-app
Copy link
bedevere-app bot commented Jun 12, 2024

GH-120413 is a backport of this pull request to the 3.13 branch.

@bedevere-app bedevere-app bot removed the needs backport to 3.13 bugs and security fixes label Jun 12, 2024
Yhg1s pushed a commit that referenced this pull request Jun 14, 2024
…ISC-V architecture (GH-120089) (#120413)

gh-120400 :Support Linux perf profile to see Python calls on RISC-V architecture (GH-120089)
(cherry picked from commit 4b1e85b)

Co-authored-by: ixgbe00 <yangwang@iscas.ac.cn>
Co-authored-by: Pablo Galindo Salgado <Pablogsal@gmail.com>
@bedevere-bot
Copy link

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

Hi! The buildbot AMD64 Fedora Stable LTO 3.13 has failed when building commit d73f856.

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/1490/builds/105) and take a look at the build logs.
  4. Check if the failure is related to this commit (d73f856) 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/1490/builds/105

Failed tests:

  • test_shutil
  • test_cext
  • test_sys_settrace
  • test_cppext
  • test_zipimport
  • test_zipfile
  • test_sysconfig
  • test_shelve
  • test_peg_generator

Failed subtests:

  • setUpClass - test.test_peg_generator.test_c_parser.TestCParser
  • test_get - test.test_shelve.TestProto5File_dumbShelve.test_get
  • test_setdefault - test.test_shelve.TestProto2File_gnuShelve.test_setdefault
  • test_read - test.test_shelve.TestProto1File_sqlite3Shelve.test_read
  • test_constructor - test.test_shelve.TestProto3File_ndbmShelve.test_constructor
  • test_len - test.test_shelve.TestProto2File_dumbShelve.test_len
  • test_unseekable_zip_known_filesize - test.test_zipfile.test_core.StoredTestZip64InSmallFiles.test_unseekable_zip_known_filesize
  • test_get - test.test_shelve.TestProto2File_gnuShelve.test_get
  • test_forced - test.test_peg_generator.test_c_parser.TestCParser.test_forced
  • test_read - test.test_shelve.TestProto0File_sqlite3Shelve.test_read
  • test_values - test.test_shelve.TestProto0File_sqlite3Shelve.test_values
  • test_constructor - test.test_shelve.TestProto2File_ndbmShelve.test_constructor
  • test_too_many_files_append - test.test_zipfile.test_core.StoredTestZip64InSmallFiles.test_too_many_files_append
  • test_popitem - test.test_shelve.TestProto0File_sqlite3Shelve.test_popitem
  • test_ternary_operator - test.test_peg_generator.test_c_parser.TestCParser.test_ternary_operator
  • test_write - test.test_shelve.TestProto3File_gnuShelve.test_write
  • test_read1 - test.test_zipfile.test_core.StoredTestsWithSourceFile.test_read1
  • test_getitem - test.test_shelve.TestProto3File_gnuShelve.test_getitem
  • test_same_name_different_types - test.test_peg_generator.test_c_parser.TestCParser.test_same_name_different_types
  • test_popitem - test.test_shelve.TestProto3File_dumbShelve.test_popitem
  • test_add_file_before_1980 - test.test_zipfile.test_core.StoredTestsWithSourceFile.test_add_file_before_1980
  • test_items - test.test_shelve.TestProto3File_ndbmShelve.test_items
  • test_keys - test.test_shelve.TestProto4File_gnuShelve.test_keys
  • test_setdefault - test.test_shelve.TestProto1File_sqlite3Shelve.test_setdefault
  • test_popitem - test.test_shelve.TestProto5File_ndbmShelve.test_popitem
  • test_values - test.test_shelve.TestProto2File_dumbShelve.test_values
  • test_update - test.test_shelve.TestProto2File_dumbShelve.test_update
  • test_setdefault - test.test_shelve.TestProto4File_dumbShelve.test_setdefault
  • test_len - test.test_shelve.TestProto4File_sqlite3Shelve.test_len
  • test_values - test.test_shelve.TestProto4File_ndbmShelve.test_values
  • test_get - test.test_shelve.TestProto3File_sqlite3Shelve.test_get
  • test_len - test.test_shelve.TestProto2File_gnuShelve.test_len
  • test_read - test.test_shelve.TestProto3File_dumbShelve.test_read
  • test_popitem - test.test_shelve.TestProto4File_dumbShelve.test_popitem
  • testZip64LargeFile - test.test_zipimport.CompressedZipImportTestCase.testZip64LargeFile
  • test_write - test.test_shelve.TestProto4File_dumbShelve.test_write
  • test_constructor - test.test_shelve.TestProto2File_sqlite3Shelve.test_constructor
  • test_build_c11 - test.test_cext.TestExt.test_build_c11
  • test_update - test.test_shelve.TestProto4File_gnuShelve.test_update
  • test_append_to_concatenated_zip_file - test.test_zipfile.test_core.StoredTestsWithSourceFile.test_append_to_concatenated_zip_file
  • test_getitem - test.test_shelve.TestProto3File_dumbShelve.test_getitem
  • test_c_parser - test.test_peg_generator.test_c_parser.TestCParser.test_c_parser
  • test_compresslevel_basic - test.test_zipfile.test_core.StoredTestsWithSourceFile.test_compresslevel_basic
  • test_values - test.test_shelve.TestProto3File_dumbShelve.test_values
  • test_keys - test.test_shelve.TestProto0File_sqlite3Shelve.test_keys
  • test_random_open - test.test_zipfile.test_core.LzmaTestsWithRandomBinaryFiles.test_random_open
  • test_write - test.test_shelve.TestProto3File_ndbmShelve.test_write
  • test_constructor - test.test_shelve.TestProto2File_gnuShelve.test_constructor
  • test_values - test.test_shelve.TestProto2File_gnuShelve.test_values
  • test_keys - test.test_shelve.TestProto2File_gnuShelve.test_keys
  • test_len - test.test_shelve.TestProto5File_gnuShelve.test_len
  • test_values - test.test_shelve.TestProto3File_gnuShelve.test_values
  • test_if_stmt_action - test.test_peg_generator.test_c_parser.TestCParser.test_if_stmt_action
  • test_pass_stmt_action - test.test_peg_generator.test_c_parser.TestCParser.test_pass_stmt_action
  • test_items - test.test_shelve.TestProto2File_ndbmShelve.test_items
  • test_bool - test.test_shelve.TestProto5File_gnuShelve.test_bool
  • test_pop - test.test_shelve.TestProto5File_gnuShelve.test_pop
  • test_len - test.test_shelve.TestProto3File_gnuShelve.test_len
  • test_setdefault - test.test_shelve.TestProto5File_dumbShelve.test_setdefault
  • test_read - test.test_shelve.TestProto3File_gnuShelve.test_read
  • test_len - test.test_shelve.TestProto4File_gnuShelve.test_len
  • test_len - test.test_shelve.TestProto3File_dumbShelve.test_len
  • test_build_c99 - test.test_cext.TestExt.test_build_c99
  • test_setdefault - test.test_shelve.TestProto3File_dumbShelve.test_setdefault
  • test_read - test.test_shelve.TestProto5File_dumbShelve.test_read
  • test_values - test.test_shelve.TestProto2File_ndbmShelve.test_values
  • test_items - test.test_shelve.TestProto2File_sqlite3Shelve.test_items
  • test_constructor - test.test_shelve.TestProto4File_sqlite3Shelve.test_constructor
  • test_ignores_stuff_appended_past_comments - test.test_zipfile.test_core.StoredTestsWithSourceFile.test_ignores_stuff_appended_past_comments
  • test_write_with_optimization - test.test_zipfile.test_core.PyZipFileTests.test_write_with_optimization
  • test_pop - test.test_shelve.TestProto4File_sqlite3Shelve.test_pop
  • test_constructor - test.test_shelve.TestProto4File_dumbShelve.test_constructor
  • test_get - test.test_shelve.TestProto3File_dumbShelve.test_get
  • test_setdefault - test.test_shelve.TestProto4File_gnuShelve.test_setdefault
  • test_values - test.test_shelve.TestProto2File_sqlite3Shelve.test_values
  • test_random_open - test.test_zipfile.test_core.StoredTestsWithRandomBinaryFiles.test_random_open
  • test_bool - test.test_shelve.TestProto4File_ndbmShelve.test_bool
  • test_readlines - test.test_zipfile.test_core.StoredTestsWithSourceFile.test_readlines
  • test_keys - test.test_shelve.TestProto3File_ndbmShelve.test_keys
  • test_syntax_error_for_string - test.test_peg_generator.test_c_parser.TestCParser.test_syntax_error_for_string
  • test_bool - test.test_shelve.TestProto3File_dumbShelve.test_bool
  • test_constructor - test.test_shelve.TestProto3File_dumbShelve.test_constructor
  • test_constructor - test.test_shelve.TestProto1File_sqlite3Shelve.test_constructor
  • test_read - test.test_shelve.TestProto3File_sqlite3Shelve.test_read
  • test_get - test.test_shelve.TestProto2File_sqlite3Shelve.test_get
  • test_get - test.test_shelve.TestProto4File_dumbShelve.test_get
  • test_setdefault - test.test_shelve.TestProto3File_gnuShelve.test_setdefault
  • test_values - test.test_shelve.TestProto4File_gnuShelve.test_values
  • test_items - test.test_shelve.TestProto3File_dumbShelve.test_items
  • test_read - test.test_shelve.TestProto5File_ndbmShelve.test_read
  • test_readline - test.test_zipfile.test_core.StoredTestsWithSourceFile.test_readline
  • test_gather - test.test_peg_generator.test_c_parser.TestCParser.test_gather
  • test_keys - test.test_shelve.TestProto4File_ndbmShelve.test_keys
  • test_items - test.test_shelve.TestProto0File_sqlite3Shelve.test_items
  • test_write - test.test_shelve.TestProto2File_dumbShelve.test_write
  • test_items - test.test_shelve.TestProto3File_gnuShelve.test_items
  • test_write_pyfile_bad_syntax - test.test_zipfile.test_core.PyZipFileTests.test_write_pyfile_bad_syntax
  • test_constructor - test.test_shelve.TestProto0File_sqlite3Shelve.test_constructor
  • test_read - test.test_shelve.TestProto2File_ndbmShelve.test_read
  • test_pop - test.test_shelve.TestProto2File_dumbShelve.test_pop
  • test_bool - test.test_shelve.TestProto2File_sqlite3Shelve.test_bool
  • test_popitem - test.test_shelve.TestProto4File_sqlite3Shelve.test_popitem
  • test_getitem - test.test_shelve.TestProto2File_dumbShelve.test_getitem
  • test_read - test.test_shelve.TestProto4File_sqlite3Shelve.test_read
  • test_update - test.test_shelve.TestProto1File_sqlite3Shelve.test_update
  • test_cut - test.test_peg_generator.test_c_parser.TestCParser.test_cut
  • test_read - test.test_shelve.TestProto4File_ndbmShelve.test_read
  • test_open_with_pathlike - test.test_zipfile.test_core.StoredTestsWithSourceFile.test_open_with_pathlike
  • test_len - test.test_shelve.TestProto5File_dumbShelve.test_len
  • test_items - test.test_shelve.TestProto2File_dumbShelve.test_items
  • test_absolute_arcnames - test.test_zipfile.test_core.StoredTestZip64InSmallFiles.test_absolute_arcnames
  • test_items - test.test_shelve.TestProto4File_dumbShelve.test_items
  • test_setdefault - test.test_shelve.TestProto4File_sqlite3Shelve.test_setdefault
  • test_popitem - test.test_shelve.TestProto5File_dumbShelve.test_popitem
  • test_get - test.test_shelve.TestProto1File_sqlite3Shelve.test_get
  • test_write - test.test_shelve.TestProto4File_sqlite3Shelve.test_write
  • test_write - test.test_shelve.TestProto4File_gnuShelve.test_write
  • test_error_in_rules - test.test_peg_generator.test_c_parser.TestCParser.test_error_in_rules
  • test_write_pathlike - test.test_zipfile.test_core.PyZipFileTests.test_write_pathlike
  • test_getitem - test.test_shelve.TestProto4File_dumbShelve.test_getitem
  • test_items - test.test_shelve.TestProto4File_ndbmShelve.test_items
  • test_getitem - test.test_shelve.TestProto3File_sqlite3Shelve.test_getitem
  • test_read - test.test_shelve.TestProto2File_gnuShelve.test_read
  • test_open - test.test_zipfile.test_core.Bzip2TestsWithRandomBinaryFiles.test_open
  • test_setdefault - test.test_shelve.TestProto4File_ndbmShelve.test_setdefault
  • test_pop - test.test_shelve.TestProto2File_sqlite3Shelve.test_pop
  • test_update - test.test_shelve.TestProto5File_dumbShelve.test_update
  • test_update - test.test_shelve.TestProto3File_dumbShelve.test_update
  • test_read - test.test_shelve.TestProto5File_sqlite3Shelve.test_read
  • test_setdefault - test.test_shelve.TestProto5File_ndbmShelve.test_setdefault
  • test_forced_with_group - test.test_peg_generator.test_c_parser.TestCParser.test_forced_with_group
  • test_getitem - test.test_shelve.TestProto4File_ndbmShelve.test_getitem
  • test_build_cpp11 - test.test_cppext.TestCPPExt.test_build_cpp11
  • test_items - test.test_shelve.TestProto5File_ndbmShelve.test_items
  • test_popitem - test.test_shelve.TestProto2File_gnuShelve.test_popitem
  • test_readline_read - test.test_zipfile.test_core.StoredTestsWithSourceFile.test_readline_read
  • test_pop - test.test_shelve.TestProto3File_ndbmShelve.test_pop
  • test_write - test.test_shelve.TestProto2File_sqlite3Shelve.test_write
  • test_nasty_mutually_left_recursive - test.test_peg_generator.test_c_parser.TestCParser.test_nasty_mutually_left_recursive
  • test_write - test.test_shelve.TestProto2File_gnuShelve.test_write
  • test_pop - test.test_shelve.TestProto4File_gnuShelve.test_pop
  • test_setdefault - test.test_shelve.TestProto0File_sqlite3Shelve.test_setdefault
  • test_update - test.test_shelve.TestProto4File_ndbmShelve.test_update
  • test_basic - test.test_zipfile.test_core.StoredTestZip64InSmallFiles.test_basic
  • test_constructor - test.test_shelve.TestProto5File_ndbmShelve.test_constructor
  • test_getitem - test.test_shelve.TestProto3File_ndbmShelve.test_getitem
  • test_get - test.test_shelve.TestProto5File_gnuShelve.test_get
  • test_popitem - test.test_shelve.TestProto4File_gnuShelve.test_popitem
  • test_popitem - test.test_shelve.TestProto5File_gnuShelve.test_popitem
  • test_bool - test.test_shelve.TestProto5File_ndbmShelve.test_bool
  • test_bool - test.test_shelve.TestProto4File_dumbShelve.test_bool
  • test_soft_keywords - test.test_peg_generator.test_c_parser.TestCParser.test_soft_keywords
  • test_write - test.test_shelve.TestProto3File_sqlite3Shelve.test_write
  • test_keys - test.test_shelve.TestProto3File_dumbShelve.test_keys
  • test_ignores_newline_at_end - test.test_zipfile.test_core.StoredTestsWithSourceFile.test_ignores_newline_at_end
  • test_no_soft_keywords - test.test_peg_generator.test_c_parser.TestCParser.test_no_soft_keywords
  • test_len - test.test_shelve.TestProto4File_dumbShelve.test_len
  • test_pop - test.test_shelve.TestProto4File_dumbShelve.test_pop
  • test_update - test.test_shelve.TestProto4File_dumbShelve.test_update
  • test_keys - test.test_shelve.TestProto2File_sqlite3Shelve.test_keys
  • test_bool - test.test_shelve.TestProto2File_dumbShelve.test_bool
  • test_advanced_left_recursive - test.test_peg_generator.test_c_parser.TestCParser.test_advanced_left_recursive
  • test_write - test.test_shelve.TestProto5File_gnuShelve.test_write
  • test_values - test.test_shelve.TestProto1File_sqlite3Shelve.test_values
  • test_getitem - test.test_shelve.TestProto5File_ndbmShelve.test_getitem
  • test_popitem - test.test_shelve.TestProto2File_dumbShelve.test_popitem
  • test_read - test.test_zipfile.test_core.LzmaTestsWithRandomBinaryFiles.test_read
  • test_write_while_reading - test.test_zipfile.test_core.TestsWithMultipleOpens.test_write_while_reading
  • test_mutually_left_recursive - test.test_peg_generator.test_c_parser.TestCParser.test_mutually_left_recursive
  • test_getitem - test.test_shelve.TestProto2File_sqlite3Shelve.test_getitem
  • test_build_limited - test.test_cext.TestExt.test_build_limited
  • test_constructor - test.test_shelve.TestProto5File_dumbShelve.test_constructor
  • test_build - test.test_cext.TestExt.test_build
  • test_getitem - test.test_shelve.TestProto0File_sqlite3Shelve.test_getitem
  • test_io_on_closed_zipextfile - test.test_zipfile.test_core.StoredTestsWithSourceFile.test_io_on_closed_zipextfile
  • test_iterlines - test.test_zipfile.test_core.StoredTestsWithSourceFile.test_iterlines
  • test_read - test.test_shelve.TestProto3File_ndbmShelve.test_read
  • test_get - test.test_shelve.TestProto4File_ndbmShelve.test_get
  • test_items - test.test_shelve.TestProto4File_sqlite3Shelve.test_items
  • test_getitem - test.test_shelve.TestProto5File_dumbShelve.test_getitem
  • test_constructor - test.test_shelve.TestProto2File_dumbShelve.test_constructor
  • test_soft_keywords_lookahead - test.test_peg_generator.test_c_parser.TestCParser.test_soft_keywords_lookahead
  • test_absolute_arcnames - test.test_zipfile.test_core.StoredTestsWithSourceFile.test_absolute_arcnames
  • test_write_filtered_python_package - test.test_zipfile.test_core.PyZipFileTests.test_write_filtered_python_package
  • test_get - test.test_shelve.TestProto2File_dumbShelve.test_get
  • test_pop - test.test_shelve.TestProto5File_dumbShelve.test_pop
  • test_parse_makefile - test.test_sysconfig.MakefileTests.test_parse_makefile
  • test_pop - test.test_shelve.TestProto4File_ndbmShelve.test_pop
  • test_len - test.test_shelve.TestProto0File_sqlite3Shelve.test_len
  • test_update - test.test_shelve.TestProto3File_sqlite3Shelve.test_update
  • test_keys - test.test_shelve.TestProto3File_gnuShelve.test_keys
  • test_items - test.test_shelve.TestProto5File_dumbShelve.test_items
  • test_keys - test.test_shelve.TestProto2File_ndbmShelve.test_keys
  • test_popitem - test.test_shelve.TestProto2File_ndbmShelve.test_popitem
  • test_random_open - test.test_zipfile.test_core.StoredTestsWithSourceFile.test_random_open
  • test_setdefault - test.test_shelve.TestProto5File_sqlite3Shelve.test_setdefault
  • test_soft_keywords_parse - test.test_peg_generator.test_c_parser.TestCParser.test_soft_keywords_parse
  • test_file2file_not_supported - test.test_shutil.TestZeroCopySendfile.test_file2file_not_supported
  • test_update - test.test_shelve.TestProto5File_sqlite3Shelve.test_update
  • test_pop - test.test_shelve.TestProto3File_sqlite3Shelve.test_pop
  • test_cant_get_size - test.test_shutil.TestZeroCopySendfile.test_cant_get_size
  • test_update - test.test_shelve.TestProto3File_gnuShelve.test_update
  • test_write_python_directory_filtered - test.test_zipfile.test_core.PyZipFileTests.test_write_python_directory_filtered
  • test_keys - test.test_shelve.TestProto5File_gnuShelve.test_keys
  • test_lookahead - test.test_peg_generator.test_c_parser.TestCParser.test_lookahead
  • test_write - test.test_shelve.TestProto2File_ndbmShelve.test_write
  • test_read - test.test_shelve.TestProto4File_dumbShelve.test_read
  • test_read - test.test_shelve.TestProto5File_gnuShelve.test_read
  • test_values - test.test_shelve.TestProto4File_dumbShelve.test_values
  • test_constructor - test.test_shelve.TestProto4File_ndbmShelve.test_constructor
  • testZip64CruftAndComment - test.test_zipimport.CompressedZipImportTestCase.testZip64CruftAndComment
  • test_getitem - test.test_shelve.TestProto4File_sqlite3Shelve.test_getitem
  • test_keys - test.test_shelve.TestProto2File_dumbShelve.test_keys
  • test_setdefault - test.test_shelve.TestProto2File_ndbmShelve.test_setdefault
  • test_headers_and_trailer - test.test_peg_generator.test_c_parser.TestCParser.test_headers_and_trailer
  • test_constructor - test.test_shelve.TestProto5File_gnuShelve.test_constructor
  • test_negative_lookahead - test.test_peg_generator.test_c_parser.TestCParser.test_negative_lookahead
  • test_get - test.test_shelve.TestProto3File_gnuShelve.test_get
  • test_keys - test.test_shelve.TestProto5File_ndbmShelve.test_keys
  • test_update - test.test_shelve.TestProto5File_ndbmShelve.test_update
  • test_open - test.test_zipfile.test_core.StoredTestsWithSourceFile.test_open
  • test_update - test.test_shelve.TestProto2File_sqlite3Shelve.test_update
  • test_bool - test.test_shelve.TestProto3File_sqlite3Shelve.test_bool
  • test_values - test.test_shelve.TestProto5File_sqlite3Shelve.test_values
  • test_write - test.test_shelve.TestProto0File_sqlite3Shelve.test_write
  • test_write - test.test_shelve.TestProto5File_sqlite3Shelve.test_write
  • test_build - test.test_cppext.TestCPPExt.test_build
  • test_get - test.test_shelve.TestProto5File_ndbmShelve.test_get
  • test_build_cpp03 - test.test_cppext.TestCPPExt.test_build_cpp03
  • test_getitem - test.test_shelve.TestProto5File_gnuShelve.test_getitem
  • test_update - test.test_shelve.TestProto2File_ndbmShelve.test_update
  • test_open - test.test_zipfile.test_core.StoredTestsWithRandomBinaryFiles.test_open
  • test_popitem - test.test_shelve.TestProto3File_ndbmShelve.test_popitem
  • test_get - test.test_shelve.TestProto3File_ndbmShelve.test_get
  • test_len - test.test_shelve.TestProto3File_ndbmShelve.test_len
  • test_pop - test.test_shelve.TestProto0File_sqlite3Shelve.test_pop
  • test_with_stmt_with_paren - test.test_peg_generator.test_c_parser.TestCParser.test_with_stmt_with_paren
  • test_pop - test.test_shelve.TestProto3File_dumbShelve.test_pop
  • test_big_chunk - test.test_shutil.TestZeroCopySendfile.test_big_chunk
  • test_setdefault - test.test_shelve.TestProto5File_gnuShelve.test_setdefault
  • test_bool - test.test_shelve.TestProto3File_gnuShelve.test_bool
  • test_gather_action_ast - test.test_peg_generator.test_c_parser.TestCParser.test_gather_action_ast
  • test_read - test.test_shelve.TestProto2File_dumbShelve.test_read
  • test_setdefault - test.test_shelve.TestProto3File_sqlite3Shelve.test_setdefault
  • test_writestr_permissions - test.test_zipfile.test_core.StoredTestsWithSourceFile.test_writestr_permissions
  • test_write - test.test_shelve.TestProto3File_dumbShelve.test_write
  • test_basic - test.test_zipfile.test_core.StoredTestsWithSourceFile.test_basic
  • test_update - test.test_shelve.TestProto5File_gnuShelve.test_update
  • test_append - test.test_zipfile.test_core.StoredTestZip64InSmallFiles.test_append
  • test_write - test.test_shelve.TestProto1File_sqlite3Shelve.test_write
  • test_read - test.test_zipfile.test_core.StoredTestsWithRandomBinaryFiles.test_read
  • test_write_python_directory - test.test_zipfile.test_core.PyZipFileTests.test_write_python_directory
  • test_values - test.test_shelve.TestProto5File_dumbShelve.test_values
  • test_keys - test.test_shelve.TestProto4File_dumbShelve.test_keys
  • test_bool - test.test_shelve.TestProto2File_ndbmShelve.test_bool
  • test_read - test.test_shelve.TestProto2File_sqlite3Shelve.test_read
  • test_update - test.test_shelve.TestProto2File_gnuShelve.test_update
  • test_items - test.test_shelve.TestProto2File_gnuShelve.test_items
  • test_getitem - test.test_shelve.TestProto4File_gnuShelve.test_getitem
  • test_write_non_pyfile - test.test_zipfile.test_core.PyZipFileTests.test_write_non_pyfile
  • test_write - test.test_shelve.TestProto4File_ndbmShelve.test_write
  • testZip64CruftAndComment - test.test_zipimport.UncompressedZipImportTestCase.testZip64CruftAndComment
  • test_values - test.test_shelve.TestProto3File_sqlite3Shelve.test_values
  • test_popitem - test.test_shelve.TestProto4File_ndbmShelve.test_popitem
  • test_bool - test.test_shelve.TestProto4File_gnuShelve.test_bool
  • test_popitem - test.test_shelve.TestProto3File_sqlite3Shelve.test_popitem
  • test_len - test.test_shelve.TestProto4File_ndbmShelve.test_len
  • test_constructor - test.test_shelve.TestProto3File_sqlite3Shelve.test_constructor
  • test_items - test.test_shelve.TestProto5File_gnuShelve.test_items
  • test_constructor - test.test_shelve.TestProto3File_gnuShelve.test_constructor
  • test_read1_10 - test.test_zipfile.test_core.StoredTestsWithSourceFile.test_read1_10
  • test_get - test.test_shelve.TestProto4File_gnuShelve.test_get
  • test_too_many_files - test.test_zipfile.test_core.StoredTestZip64InSmallFiles.test_too_many_files
  • test_get - test.test_shelve.TestProto0File_sqlite3Shelve.test_get
  • test_get - test.test_shelve.TestProto2File_ndbmShelve.test_get
  • test_build_limited_c11 - test.test_cext.TestExt.test_build_limited_c11
  • test_bool - test.test_shelve.TestProto3File_ndbmShelve.test_bool
  • test_pop - test.test_shelve.TestProto2File_gnuShelve.test_pop
  • test_getitem - test.test_shelve.TestProto2File_gnuShelve.test_getitem
  • test_values - test.test_shelve.TestProto3File_ndbmShelve.test_values
  • test_values - test.test_shelve.TestProto4File_sqlite3Shelve.test_values
  • test_len - test.test_shelve.TestProto2File_ndbmShelve.test_len
  • test_generated_valid_zip64_extra - test.test_zipfile.test_core.StoredTestZip64InSmallFiles.test_generated_valid_zip64_extra
  • test_constructor - test.test_shelve.TestProto4File_gnuShelve.test_constructor
  • test_setdefault - test.test_shelve.TestProto2File_dumbShelve.test_setdefault
  • test_bool - test.test_shelve.TestProto5File_dumbShelve.test_bool
  • test_popitem - test.test_shelve.TestProto3File_gnuShelve.test_popitem
  • test_pop - test.test_shelve.TestProto5File_ndbmShelve.test_pop
  • test_regular_copy - test.test_shutil.TestZeroCopySendfile.test_regular_copy
  • test_update - test.test_shelve.TestProto0File_sqlite3Shelve.test_update
  • test_left_recursion - test.test_peg_generator.test_c_parser.TestCParser.test_left_recursion
  • test_popitem - test.test_shelve.TestProto1File_sqlite3Shelve.test_popitem
  • test_len - test.test_shelve.TestProto5File_ndbmShelve.test_len
  • test_pop - test.test_shelve.TestProto1File_sqlite3Shelve.test_pop
  • test_update - test.test_shelve.TestProto3File_ndbmShelve.test_update
  • test_pop - test.test_shelve.TestProto3File_gnuShelve.test_pop
  • test_large_file_exception - test.test_zipfile.test_core.StoredTestZip64InSmallFiles.test_large_file_exception
  • test_items - test.test_shelve.TestProto3File_sqlite3Shelve.test_items
  • test_popitem - test.test_shelve.TestProto2File_sqlite3Shelve.test_popitem
  • test_keys - test.test_shelve.TestProto5File_dumbShelve.test_keys
  • test_get - test.test_shelve.TestProto4File_sqlite3Shelve.test_get
  • test_return_stmt_noexpr_action - test.test_peg_generator.test_c_parser.TestCParser.test_return_stmt_noexpr_action
  • test_keys - test.test_shelve.TestProto4File_sqlite3Shelve.test_keys
  • test_pop - test.test_shelve.TestProto2File_ndbmShelve.test_pop
  • test_bool - test.test_shelve.TestProto2File_gnuShelve.test_bool
  • test_keys - test.test_shelve.TestProto3File_sqlite3Shelve.test_keys
  • test_values - test.test_shelve.TestProto5File_gnuShelve.test_values
  • test_add_file_after_2107 - test.test_zipfile.test_core.StoredTestsWithSourceFile.test_add_file_after_2107
  • test_len - test.test_shelve.TestProto3File_sqlite3Shelve.test_len
  • test_setdefault - test.test_shelve.TestProto3File_ndbmShelve.test_setdefault
  • test_items - test.test_shelve.TestProto4File_gnuShelve.test_items
  • test_update - test.test_shelve.TestProto4File_sqlite3Shelve.test_update
  • test_read - test.test_shelve.TestProto4File_gnuShelve.test_read
  • test_non_regular_file_src - test.test_shutil.TestZeroCopySendfile.test_non_regular_file_src
  • test_setdefault - test.test_shelve.TestProto2File_sqlite3Shelve.test_setdefault
  • test_len - test.test_shelve.TestProto2File_sqlite3Shelve.test_len
  • test_bool - test.test_shelve.TestProto4File_sqlite3Shelve.test_bool
  • test_write - test.test_shelve.TestProto5File_dumbShelve.test_write

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

==

Click to see traceback logs
Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 271, in test_get
    d = self._empty_mapping()
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shelve.py", line 186, in _empty_mapping
    x = shelve.open(self.base_path + str(self.counter), **self._args)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 250, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 227, in __init__
    Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)
                         ~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/__init__.py", line 95, in open
    return mod.open(file, flag, mode)
           ~~~~~~~~^^^^^^^^^^^^^^^^^^
_dbm.error: [Errno 28] No space left on device: '@test_339409_tmpæ/shelftemp.db1'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shutil.py", line 3126, in test_regular_copy
    self.zerocopy_fun(src, dst)
    ~~~~~~~~~~~~~~~~~^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shutil.py", line 3192, in zerocopy_fun
    return shutil._fastcopy_sendfile(fsrc, fdst)
           ~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shutil.py", line 164, in _fastcopy_sendfile
    raise err from None
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shutil.py", line 150, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
OSError: [Errno 28] No space left on device: '@test_335573_tmpæ' -> '@test_335573_tmpæ2'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_cext/__init__.py", line 41, in test_build_c99
    self.check_build('_test_c99_cext', std='c99')
    ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_cext/__init__.py", line 53, in check_build
    with support.setup_venv_with_pip_setuptools_wheel(venv_dir) as python_exe:
        self._check_build(extension_name, python_exe,
                          std=std, limited=limited)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/contextlib.py", line 141, in __enter__
    return next(self.gen)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/support/__init__.py", line 2355, in setup_venv_with_pip_setuptools_wheel
    run_command(cmd)
    ~~~~~~~~~~~^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/support/__init__.py", line 2330, in run_command
    subprocess.run(cmd, check=True)
    ~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/subprocess.py", line 577, in run
    raise CalledProcessError(retcode, process.args,
                             output=stdout, stderr=stderr)
subprocess.CalledProcessError: Command '['/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_335684æ/tempcwd/env/bin/python', '-X', 'dev', '-m', 'pip', 'install', '/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/wheeldata/setuptools-67.6.1-py3-none-any.whl', '/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/wheeldata/wheel-0.43.0-py3-none-any.whl']' returned non-zero exit status 1.


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 1472, in test_write_python_directory_filtered
    os.mkdir(TESTFN2)
    ~~~~~~~~^^^^^^^^^
OSError: [Errno 28] No space left on device: '@test_323369_tmpæ2'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 262, in test_readline
    self.zip_readline_test(f, self.compression)
    ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 251, in zip_readline_test
    self.make_test_archive(f, compression)
    ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 70, in make_test_archive
    with zipfp.open('written-open-w', mode='w') as f:
        for line in self.line_gen:
            f.write(line)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/zipfile/__init__.py", line 1268, in close
    raise RuntimeError("File size too large, try using force_zip64")
RuntimeError: File size too large, try using force_zip64


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipimport.py", line 854, in testZip64LargeFile
    with ZipFile(
    ...<9 lines>...
        z.write(os_helper.TESTFN, "data2")
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/zipfile/__init__.py", line 1423, in __exit__
    self.close()
    ~~~~~~~~~~^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/zipfile/__init__.py", line 1997, in close
    self._fpclose(fp)
    ~~~~~~~~~~~~~^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/zipfile/__init__.py", line 2097, in _fpclose
    fp.close()
    ~~~~~~~~^^
OSError: [Errno 28] No space left on device


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/sqlite3.py", line 79, in _execute
    return closing(self._cx.execute(*args, **kwargs))
                   ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
sqlite3.OperationalError: disk I/O error


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 2627, in make_test_archive
    zipfp.write(TESTFN, "another.name")
    ~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/zipfile/__init__.py", line 1894, in write
    with open(filename, "rb") as src, self.open(zinfo, 'w') as dest:
        shutil.copyfileobj(src, dest, 1024*8)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/zipfile/__init__.py", line 1259, in close
    self._fileobj.write(buf)
    ~~~~~~~~~~~~~~~~~~~^^^^^
OSError: [Errno 28] No space left on device


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 1449, in test_write_python_directory
    os.mkdir(TESTFN2)
    ~~~~~~~~^^^^^^^^^
OSError: [Errno 28] No space left on device: '@test_344369_tmpæ2'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 176, in test_update
    d.update(self.other)
    ~~~~~~~~^^^^^^^^^^^^
  File "<frozen _collections_abc>", line 982, in update
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 125, in __setitem__
    self.dict[key.encode(self.keyencoding)] = f.getvalue()
    ~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/dumb.py", line 203, in __setitem__
    self._addkey(key, self._addval(val))
                      ~~~~~~~~~~~~^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/dumb.py", line 161, in _addval
    with _io.open(self._datfile, 'rb+') as f:
    ...<5 lines>...
        f.write(val)
OSError: [Errno 28] No space left on device


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_335684æ/tempcwd/env/lib/python3.13/site-packages/pip/_internal/cli/base_command.py", line 180, in exc_logging_wrapper
    status = run_func(*args)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_335684æ/tempcwd/env/lib/python3.13/site-packages/pip/_internal/cli/req_command.py", line 245, in wrapper
    return func(self, options, args)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_335684æ/tempcwd/env/lib/python3.13/site-packages/pip/_internal/commands/install.py", line 324, in run
    session = self.get_default_session(options)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_335684æ/tempcwd/env/lib/python3.13/site-packages/pip/_internal/cli/req_command.py", line 95, in get_default_session
    self._session = self.enter_context(self._build_session(options))
                                       ~~~~~~~~~~~~~~~~~~~^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_335684æ/tempcwd/env/lib/python3.13/site-packages/pip/_internal/cli/req_command.py", line 122, in _build_session
    session = PipSession(
        cache=os.path.join(cache_dir, "http-v2") if cache_dir else None,
    ...<3 lines>...
        ssl_context=ssl_context,
    )
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_335684æ/tempcwd/env/lib/python3.13/site-packages/pip/_internal/network/session.py", line 342, in __init__
    self.headers["User-Agent"] = user_agent()
                                 ~~~~~~~~~~^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_335684æ/tempcwd/env/lib/python3.13/site-packages/pip/_internal/network/session.py", line 175, in user_agent
    setuptools_dist = get_default_environment().get_distribution("setuptools")
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_335684æ/tempcwd/env/lib/python3.13/site-packages/pip/_internal/metadata/importlib/_envs.py", line 189, in get_distribution
    return next(matches, None)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_335684æ/tempcwd/env/lib/python3.13/site-packages/pip/_internal/metadata/importlib/_envs.py", line 184, in <genexpr>
    matches = (
              ^
    ...<3 lines>...
    )
    ^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_335684æ/tempcwd/env/lib/python3.13/site-packages/pip/_internal/metadata/base.py", line 626, in iter_all_distributions
    for dist in self._iter_distributions():
                ~~~~~~~~~~~~~~~~~~~~~~~~^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_335684æ/tempcwd/env/lib/python3.13/site-packages/pip/_internal/metadata/importlib/_envs.py", line 177, in _iter_distributions
    for dist in finder.find_eggs(location):
                ~~~~~~~~~~~~~~~~^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_335684æ/tempcwd/env/lib/python3.13/site-packages/pip/_internal/metadata/importlib/_envs.py", line 144, in find_eggs
    yield from self._find_eggs_in_dir(location)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_335684æ/tempcwd/env/lib/python3.13/site-packages/pip/_internal/metadata/importlib/_envs.py", line 111, in _find_eggs_in_dir
    from pip._vendor.pkg_resources import find_distributions
  File "<frozen importlib._bootstrap>", line 1360, in _find_and_load
  File "<frozen importlib._bootstrap>", line 1331, in _find_and_load_unlocked
  File "<frozen importlib._bootstrap>", line 935, in _load_unlocked
  File "<frozen importlib._bootstrap_external>", line 1018, in exec_module
  File "<frozen importlib._bootstrap_external>", line 1151, in get_code
  File "<frozen importlib._bootstrap_external>", line 780, in _compile_bytecode
EOFError: marshal data too short
Traceback (most recent call last):
  File "<frozen runpy>", line 198, in _run_module_as_main
  File "<frozen runpy>", line 88, in _run_code
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_335684æ/tempcwd/env/lib/python3.13/site-packages/pip/__main__.py", line 24, in <module>
    sys.exit(_main())
             ~~~~~^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_335684æ/tempcwd/env/lib/python3.13/site-packages/pip/_internal/cli/main.py", line 79, in main
    return command.main(cmd_args)
           ~~~~~~~~~~~~^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_335684æ/tempcwd/env/lib/python3.13/site-packages/pip/_internal/cli/base_command.py", line 101, in main
    return self._main(args)
           ~~~~~~~~~~^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_335684æ/tempcwd/env/lib/python3.13/site-packages/pip/_internal/cli/base_command.py", line 236, in _main
    self.handle_pip_version_check(options)
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_335684æ/tempcwd/env/lib/python3.13/site-packages/pip/_internal/cli/req_command.py", line 177, in handle_pip_version_check
    session = self._build_session(
        options,
    ...<6 lines>...
        fallback_to_certifi=True,
    )
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_335684æ/tempcwd/env/lib/python3.13/site-packages/pip/_internal/cli/req_command.py", line 122, in _build_session
    session = PipSession(
        cache=os.path.join(cache_dir, "http-v2") if cache_dir else None,
    ...<3 lines>...
        ssl_context=ssl_context,
    )
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_335684æ/tempcwd/env/lib/python3.13/site-packages/pip/_internal/network/session.py", line 342, in __init__
    self.headers["User-Agent"] = user_agent()
                                 ~~~~~~~~~~^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_335684æ/tempcwd/env/lib/python3.13/site-packages/pip/_internal/network/session.py", line 175, in user_agent
    setuptools_dist = get_default_environment().get_distribution("setuptools")
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_335684æ/tempcwd/env/lib/python3.13/site-packages/pip/_internal/metadata/importlib/_envs.py", line 189, in get_distribution
    return next(matches, None)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_335684æ/tempcwd/env/lib/python3.13/site-packages/pip/_internal/metadata/importlib/_envs.py", line 184, in <genexpr>
    matches = (
              ^
    ...<3 lines>...
    )
    ^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_335684æ/tempcwd/env/lib/python3.13/site-packages/pip/_internal/metadata/base.py", line 626, in iter_all_distributions
    for dist in self._iter_distributions():
                ~~~~~~~~~~~~~~~~~~~~~~~~^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_335684æ/tempcwd/env/lib/python3.13/site-packages/pip/_internal/metadata/importlib/_envs.py", line 177, in _iter_distributions
    for dist in finder.find_eggs(location):
                ~~~~~~~~~~~~~~~~^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_335684æ/tempcwd/env/lib/python3.13/site-packages/pip/_internal/metadata/importlib/_envs.py", line 144, in find_eggs
    yield from self._find_eggs_in_dir(location)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_335684æ/tempcwd/env/lib/python3.13/site-packages/pip/_internal/metadata/importlib/_envs.py", line 111, in _find_eggs_in_dir
    from pip._vendor.pkg_resources import find_distributions
  File "<frozen importlib._bootstrap>", line 1360, in _find_and_load
  File "<frozen importlib._bootstrap>", line 1331, in _find_and_load_unlocked
  File "<frozen importlib._bootstrap>", line 935, in _load_unlocked
  File "<frozen importlib._bootstrap_external>", line 1018, in exec_module
  File "<frozen importlib._bootstrap_external>", line 1151, in get_code
  File "<frozen importlib._bootstrap_external>", line 780, in _compile_bytecode
EOFError: marshal data too short
ERROR


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shutil.py", line 3262, in test_big_chunk
    shutil._fastcopy_sendfile(src, dst)
    ~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shutil.py", line 164, in _fastcopy_sendfile
    raise err from None
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shutil.py", line 150, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
OSError: [Errno 28] No space left on device: '@test_344371_tmpæ' -> '@test_344371_tmpæ2'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_peg_generator/test_c_parser.py", line 117, in setUp
    self.tmp_path = tempfile.mkdtemp(dir=self.tmp_base)
                    ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/tempfile.py", line 384, in mkdtemp
    _os.mkdir(file, 0o700)
    ~~~~~~~~~^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_323115æ/tmpaff78ac7'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_peg_generator/test_c_parser.py", line 117, in setUp
    self.tmp_path = tempfile.mkdtemp(dir=self.tmp_base)
                    ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/tempfile.py", line 384, in mkdtemp
    _os.mkdir(file, 0o700)
    ~~~~~~~~~^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_323115æ/tmpx_z_41hz'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 294, in test_pop
    d = self._empty_mapping()
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shelve.py", line 186, in _empty_mapping
    x = shelve.open(self.base_path + str(self.counter), **self._args)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 250, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 227, in __init__
    Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)
                         ~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/__init__.py", line 95, in open
    return mod.open(file, flag, mode)
           ~~~~~~~~^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/sqlite3.py", line 140, in open
    return _Database(filename, flag=flag, mode=mode)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/sqlite3.py", line 73, in __init__
    self._execute(BUILD_TABLE)
    ~~~~~~~~~~~~~^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/sqlite3.py", line 81, in _execute
    raise error(str(exc))
dbm.sqlite3.error: database or disk is full


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 137, in test_bool
    self.assertTrue(not self._empty_mapping())
                        ~~~~~~~~~~~~~~~~~~~^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shelve.py", line 186, in _empty_mapping
    x = shelve.open(self.base_path + str(self.counter), **self._args)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 250, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 227, in __init__
    Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)
                         ~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/__init__.py", line 95, in open
    return mod.open(file, flag, mode)
           ~~~~~~~~^^^^^^^^^^^^^^^^^^
_gdbm.error: [Errno 28] No space left on device: '@test_344379_tmpæ/shelftemp.db1'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_peg_generator/test_c_parser.py", line 117, in setUp
    self.tmp_path = tempfile.mkdtemp(dir=self.tmp_base)
                    ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/tempfile.py", line 384, in mkdtemp
    _os.mkdir(file, 0o700)
    ~~~~~~~~~^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_323115æ/tmpotm_jc64'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 2696, in test_random_open
    self.zip_random_open_test(f, self.compression)
    ~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 2678, in zip_random_open_test
    self.make_test_archive(f, compression)
    ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 2626, in make_test_archive
    with zipfile.ZipFile(f, "w", compression) as zipfp:
        zipfp.write(TESTFN, "another.name")
        zipfp.write(TESTFN, TESTFN)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/zipfile/__init__.py", line 1423, in __exit__
    self.close()
    ~~~~~~~~~~^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/zipfile/__init__.py", line 1997, in close
    self._fpclose(fp)
    ~~~~~~~~~~~~~^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/zipfile/__init__.py", line 2097, in _fpclose
    fp.close()
    ~~~~~~~~^^
OSError: [Errno 28] No space left on device


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipimport.py", line 120, in makeZip
    z.writestr(zinfo, data)
    ~~~~~~~~~~^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/zipfile/__init__.py", line 1935, in writestr
    with self.open(zinfo, mode='w') as dest:
        dest.write(data)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/zipfile/__init__.py", line 1285, in close
    self._fileobj.seek(self._zinfo.header_offset)
    ~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 1442, in test_write_with_optimization
    zipfp.writepy(packagedir)
    ~~~~~~~~~~~~~^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/zipfile/__init__.py", line 2140, in writepy
    fname, arcname = self._get_codename(initname[0:-3], basename)
                     ~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/zipfile/__init__.py", line 2266, in _get_codename
    if not _compile(file_py, optimize=self._optimize):
           ~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/zipfile/__init__.py", line 2203, in _compile
    py_compile.compile(file, doraise=True, optimize=optimize)
    ~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/py_compile.py", line 172, in compile
    importlib._bootstrap_external._write_atomic(cfile, bytecode, mode)
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^
  File "<frozen importlib._bootstrap_external>", line 212, in _write_atomic
OSError: [Errno 28] No space left on device


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_peg_generator/test_c_parser.py", line 117, in setUp
    self.tmp_path = tempfile.mkdtemp(dir=self.tmp_base)
                    ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/tempfile.py", line 384, in mkdtemp
    _os.mkdir(file, 0o700)
    ~~~~~~~~~^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_323115æ/tmp1d9o4hkc'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 143, in test_keys
    d = self._empty_mapping()
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shelve.py", line 186, in _empty_mapping
    x = shelve.open(self.base_path + str(self.counter), **self._args)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 250, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 227, in __init__
    Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)
                         ~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/__init__.py", line 95, in open
    return mod.open(file, flag, mode)
           ~~~~~~~~^^^^^^^^^^^^^^^^^^
_dbm.error: [Errno 28] No space left on device: '@test_339409_tmpæ/shelftemp.db1'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_peg_generator/test_c_parser.py", line 117, in setUp
    self.tmp_path = tempfile.mkdtemp(dir=self.tmp_base)
                    ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/tempfile.py", line 384, in mkdtemp
    _os.mkdir(file, 0o700)
    ~~~~~~~~~^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_323115æ/tmpthbt3tzm'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 203, in test_read1
    self.zip_read1_test(f, self.compression)
    ~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 187, in zip_read1_test
    self.make_test_archive(f, compression)
    ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 70, in make_test_archive
    with zipfp.open('written-open-w', mode='w') as f:
        for line in self.line_gen:
            f.write(line)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/zipfile/__init__.py", line 1268, in close
    raise RuntimeError("File size too large, try using force_zip64")
RuntimeError: File size too large, try using force_zip64


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 289, in test_popitem
    d = self._empty_mapping()
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shelve.py", line 186, in _empty_mapping
    x = shelve.open(self.base_path + str(self.counter), **self._args)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 250, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 227, in __init__
    Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)
                         ~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/__init__.py", line 95, in open
    return mod.open(file, flag, mode)
           ~~~~~~~~^^^^^^^^^^^^^^^^^^
_gdbm.error: [Errno 28] No space left on device: '@test_344379_tmpæ/shelftemp.db1'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_peg_generator/test_c_parser.py", line 117, in setUp
    self.tmp_path = tempfile.mkdtemp(dir=self.tmp_base)
                    ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/tempfile.py", line 384, in mkdtemp
    _os.mkdir(file, 0o700)
    ~~~~~~~~~^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_323115æ/tmprpwdmm3z'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 1449, in test_write_python_directory
    os.mkdir(TESTFN2)
    ~~~~~~~~^^^^^^^^^
OSError: [Errno 28] No space left on device: '@test_323369_tmpæ2'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 271, in test_get
    d = self._empty_mapping()
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shelve.py", line 186, in _empty_mapping
    x = shelve.open(self.base_path + str(self.counter), **self._args)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 250, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 227, in __init__
    Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)
                         ~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/__init__.py", line 95, in open
    return mod.open(file, flag, mode)
           ~~~~~~~~^^^^^^^^^^^^^^^^^^
_dbm.error: [Errno 28] No space left on device: '@test_344379_tmpæ/shelftemp.db1'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 1521, in test_write_pathlike
    os.mkdir(TESTFN2)
    ~~~~~~~~^^^^^^^^^
OSError: [Errno 28] No space left on device: '@test_344369_tmpæ2'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 285, in test_setdefault
    d = self._empty_mapping()
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shelve.py", line 186, in _empty_mapping
    x = shelve.open(self.base_path + str(self.counter), **self._args)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 250, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 227, in __init__
    Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)
                         ~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/__init__.py", line 95, in open
    return mod.open(file, flag, mode)
           ~~~~~~~~^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/sqlite3.py", line 140, in open
    return _Database(filename, flag=flag, mode=mode)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/sqlite3.py", line 73, in __init__
    self._execute(BUILD_TABLE)
    ~~~~~~~~~~~~~^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/sqlite3.py", line 81, in _execute
    raise error(str(exc))
dbm.sqlite3.error: database or disk is full


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 143, in test_keys
    d = self._empty_mapping()
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shelve.py", line 186, in _empty_mapping
    x = shelve.open(self.base_path + str(self.counter), **self._args)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 250, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 227, in __init__
    Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)
                         ~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/__init__.py", line 95, in open
    return mod.open(file, flag, mode)
           ~~~~~~~~^^^^^^^^^^^^^^^^^^
_gdbm.error: [Errno 28] No space left on device: '@test_344379_tmpæ/shelftemp.db1'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 175, in test_update
    d = self._empty_mapping()
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shelve.py", line 186, in _empty_mapping
    x = shelve.open(self.base_path + str(self.counter), **self._args)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 250, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 227, in __init__
    Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)
                         ~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/__init__.py", line 95, in open
    return mod.open(file, flag, mode)
           ~~~~~~~~^^^^^^^^^^^^^^^^^^
_gdbm.error: [Errno 28] No space left on device: '@test_339409_tmpæ/shelftemp.db1'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 137, in test_bool
    self.assertTrue(not self._empty_mapping())
                        ~~~~~~~~~~~~~~~~~~~^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shelve.py", line 186, in _empty_mapping
    x = shelve.open(self.base_path + str(self.counter), **self._args)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 250, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 227, in __init__
    Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)
                         ~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/__init__.py", line 95, in open
    return mod.open(file, flag, mode)
           ~~~~~~~~^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/sqlite3.py", line 140, in open
    return _Database(filename, flag=flag, mode=mode)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/sqlite3.py", line 73, in __init__
    self._execute(BUILD_TABLE)
    ~~~~~~~~~~~~~^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/sqlite3.py", line 81, in _execute
    raise error(str(exc))
dbm.sqlite3.error: database or disk is full


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 289, in test_iterlines
    self.zip_iterlines_test(f, self.compression)
    ~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 279, in zip_iterlines_test
    self.make_test_archive(f, compression)
    ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 70, in make_test_archive
    with zipfp.open('written-open-w', mode='w') as f:
        for line in self.line_gen:
            f.write(line)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/zipfile/__init__.py", line 1268, in close
    raise RuntimeError("File size too large, try using force_zip64")
RuntimeError: File size too large, try using force_zip64


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 289, in test_popitem
    d = self._empty_mapping()
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shelve.py", line 186, in _empty_mapping
    x = shelve.open(self.base_path + str(self.counter), **self._args)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 250, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 227, in __init__
    Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)
                         ~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/__init__.py", line 95, in open
    return mod.open(file, flag, mode)
           ~~~~~~~~^^^^^^^^^^^^^^^^^^
_dbm.error: [Errno 28] No space left on device: '@test_339409_tmpæ/shelftemp.db1'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 214, in test_update
    d = self._empty_mapping()
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shelve.py", line 186, in _empty_mapping
    x = shelve.open(self.base_path + str(self.counter), **self._args)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 250, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 227, in __init__
    Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)
                         ~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/__init__.py", line 95, in open
    return mod.open(file, flag, mode)
           ~~~~~~~~^^^^^^^^^^^^^^^^^^
_gdbm.error: [Errno 28] No space left on device: '@test_339409_tmpæ/shelftemp.db6'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_peg_generator/test_c_parser.py", line 117, in setUp
    self.tmp_path = tempfile.mkdtemp(dir=self.tmp_base)
                    ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/tempfile.py", line 384, in mkdtemp
    _os.mkdir(file, 0o700)
    ~~~~~~~~~^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_323115æ/tmpib_fj8wd'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shutil.py", line 3236, in test_cant_get_size
    shutil._fastcopy_sendfile(src, dst)
    ~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shutil.py", line 164, in _fastcopy_sendfile
    raise err from None
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shutil.py", line 150, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
OSError: [Errno 28] No space left on device: '@test_335573_tmpæ' -> '@test_335573_tmpæ2'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 175, in test_update
    d = self._empty_mapping()
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shelve.py", line 186, in _empty_mapping
    x = shelve.open(self.base_path + str(self.counter), **self._args)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 250, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 227, in __init__
    Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)
                         ~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/__init__.py", line 95, in open
    return mod.open(file, flag, mode)
           ~~~~~~~~^^^^^^^^^^^^^^^^^^
_gdbm.error: [Errno 28] No space left on device: '@test_344379_tmpæ/shelftemp.db1'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 1521, in test_write_pathlike
    os.mkdir(TESTFN2)
    ~~~~~~~~^^^^^^^^^
OSError: [Errno 28] No space left on device: '@test_323369_tmpæ2'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_peg_generator/test_c_parser.py", line 117, in setUp
    self.tmp_path = tempfile.mkdtemp(dir=self.tmp_base)
                    ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/tempfile.py", line 384, in mkdtemp
    _os.mkdir(file, 0o700)
    ~~~~~~~~~^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_323115æ/tmpqae73l7n'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 289, in test_popitem
    d = self._empty_mapping()
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shelve.py", line 186, in _empty_mapping
    x = shelve.open(self.base_path + str(self.counter), **self._args)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 250, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 227, in __init__
    Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)
                         ~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/__init__.py", line 95, in open
    return mod.open(file, flag, mode)
           ~~~~~~~~^^^^^^^^^^^^^^^^^^
_gdbm.error: [Errno 28] No space left on device: '@test_339409_tmpæ/shelftemp.db1'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_cppext/__init__.py", line 32, in test_build_cpp03
    self.check_build('_testcpp03ext', std='c++03')
    ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_cppext/__init__.py", line 46, in check_build
    with support.setup_venv_with_pip_setuptools_wheel(venv_dir) as python_exe:
        self._check_build(extension_name, python_exe, std=std)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/contextlib.py", line 141, in __enter__
    return next(self.gen)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/support/__init__.py", line 2340, in setup_venv_with_pip_setuptools_wheel
    run_command(cmd)
    ~~~~~~~~~~~^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/support/__init__.py", line 2330, in run_command
    subprocess.run(cmd, check=True)
    ~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/subprocess.py", line 577, in run
    raise CalledProcessError(retcode, process.args,
                             output=stdout, stderr=stderr)
subprocess.CalledProcessError: Command '['/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/python', '-X', 'dev', '-m', 'venv', 'env']' returned non-zero exit status 1.


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_cext/__init__.py", line 41, in test_build_c99
    self.check_build('_test_c99_cext', std='c99')
    ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_cext/__init__.py", line 53, in check_build
    with support.setup_venv_with_pip_setuptools_wheel(venv_dir) as python_exe:
        self._check_build(extension_name, python_exe,
                          std=std, limited=limited)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/contextlib.py", line 141, in __enter__
    return next(self.gen)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/support/__init__.py", line 2340, in setup_venv_with_pip_setuptools_wheel
    run_command(cmd)
    ~~~~~~~~~~~^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/support/__init__.py", line 2330, in run_command
    subprocess.run(cmd, check=True)
    ~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/subprocess.py", line 577, in run
    raise CalledProcessError(retcode, process.args,
                             output=stdout, stderr=stderr)
subprocess.CalledProcessError: Command '['/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/python', '-X', 'dev', '-m', 'venv', 'env']' returned non-zero exit status 1.


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_peg_generator/test_c_parser.py", line 117, in setUp
    self.tmp_path = tempfile.mkdtemp(dir=self.tmp_base)
                    ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/tempfile.py", line 384, in mkdtemp
    _os.mkdir(file, 0o700)
    ~~~~~~~~~^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_323115æ/tmp64ioy9cc'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_cppext/__init__.py", line 29, in test_build
    self.check_build('_testcppext')
    ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_cppext/__init__.py", line 46, in check_build
    with support.setup_venv_with_pip_setuptools_wheel(venv_dir) as python_exe:
        self._check_build(extension_name, python_exe, std=std)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/contextlib.py", line 141, in __enter__
    return next(self.gen)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/support/__init__.py", line 2340, in setup_venv_with_pip_setuptools_wheel
    run_command(cmd)
    ~~~~~~~~~~~^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/support/__init__.py", line 2330, in run_command
    subprocess.run(cmd, check=True)
    ~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/subprocess.py", line 577, in run
    raise CalledProcessError(retcode, process.args,
                             output=stdout, stderr=stderr)
subprocess.CalledProcessError: Command '['/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/python', '-X', 'dev', '-m', 'venv', 'env']' returned non-zero exit status 1.


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shutil.py", line 3126, in test_regular_copy
    self.zerocopy_fun(src, dst)
    ~~~~~~~~~~~~~~~~~^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shutil.py", line 3192, in zerocopy_fun
    return shutil._fastcopy_sendfile(fsrc, fdst)
           ~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shutil.py", line 164, in _fastcopy_sendfile
    raise err from None
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shutil.py", line 150, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
OSError: [Errno 28] No space left on device: '@test_344371_tmpæ' -> '@test_344371_tmpæ2'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_peg_generator/test_c_parser.py", line 117, in setUp
    self.tmp_path = tempfile.mkdtemp(dir=self.tmp_base)
                    ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/tempfile.py", line 384, in mkdtemp
    _os.mkdir(file, 0o700)
    ~~~~~~~~~^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_323115æ/tmpn_9qilpd'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 285, in test_setdefault
    d = self._empty_mapping()
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shelve.py", line 186, in _empty_mapping
    x = shelve.open(self.base_path + str(self.counter), **self._args)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 250, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 227, in __init__
    Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)
                         ~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/__init__.py", line 95, in open
    return mod.open(file, flag, mode)
           ~~~~~~~~^^^^^^^^^^^^^^^^^^
_gdbm.error: [Errno 28] No space left on device: '@test_344379_tmpæ/shelftemp.db1'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shelve.py", line 192, in setUp
    os.mkdir(dirname)
    ~~~~~~~~^^^^^^^^^
OSError: [Errno 28] No space left on device: '@test_339409_tmpæ'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_peg_generator/test_c_parser.py", line 117, in setUp
    self.tmp_path = tempfile.mkdtemp(dir=self.tmp_base)
                    ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/tempfile.py", line 384, in mkdtemp
    _os.mkdir(file, 0o700)
    ~~~~~~~~~^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_323115æ/tmpcf11rykw'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 1472, in test_write_python_directory_filtered
    os.mkdir(TESTFN2)
    ~~~~~~~~^^^^^^^^^
OSError: [Errno 28] No space left on device: '@test_344369_tmpæ2'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 223, in test_read1_10
    self.zip_read1_10_test(f, self.compression)
    ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 206, in zip_read1_10_test
    self.make_test_archive(f, compression)
    ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 70, in make_test_archive
    with zipfp.open('written-open-w', mode='w') as f:
        for line in self.line_gen:
            f.write(line)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/zipfile/__init__.py", line 1268, in close
    raise RuntimeError("File size too large, try using force_zip64")
RuntimeError: File size too large, try using force_zip64


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipimport.py", line 860, in testZip64LargeFile
    z.write(os_helper.TESTFN, "data1")
    ~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/zipfile/__init__.py", line 1894, in write
    with open(filename, "rb") as src, self.open(zinfo, 'w') as dest:
        shutil.copyfileobj(src, dest, 1024*8)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/zipfile/__init__.py", line 1285, in close
    self._fileobj.seek(self._zinfo.header_offset)
    ~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 45, in test_read
    p = self._empty_mapping()
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shelve.py", line 186, in _empty_mapping
    x = shelve.open(self.base_path + str(self.counter), **self._args)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 250, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 227, in __init__
    Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)
                         ~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/__init__.py", line 95, in open
    return mod.open(file, flag, mode)
           ~~~~~~~~^^^^^^^^^^^^^^^^^^
_dbm.error: [Errno 28] No space left on device: '@test_339409_tmpæ/shelftemp.db1'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 1499, in test_write_pyfile_bad_syntax
    os.mkdir(TESTFN2)
    ~~~~~~~~^^^^^^^^^
OSError: [Errno 28] No space left on device: '@test_323369_tmpæ2'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipimport.py", line 816, in testZip64CruftAndComment
    self.doTest(".py", files, "f65536", comment=b"c" * ((1 << 16) - 1))
    ~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipimport.py", line 139, in doTest
    self.makeZip(files, **kw)
    ~~~~~~~~~~~~^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipimport.py", line 116, in makeZip
    with ZipFile(zipName, "w") as z:
    ...<6 lines>...
            z.comment = comment
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/zipfile/__init__.py", line 1423, in __exit__
    self.close()
    ~~~~~~~~~~^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/zipfile/__init__.py", line 1997, in close
    self._fpclose(fp)
    ~~~~~~~~~~~~~^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/zipfile/__init__.py", line 2097, in _fpclose
    fp.close()
    ~~~~~~~~^^
OSError: [Errno 28] No space left on device


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 93, in test_write
    p = self._empty_mapping()
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shelve.py", line 186, in _empty_mapping
    x = shelve.open(self.base_path + str(self.counter), **self._args)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 250, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 227, in __init__
    Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)
                         ~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/__init__.py", line 95, in open
    return mod.open(file, flag, mode)
           ~~~~~~~~^^^^^^^^^^^^^^^^^^
_gdbm.error: [Errno 28] No space left on device: '@test_344379_tmpæ/shelftemp.db1'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 271, in test_get
    d = self._empty_mapping()
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shelve.py", line 186, in _empty_mapping
    x = shelve.open(self.base_path + str(self.counter), **self._args)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 250, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 227, in __init__
    Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)
                         ~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/__init__.py", line 95, in open
    return mod.open(file, flag, mode)
           ~~~~~~~~^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/sqlite3.py", line 140, in open
    return _Database(filename, flag=flag, mode=mode)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/sqlite3.py", line 73, in __init__
    self._execute(BUILD_TABLE)
    ~~~~~~~~~~~~~^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/sqlite3.py", line 81, in _execute
    raise error(str(exc))
dbm.sqlite3.error: database or disk is full


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shutil.py", line 3262, in test_big_chunk
    shutil._fastcopy_sendfile(src, dst)
    ~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shutil.py", line 164, in _fastcopy_sendfile
    raise err from None
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shutil.py", line 150, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
OSError: [Errno 28] No space left on device: '@test_335573_tmpæ' -> '@test_335573_tmpæ2'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 61, in setUp
    fp.write(self.data)
    ~~~~~~~~^^^^^^^^^^^
OSError: [Errno 28] No space left on device


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 175, in test_update
    d = self._empty_mapping()
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shelve.py", line 186, in _empty_mapping
    x = shelve.open(self.base_path + str(self.counter), **self._args)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 250, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 227, in __init__
    Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)
                         ~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/__init__.py", line 95, in open
    return mod.open(file, flag, mode)
           ~~~~~~~~^^^^^^^^^^^^^^^^^^
_dbm.error: [Errno 28] No space left on device: '@test_339409_tmpæ/shelftemp.db1'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 163, in test_open_with_pathlike
    self.zip_open_test(path, self.compression)
    ~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 134, in zip_open_test
    self.make_test_archive(f, compression)
    ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 70, in make_test_archive
    with zipfp.open('written-open-w', mode='w') as f:
        for line in self.line_gen:
            f.write(line)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/zipfile/__init__.py", line 1268, in close
    raise RuntimeError("File size too large, try using force_zip64")
RuntimeError: File size too large, try using force_zip64


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_cext/__init__.py", line 37, in test_build_c11
    self.check_build('_test_c11_cext', std='c11')
    ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_cext/__init__.py", line 53, in check_build
    with support.setup_venv_with_pip_setuptools_wheel(venv_dir) as python_exe:
        self._check_build(extension_name, python_exe,
                          std=std, limited=limited)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/contextlib.py", line 141, in __enter__
    return next(self.gen)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/support/__init__.py", line 2340, in setup_venv_with_pip_setuptools_wheel
    run_command(cmd)
    ~~~~~~~~~~~^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/support/__init__.py", line 2330, in run_command
    subprocess.run(cmd, check=True)
    ~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/subprocess.py", line 577, in run
    raise CalledProcessError(retcode, process.args,
                             output=stdout, stderr=stderr)
subprocess.CalledProcessError: Command '['/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/python', '-X', 'dev', '-m', 'venv', 'env']' returned non-zero exit status 1.


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 248, in test_readline_read
    self.zip_readline_read_test(f, self.compression)
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 226, in zip_readline_read_test
    self.make_test_archive(f, compression)
    ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 70, in make_test_archive
    with zipfp.open('written-open-w', mode='w') as f:
        for line in self.line_gen:
            f.write(line)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/zipfile/__init__.py", line 1268, in close
    raise RuntimeError("File size too large, try using force_zip64")
RuntimeError: File size too large, try using force_zip64


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 2675, in test_open
    self.zip_open_test(f, self.compression)
    ~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 2645, in zip_open_test
    self.make_test_archive(f, compression)
    ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 2626, in make_test_archive
    with zipfile.ZipFile(f, "w", compression) as zipfp:
        zipfp.write(TESTFN, "another.name")
        zipfp.write(TESTFN, TESTFN)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/zipfile/__init__.py", line 1423, in __exit__
    self.close()
    ~~~~~~~~~~^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/zipfile/__init__.py", line 1997, in close
    self._fpclose(fp)
    ~~~~~~~~~~~~~^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/zipfile/__init__.py", line 2097, in _fpclose
    fp.close()
    ~~~~~~~~^^
OSError: [Errno 28] No space left on device


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 1493, in test_write_non_pyfile
    with open(TESTFN, 'w', encoding='utf-8') as f:
        f.write('most definitely not a python file')
OSError: [Errno 28] No space left on device


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_peg_generator/test_c_parser.py", line 117, in setUp
    self.tmp_path = tempfile.mkdtemp(dir=self.tmp_base)
                    ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/tempfile.py", line 384, in mkdtemp
    _os.mkdir(file, 0o700)
    ~~~~~~~~~^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_323115æ/tmpgfdya0sn'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 45, in test_read
    p = self._empty_mapping()
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shelve.py", line 186, in _empty_mapping
    x = shelve.open(self.base_path + str(self.counter), **self._args)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 250, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 227, in __init__
    Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)
                         ~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/__init__.py", line 95, in open
    return mod.open(file, flag, mode)
           ~~~~~~~~^^^^^^^^^^^^^^^^^^
_gdbm.error: [Errno 28] No space left on device: '@test_344379_tmpæ/shelftemp.db1'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 399, in test_compresslevel_basic
    self.zip_test(f, self.compression, compresslevel=9)
    ~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 75, in zip_test
    self.make_test_archive(f, compression, compresslevel)
    ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 70, in make_test_archive
    with zipfp.open('written-open-w', mode='w') as f:
        for line in self.line_gen:
            f.write(line)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/zipfile/__init__.py", line 1268, in close
    raise RuntimeError("File size too large, try using force_zip64")
RuntimeError: File size too large, try using force_zip64


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 151, in test_values
    d = self._empty_mapping()
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shelve.py", line 186, in _empty_mapping
    x = shelve.open(self.base_path + str(self.counter), **self._args)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 250, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 227, in __init__
    Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)
                         ~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/__init__.py", line 95, in open
    return mod.open(file, flag, mode)
           ~~~~~~~~^^^^^^^^^^^^^^^^^^
_gdbm.error: [Errno 28] No space left on device: '@test_344379_tmpæ/shelftemp.db1'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 285, in test_setdefault
    d = self._empty_mapping()
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shelve.py", line 186, in _empty_mapping
    x = shelve.open(self.base_path + str(self.counter), **self._args)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 250, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 227, in __init__
    Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)
                         ~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/__init__.py", line 95, in open
    return mod.open(file, flag, mode)
           ~~~~~~~~^^^^^^^^^^^^^^^^^^
_dbm.error: [Errno 28] No space left on device: '@test_344379_tmpæ/shelftemp.db1'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_cext/__init__.py", line 49, in test_build_limited_c11
    self.check_build('_test_limited_c11_cext', limited=True, std='c11')
    ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_cext/__init__.py", line 53, in check_build
    with support.setup_venv_with_pip_setuptools_wheel(venv_dir) as python_exe:
        self._check_build(extension_name, python_exe,
                          std=std, limited=limited)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/contextlib.py", line 141, in __enter__
    return next(self.gen)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/support/__init__.py", line 2340, in setup_venv_with_pip_setuptools_wheel
    run_command(cmd)
    ~~~~~~~~~~~^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/support/__init__.py", line 2330, in run_command
    subprocess.run(cmd, check=True)
    ~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/subprocess.py", line 577, in run
    raise CalledProcessError(retcode, process.args,
                             output=stdout, stderr=stderr)
subprocess.CalledProcessError: Command '['/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/python', '-X', 'dev', '-m', 'venv', 'env']' returned non-zero exit status 1.


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 2628, in make_test_archive
    zipfp.write(TESTFN, TESTFN)
    ~~~~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/zipfile/__init__.py", line 1894, in write
    with open(filename, "rb") as src, self.open(zinfo, 'w') as dest:
        shutil.copyfileobj(src, dest, 1024*8)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/zipfile/__init__.py", line 1259, in close
    self._fileobj.write(buf)
    ~~~~~~~~~~~~~~~~~~~^^^^^
OSError: [Errno 28] No space left on device


Traceback (test.test_zipimport.CompressedZipImportTestCase.testTraceback) ... ok


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 131, in test_basic
    self.zip_test(f, self.compression)
    ~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 75, in zip_test
    self.make_test_archive(f, compression, compresslevel)
    ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 70, in make_test_archive
    with zipfp.open('written-open-w', mode='w') as f:
        for line in self.line_gen:
            f.write(line)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/zipfile/__init__.py", line 1268, in close
    raise RuntimeError("File size too large, try using force_zip64")
RuntimeError: File size too large, try using force_zip64


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_peg_generator/test_c_parser.py", line 117, in setUp
    self.tmp_path = tempfile.mkdtemp(dir=self.tmp_base)
                    ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/tempfile.py", line 384, in mkdtemp
    _os.mkdir(file, 0o700)
    ~~~~~~~~~^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_323115æ/tmpw6hb4plk'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_peg_generator/test_c_parser.py", line 117, in setUp
    self.tmp_path = tempfile.mkdtemp(dir=self.tmp_base)
                    ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/tempfile.py", line 384, in mkdtemp
    _os.mkdir(file, 0o700)
    ~~~~~~~~~^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_323115æ/tmpiyztguha'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 101, in test_write
    p = self._empty_mapping()
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shelve.py", line 186, in _empty_mapping
    x = shelve.open(self.base_path + str(self.counter), **self._args)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 250, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 227, in __init__
    Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)
                         ~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/__init__.py", line 95, in open
    return mod.open(file, flag, mode)
           ~~~~~~~~^^^^^^^^^^^^^^^^^^
_gdbm.error: [Errno 28] No space left on device: '@test_339409_tmpæ/shelftemp.db2'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 151, in test_values
    d = self._empty_mapping()
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shelve.py", line 186, in _empty_mapping
    x = shelve.open(self.base_path + str(self.counter), **self._args)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 250, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 227, in __init__
    Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)
                         ~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/__init__.py", line 95, in open
    return mod.open(file, flag, mode)
           ~~~~~~~~^^^^^^^^^^^^^^^^^^
_gdbm.error: [Errno 28] No space left on device: '@test_339409_tmpæ/shelftemp.db1'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_peg_generator/test_c_parser.py", line 117, in setUp
    self.tmp_path = tempfile.mkdtemp(dir=self.tmp_base)
                    ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/tempfile.py", line 384, in mkdtemp
    _os.mkdir(file, 0o700)
    ~~~~~~~~~^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_323115æ/tmpuk3daisg'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_peg_generator/test_c_parser.py", line 117, in setUp
    self.tmp_path = tempfile.mkdtemp(dir=self.tmp_base)
                    ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/tempfile.py", line 384, in mkdtemp
    _os.mkdir(file, 0o700)
    ~~~~~~~~~^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_323115æ/tmp8hs23nif'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/sqlite3.py", line 79, in _execute
    return closing(self._cx.execute(*args, **kwargs))
                   ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
sqlite3.OperationalError: database or disk is full


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 294, in test_pop
    d = self._empty_mapping()
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shelve.py", line 186, in _empty_mapping
    x = shelve.open(self.base_path + str(self.counter), **self._args)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 250, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 227, in __init__
    Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)
                         ~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/__init__.py", line 95, in open
    return mod.open(file, flag, mode)
           ~~~~~~~~^^^^^^^^^^^^^^^^^^
_gdbm.error: [Errno 28] No space left on device: '@test_339409_tmpæ/shelftemp.db1'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 159, in test_open
    self.zip_open_test(f, self.compression)
    ~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 134, in zip_open_test
    self.make_test_archive(f, compression)
    ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 70, in make_test_archive
    with zipfp.open('written-open-w', mode='w') as f:
        for line in self.line_gen:
            f.write(line)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/zipfile/__init__.py", line 1268, in close
    raise RuntimeError("File size too large, try using force_zip64")
RuntimeError: File size too large, try using force_zip64


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 93, in test_write
    p = self._empty_mapping()
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shelve.py", line 186, in _empty_mapping
    x = shelve.open(self.base_path + str(self.counter), **self._args)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 250, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 227, in __init__
    Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)
                         ~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/__init__.py", line 95, in open
    return mod.open(file, flag, mode)
           ~~~~~~~~^^^^^^^^^^^^^^^^^^
_gdbm.error: [Errno 28] No space left on device: '@test_339409_tmpæ/shelftemp.db1'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 96, in test_write
    p[key] = value
    ~^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 125, in __setitem__
    self.dict[key.encode(self.keyencoding)] = f.getvalue()
    ~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/dumb.py", line 203, in __setitem__
    self._addkey(key, self._addval(val))
                      ~~~~~~~~~~~~^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/dumb.py", line 161, in _addval
    with _io.open(self._datfile, 'rb+') as f:
    ...<5 lines>...
        f.write(val)
OSError: [Errno 28] No space left on device


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 175, in test_update
    d = self._empty_mapping()
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shelve.py", line 186, in _empty_mapping
    x = shelve.open(self.base_path + str(self.counter), **self._args)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 250, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 227, in __init__
    Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)
                         ~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/__init__.py", line 95, in open
    return mod.open(file, flag, mode)
           ~~~~~~~~^^^^^^^^^^^^^^^^^^
_dbm.error: [Errno 28] No space left on device: '@test_344379_tmpæ/shelftemp.db1'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/libregrtest/single.py", line 181, in _runtest_env_changed_exc
    _load_run_test(result, runtests)
    ~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/libregrtest/single.py", line 128, in _load_run_test
    test_mod = importlib.import_module(module_name)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/importlib/__init__.py", line 88, in import_module
    return _bootstrap._gcd_import(name[level:], package, level)
           ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "<frozen importlib._bootstrap>", line 1387, in _gcd_import
  File "<frozen importlib._bootstrap>", line 1360, in _find_and_load
  File "<frozen importlib._bootstrap>", line 1331, in _find_and_load_unlocked
  File "<frozen importlib._bootstrap>", line 935, in _load_unlocked
  File "<frozen importlib._bootstrap_external>", line 1018, in exec_module
  File "<frozen importlib._bootstrap_external>", line 1151, in get_code
  File "<frozen importlib._bootstrap_external>", line 780, in _compile_bytecode
EOFError: marshal data too short


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 134, in test_constructor
    self.assertEqual(self._empty_mapping(), self._empty_mapping())
                     ~~~~~~~~~~~~~~~~~~~^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shelve.py", line 186, in _empty_mapping
    x = shelve.open(self.base_path + str(self.counter), **self._args)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 250, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 227, in __init__
    Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)
                         ~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/__init__.py", line 95, in open
    return mod.open(file, flag, mode)
           ~~~~~~~~^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/sqlite3.py", line 140, in open
    return _Database(filename, flag=flag, mode=mode)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/sqlite3.py", line 73, in __init__
    self._execute(BUILD_TABLE)
    ~~~~~~~~~~~~~^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/sqlite3.py", line 81, in _execute
    raise error(str(exc))
dbm.sqlite3.error: database or disk is full


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shutil.py", line 3300, in test_file2file_not_supported
    shutil.copyfile(TESTFN, TESTFN2)
    ~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shutil.py", line 283, in copyfile
    copyfileobj(fsrc, fdst)
    ~~~~~~~~~~~^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shutil.py", line 204, in copyfileobj
    fdst_write(buf)
    ~~~~~~~~~~^^^^^
OSError: [Errno 28] No space left on device


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_peg_generator/test_c_parser.py", line 117, in setUp
    self.tmp_path = tempfile.mkdtemp(dir=self.tmp_base)
                    ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/tempfile.py", line 384, in mkdtemp
    _os.mkdir(file, 0o700)
    ~~~~~~~~~^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_323115æ/tmpac8qg8lx'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_peg_generator/test_c_parser.py", line 117, in setUp
    self.tmp_path = tempfile.mkdtemp(dir=self.tmp_base)
                    ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/tempfile.py", line 384, in mkdtemp
    _os.mkdir(file, 0o700)
    ~~~~~~~~~^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_323115æ/tmps4bku_u8'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 45, in test_read
    p = self._empty_mapping()
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shelve.py", line 186, in _empty_mapping
    x = shelve.open(self.base_path + str(self.counter), **self._args)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 250, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 227, in __init__
    Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)
                         ~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/__init__.py", line 95, in open
    return mod.open(file, flag, mode)
           ~~~~~~~~^^^^^^^^^^^^^^^^^^
_dbm.error: [Errno 28] No space left on device: '@test_344379_tmpæ/shelftemp.db1'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 2618, in setUp
    fp.write(self.data)
    ~~~~~~~~^^^^^^^^^^^
OSError: [Errno 28] No space left on device


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 276, in test_readlines
    self.zip_readlines_test(f, self.compression)
    ~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 265, in zip_readlines_test
    self.make_test_archive(f, compression)
    ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 70, in make_test_archive
    with zipfp.open('written-open-w', mode='w') as f:
        for line in self.line_gen:
            f.write(line)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/zipfile/__init__.py", line 1268, in close
    raise RuntimeError("File size too large, try using force_zip64")
RuntimeError: File size too large, try using force_zip64


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_cext/__init__.py", line 49, in test_build_limited_c11
    self.check_build('_test_limited_c11_cext', limited=True, std='c11')
    ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_cext/__init__.py", line 53, in check_build
    with support.setup_venv_with_pip_setuptools_wheel(venv_dir) as python_exe:
        self._check_build(extension_name, python_exe,
                          std=std, limited=limited)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/contextlib.py", line 141, in __enter__
    return next(self.gen)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/support/__init__.py", line 2337, in setup_venv_with_pip_setuptools_wheel
    with temp_cwd() as temp_dir:
    ...<19 lines>...
        yield python
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/contextlib.py", line 141, in __enter__
    return next(self.gen)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/support/os_helper.py", line 554, in temp_cwd
    with temp_dir(path=name, quiet=quiet) as temp_path:
        with change_cwd(temp_path, quiet=quiet) as cwd_dir:
            yield cwd_dir
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/contextlib.py", line 141, in __enter__
    return next(self.gen)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/support/os_helper.py", line 492, in temp_dir
    os.mkdir(path)
    ~~~~~~~~^^^^^^
OSError: [Errno 28] No space left on device: 'tempcwd'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 713, in setUp
    fp.write(self.data)
    ~~~~~~~~^^^^^^^^^^^
OSError: [Errno 28] No space left on device


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 45, in test_read
    p = self._empty_mapping()
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shelve.py", line 186, in _empty_mapping
    x = shelve.open(self.base_path + str(self.counter), **self._args)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 250, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 227, in __init__
    Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)
                         ~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/__init__.py", line 95, in open
    return mod.open(file, flag, mode)
           ~~~~~~~~^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/sqlite3.py", line 140, in open
    return _Database(filename, flag=flag, mode=mode)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/sqlite3.py", line 73, in __init__
    self._execute(BUILD_TABLE)
    ~~~~~~~~~~~~~^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/sqlite3.py", line 81, in _execute
    raise error(str(exc))
dbm.sqlite3.error: disk I/O error


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_peg_generator/test_c_parser.py", line 117, in setUp
    self.tmp_path = tempfile.mkdtemp(dir=self.tmp_base)
                    ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/tempfile.py", line 384, in mkdtemp
    _os.mkdir(file, 0o700)
    ~~~~~~~~~^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_323115æ/tmpoov569z5'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 271, in test_get
    d = self._empty_mapping()
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shelve.py", line 186, in _empty_mapping
    x = shelve.open(self.base_path + str(self.counter), **self._args)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 250, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 227, in __init__
    Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)
                         ~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/__init__.py", line 95, in open
    return mod.open(file, flag, mode)
           ~~~~~~~~^^^^^^^^^^^^^^^^^^
_gdbm.error: [Errno 28] No space left on device: '@test_344379_tmpæ/shelftemp.db1'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 163, in test_len
    d = self._empty_mapping()
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shelve.py", line 186, in _empty_mapping
    x = shelve.open(self.base_path + str(self.counter), **self._args)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 250, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 227, in __init__
    Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)
                         ~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/__init__.py", line 95, in open
    return mod.open(file, flag, mode)
           ~~~~~~~~^^^^^^^^^^^^^^^^^^
_gdbm.error: [Errno 28] No space left on device: '@test_344379_tmpæ/shelftemp.db1'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 137, in test_bool
    self.assertTrue(not self._empty_mapping())
                        ~~~~~~~~~~~~~~~~~~~^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shelve.py", line 186, in _empty_mapping
    x = shelve.open(self.base_path + str(self.counter), **self._args)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 250, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 227, in __init__
    Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)
                         ~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/__init__.py", line 95, in open
    return mod.open(file, flag, mode)
           ~~~~~~~~^^^^^^^^^^^^^^^^^^
_dbm.error: [Errno 28] No space left on device: '@test_339409_tmpæ/shelftemp.db1'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 93, in test_write
    p = self._empty_mapping()
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shelve.py", line 186, in _empty_mapping
    x = shelve.open(self.base_path + str(self.counter), **self._args)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 250, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 227, in __init__
    Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)
                         ~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/__init__.py", line 95, in open
    return mod.open(file, flag, mode)
           ~~~~~~~~^^^^^^^^^^^^^^^^^^
_dbm.error: [Errno 28] No space left on device: '@test_339409_tmpæ/shelftemp.db1'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_sysconfig.py", line 598, in test_parse_makefile
    with open(TESTFN, "w") as makefile:
    ...<6 lines>...
              "-x86_64-linux-gnu", file=makefile)
OSError: [Errno 28] No space left on device


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 2916, in test_write_while_reading
    with zipf.open('twos', 'w') as w1:
        w1.write(self.data2)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/zipfile/__init__.py", line 1268, in close
    raise RuntimeError("File size too large, try using force_zip64")
RuntimeError: File size too large, try using force_zip64


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 1499, in test_write_pyfile_bad_syntax
    os.mkdir(TESTFN2)
    ~~~~~~~~^^^^^^^^^
OSError: [Errno 28] No space left on device: '@test_344369_tmpæ2'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_peg_generator/test_c_parser.py", line 117, in setUp
    self.tmp_path = tempfile.mkdtemp(dir=self.tmp_base)
                    ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/tempfile.py", line 384, in mkdtemp
    _os.mkdir(file, 0o700)
    ~~~~~~~~~^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_323115æ/tmppv7kizre'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_peg_generator/test_c_parser.py", line 102, in setUpClass
    python_exe = stack.enter_context(support.setup_venv_with_pip_setuptools_wheel("venv"))
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/contextlib.py", line 530, in enter_context
    result = _enter(cm)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/contextlib.py", line 141, in __enter__
    return next(self.gen)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/support/__init__.py", line 2340, in setup_venv_with_pip_setuptools_wheel
    run_command(cmd)
    ~~~~~~~~~~~^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/support/__init__.py", line 2330, in run_command
    subprocess.run(cmd, check=True)
    ~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/subprocess.py", line 577, in run
    raise CalledProcessError(retcode, process.args,
                             output=stdout, stderr=stderr)
subprocess.CalledProcessError: Command '['/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/python', '-X', 'dev', '-m', 'venv', 'venv']' returned non-zero exit status 1.


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 294, in test_pop
    d = self._empty_mapping()
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shelve.py", line 186, in _empty_mapping
    x = shelve.open(self.base_path + str(self.counter), **self._args)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 250, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 227, in __init__
    Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)
                         ~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/__init__.py", line 95, in open
    return mod.open(file, flag, mode)
           ~~~~~~~~^^^^^^^^^^^^^^^^^^
_gdbm.error: [Errno 28] No space left on device: '@test_344379_tmpæ/shelftemp.db1'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 2642, in test_read
    self.zip_test(f, self.compression)
    ~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 2631, in zip_test
    self.make_test_archive(f, compression)
    ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 2626, in make_test_archive
    with zipfile.ZipFile(f, "w", compression) as zipfp:
        zipfp.write(TESTFN, "another.name")
        zipfp.write(TESTFN, TESTFN)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/zipfile/__init__.py", line 1423, in __exit__
    self.close()
    ~~~~~~~~~~^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/zipfile/__init__.py", line 1997, in close
    self._fpclose(fp)
    ~~~~~~~~~~~~~^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/zipfile/__init__.py", line 2097, in _fpclose
    fp.close()
    ~~~~~~~~^^
OSError: [Errno 28] No space left on device


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 294, in test_pop
    d = self._empty_mapping()
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shelve.py", line 186, in _empty_mapping
    x = shelve.open(self.base_path + str(self.counter), **self._args)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 250, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 227, in __init__
    Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)
                         ~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/__init__.py", line 95, in open
    return mod.open(file, flag, mode)
           ~~~~~~~~^^^^^^^^^^^^^^^^^^
_dbm.error: [Errno 28] No space left on device: '@test_344379_tmpæ/shelftemp.db1'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 134, in test_constructor
    self.assertEqual(self._empty_mapping(), self._empty_mapping())
                                            ~~~~~~~~~~~~~~~~~~~^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shelve.py", line 186, in _empty_mapping
    x = shelve.open(self.base_path + str(self.counter), **self._args)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 250, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 227, in __init__
    Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)
                         ~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/__init__.py", line 95, in open
    return mod.open(file, flag, mode)
           ~~~~~~~~^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/sqlite3.py", line 140, in open
    return _Database(filename, flag=flag, mode=mode)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/sqlite3.py", line 73, in __init__
    self._execute(BUILD_TABLE)
    ~~~~~~~~~~~~~^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/sqlite3.py", line 81, in _execute
    raise error(str(exc))
dbm.sqlite3.error: database or disk is full


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 137, in test_bool
    self.assertTrue(not self._empty_mapping())
                        ~~~~~~~~~~~~~~~~~~~^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shelve.py", line 186, in _empty_mapping
    x = shelve.open(self.base_path + str(self.counter), **self._args)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 250, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 227, in __init__
    Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)
                         ~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/__init__.py", line 95, in open
    return mod.open(file, flag, mode)
           ~~~~~~~~^^^^^^^^^^^^^^^^^^
_dbm.error: [Errno 28] No space left on device: '@test_344379_tmpæ/shelftemp.db1'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 1413, in test_write_filtered_python_package
    zipfp.writepy(packagedir)
    ~~~~~~~~~~~~~^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/zipfile/__init__.py", line 2153, in writepy
    self.writepy(path, basename,
    ~~~~~~~~~~~~^^^^^^^^^^^^^^^^
                 filterfunc=filterfunc)  # Recursive call
                 ^^^^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/zipfile/__init__.py", line 2160, in writepy
    fname, arcname = self._get_codename(path[0:-3],
                     ~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
                                        basename)
                                        ^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/zipfile/__init__.py", line 2240, in _get_codename
    if _compile(file_py):
       ~~~~~~~~^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/zipfile/__init__.py", line 2203, in _compile
    py_compile.compile(file, doraise=True, optimize=optimize)
    ~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/py_compile.py", line 172, in compile
    importlib._bootstrap_external._write_atomic(cfile, bytecode, mode)
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^
  File "<frozen importlib._bootstrap_external>", line 212, in _write_atomic
OSError: [Errno 28] No space left on device


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shutil.py", line 3199, in test_non_regular_file_src
    shutil.copyfileobj(src, dst)
    ~~~~~~~~~~~~~~~~~~^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shutil.py", line 204, in copyfileobj
    fdst_write(buf)
    ~~~~~~~~~~^^^^^
OSError: [Errno 28] No space left on device


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_cext/__init__.py", line 45, in test_build_limited
    self.check_build('_test_limited_cext', limited=True)
    ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_cext/__init__.py", line 53, in check_build
    with support.setup_venv_with_pip_setuptools_wheel(venv_dir) as python_exe:
        self._check_build(extension_name, python_exe,
                          std=std, limited=limited)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/contextlib.py", line 141, in __enter__
    return next(self.gen)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/support/__init__.py", line 2340, in setup_venv_with_pip_setuptools_wheel
    run_command(cmd)
    ~~~~~~~~~~~^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/support/__init__.py", line 2330, in run_command
    subprocess.run(cmd, check=True)
    ~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/subprocess.py", line 577, in run
    raise CalledProcessError(retcode, process.args,
                             output=stdout, stderr=stderr)
subprocess.CalledProcessError: Command '['/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/python', '-X', 'dev', '-m', 'venv', 'env']' returned non-zero exit status 1.


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 151, in test_values
    d = self._empty_mapping()
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shelve.py", line 186, in _empty_mapping
    x = shelve.open(self.base_path + str(self.counter), **self._args)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 250, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 227, in __init__
    Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)
                         ~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/__init__.py", line 95, in open
    return mod.open(file, flag, mode)
           ~~~~~~~~^^^^^^^^^^^^^^^^^^
_dbm.error: [Errno 28] No space left on device: '@test_344379_tmpæ/shelftemp.db1'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 285, in test_setdefault
    d = self._empty_mapping()
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shelve.py", line 186, in _empty_mapping
    x = shelve.open(self.base_path + str(self.counter), **self._args)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 250, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 227, in __init__
    Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)
                         ~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/__init__.py", line 95, in open
    return mod.open(file, flag, mode)
           ~~~~~~~~^^^^^^^^^^^^^^^^^^
_dbm.error: [Errno 28] No space left on device: '@test_339409_tmpæ/shelftemp.db1'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 1413, in test_write_filtered_python_package
    zipfp.writepy(packagedir)
    ~~~~~~~~~~~~~^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/zipfile/__init__.py", line 2160, in writepy
    fname, arcname = self._get_codename(path[0:-3],
                     ~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
                                        basename)
                                        ^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/zipfile/__init__.py", line 2240, in _get_codename
    if _compile(file_py):
       ~~~~~~~~^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/zipfile/__init__.py", line 2203, in _compile
    py_compile.compile(file, doraise=True, optimize=optimize)
    ~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/py_compile.py", line 172, in compile
    importlib._bootstrap_external._write_atomic(cfile, bytecode, mode)
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^
  File "<frozen importlib._bootstrap_external>", line 212, in _write_atomic
OSError: [Errno 28] No space left on device


Traceback (test.test_zipimport.UncompressedZipImportTestCase.testTraceback) ... ok


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 285, in test_setdefault
    d = self._empty_mapping()
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shelve.py", line 186, in _empty_mapping
    x = shelve.open(self.base_path + str(self.counter), **self._args)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 250, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 227, in __init__
    Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)
                         ~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/__init__.py", line 95, in open
    return mod.open(file, flag, mode)
           ~~~~~~~~^^^^^^^^^^^^^^^^^^
_gdbm.error: [Errno 28] No space left on device: '@test_339409_tmpæ/shelftemp.db1'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_cext/__init__.py", line 34, in test_build
    self.check_build('_test_cext')
    ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_cext/__init__.py", line 53, in check_build
    with support.setup_venv_with_pip_setuptools_wheel(venv_dir) as python_exe:
        self._check_build(extension_name, python_exe,
                          std=std, limited=limited)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/contextlib.py", line 141, in __enter__
    return next(self.gen)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/support/__init__.py", line 2355, in setup_venv_with_pip_setuptools_wheel
    run_command(cmd)
    ~~~~~~~~~~~^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/support/__init__.py", line 2330, in run_command
    subprocess.run(cmd, check=True)
    ~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/subprocess.py", line 577, in run
    raise CalledProcessError(retcode, process.args,
                             output=stdout, stderr=stderr)
subprocess.CalledProcessError: Command '['/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_335684æ/tempcwd/env/bin/python', '-X', 'dev', '-m', 'pip', 'install', '/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/wheeldata/setuptools-67.6.1-py3-none-any.whl', '/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/wheeldata/wheel-0.43.0-py3-none-any.whl']' returned non-zero exit status 1.


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_peg_generator/test_c_parser.py", line 117, in setUp
    self.tmp_path = tempfile.mkdtemp(dir=self.tmp_base)
                    ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/tempfile.py", line 384, in mkdtemp
    _os.mkdir(file, 0o700)
    ~~~~~~~~~^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_323115æ/tmpulq4w2qz'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_peg_generator/test_c_parser.py", line 117, in setUp
    self.tmp_path = tempfile.mkdtemp(dir=self.tmp_base)
                    ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/tempfile.py", line 384, in mkdtemp
    _os.mkdir(file, 0o700)
    ~~~~~~~~~^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_323115æ/tmpr4eh1mev'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shelve.py", line 192, in setUp
    os.mkdir(dirname)
    ~~~~~~~~^^^^^^^^^
OSError: [Errno 28] No space left on device: '@test_344379_tmpæ'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 163, in test_len
    d = self._empty_mapping()
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shelve.py", line 186, in _empty_mapping
    x = shelve.open(self.base_path + str(self.counter), **self._args)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 250, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 227, in __init__
    Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)
                         ~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/__init__.py", line 95, in open
    return mod.open(file, flag, mode)
           ~~~~~~~~^^^^^^^^^^^^^^^^^^
_dbm.error: [Errno 28] No space left on device: '@test_339409_tmpæ/shelftemp.db1'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 289, in test_popitem
    d = self._empty_mapping()
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shelve.py", line 186, in _empty_mapping
    x = shelve.open(self.base_path + str(self.counter), **self._args)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 250, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 227, in __init__
    Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)
                         ~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/__init__.py", line 95, in open
    return mod.open(file, flag, mode)
           ~~~~~~~~^^^^^^^^^^^^^^^^^^
_dbm.error: [Errno 28] No space left on device: '@test_344379_tmpæ/shelftemp.db1'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/zipfile/__init__.py", line 1992, in close
    self.fp.seek(self.start_dir)
    ~~~~~~~~~~~~^^^^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_323115æ/tempcwd/venv/lib/python3.13/site-packages/setuptools/_distutils/unixccompiler.py", line 185, in _compile
    self.spawn(compiler_so + cc_args + [src, '-o', obj] + extra_postargs)
    ~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_323115æ/tempcwd/venv/lib/python3.13/site-packages/setuptools/_distutils/ccompiler.py", line 1041, in spawn
    spawn(cmd, dry_run=self.dry_run, **kwargs)
    ~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_323115æ/tempcwd/venv/lib/python3.13/site-packages/setuptools/_distutils/spawn.py", line 70, in spawn
    raise DistutilsExecError(
        "command {!r} failed with exit code {}".format(cmd, exitcode)
    )
distutils.errors.DistutilsExecError: command '/usr/bin/gcc' failed with exit code 1


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shutil.py", line 3236, in test_cant_get_size
    shutil._fastcopy_sendfile(src, dst)
    ~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shutil.py", line 164, in _fastcopy_sendfile
    raise err from None
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shutil.py", line 150, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
OSError: [Errno 28] No space left on device: '@test_344371_tmpæ' -> '@test_344371_tmpæ2'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 143, in test_keys
    d = self._empty_mapping()
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shelve.py", line 186, in _empty_mapping
    x = shelve.open(self.base_path + str(self.counter), **self._args)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 250, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 227, in __init__
    Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)
                         ~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/__init__.py", line 95, in open
    return mod.open(file, flag, mode)
           ~~~~~~~~^^^^^^^^^^^^^^^^^^
_dbm.error: [Errno 28] No space left on device: '@test_344379_tmpæ/shelftemp.db1'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_peg_generator/test_c_parser.py", line 255, in test_advanced_left_recursive
    self.run_test(grammar_source, test_source)
    ~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_peg_generator/test_c_parser.py", line 134, in run_test
    self.build_extension(grammar_source)
    ~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_peg_generator/test_c_parser.py", line 131, in build_extension
    generate_parser_c_extension(grammar, Path('.'), library_dir=self.library_dir)
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Tools/peg_generator/pegen/testutil.py", line 107, in generate_parser_c_extension
    compile_c_extension(
    ~~~~~~~~~~~~~~~~~~~^
        str(source),
        ^^^^^^^^^^^^
    ...<3 lines>...
        library_dir=library_dir,
        ^^^^^^^^^^^^^^^^^^^^^^^^
    )
    ^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Tools/peg_generator/pegen/build.py", line 182, in compile_c_extension
    objects = compiler.compile(
        common_sources,
    ...<2 lines>...
        extra_postargs=compile_opts,
    )
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_323115æ/tempcwd/venv/lib/python3.13/site-packages/setuptools/_distutils/ccompiler.py", line 600, in compile
    self._compile(obj, src, ext, cc_args, extra_postargs, pp_opts)
    ~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_323115æ/tempcwd/venv/lib/python3.13/site-packages/setuptools/_distutils/unixccompiler.py", line 187, in _compile
    raise CompileError(msg)
distutils.errors.CompileError: command '/usr/bin/gcc' failed with exit code 1


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 45, in test_read
    p = self._empty_mapping()
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shelve.py", line 186, in _empty_mapping
    x = shelve.open(self.base_path + str(self.counter), **self._args)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 250, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 227, in __init__
    Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)
                         ~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/__init__.py", line 95, in open
    return mod.open(file, flag, mode)
           ~~~~~~~~^^^^^^^^^^^^^^^^^^
_gdbm.error: [Errno 28] No space left on device: '@test_339409_tmpæ/shelftemp.db1'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 151, in test_values
    d = self._empty_mapping()
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shelve.py", line 186, in _empty_mapping
    x = shelve.open(self.base_path + str(self.counter), **self._args)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 250, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 227, in __init__
    Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)
                         ~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/__init__.py", line 95, in open
    return mod.open(file, flag, mode)
           ~~~~~~~~^^^^^^^^^^^^^^^^^^
_dbm.error: [Errno 28] No space left on device: '@test_339409_tmpæ/shelftemp.db1'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 47, in test_read
    d = self._full_mapping(self.reference)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 27, in _full_mapping
    x[key] = value
    ~^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 125, in __setitem__
    self.dict[key.encode(self.keyencoding)] = f.getvalue()
    ~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/sqlite3.py", line 96, in __setitem__
    self._execute(STORE_KV, (key, value))
    ~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/sqlite3.py", line 81, in _execute
    raise error(str(exc))
dbm.sqlite3.error: database or disk is full


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_cppext/__init__.py", line 36, in test_build_cpp11
    self.check_build('_testcpp11ext', std='c++11')
    ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_cppext/__init__.py", line 46, in check_build
    with support.setup_venv_with_pip_setuptools_wheel(venv_dir) as python_exe:
        self._check_build(extension_name, python_exe, std=std)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/contextlib.py", line 141, in __enter__
    return next(self.gen)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/support/__init__.py", line 2340, in setup_venv_with_pip_setuptools_wheel
    run_command(cmd)
    ~~~~~~~~~~~^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/support/__init__.py", line 2330, in run_command
    subprocess.run(cmd, check=True)
    ~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/subprocess.py", line 577, in run
    raise CalledProcessError(retcode, process.args,
                             output=stdout, stderr=stderr)
subprocess.CalledProcessError: Command '['/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/python', '-X', 'dev', '-m', 'venv', 'env']' returned non-zero exit status 1.


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 163, in test_len
    d = self._empty_mapping()
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shelve.py", line 186, in _empty_mapping
    x = shelve.open(self.base_path + str(self.counter), **self._args)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 250, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 227, in __init__
    Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)
                         ~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/__init__.py", line 95, in open
    return mod.open(file, flag, mode)
           ~~~~~~~~^^^^^^^^^^^^^^^^^^
_dbm.error: [Errno 28] No space left on device: '@test_344379_tmpæ/shelftemp.db1'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/zipfile/__init__.py", line 1895, in write
    shutil.copyfileobj(src, dest, 1024*8)
    ~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shutil.py", line 204, in copyfileobj
    fdst_write(buf)
    ~~~~~~~~~~^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/zipfile/__init__.py", line 1247, in write
    self._fileobj.write(data)
    ~~~~~~~~~~~~~~~~~~~^^^^^^
OSError: [Errno 28] No space left on device


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_cext/__init__.py", line 37, in test_build_c11
    self.check_build('_test_c11_cext', std='c11')
    ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_cext/__init__.py", line 53, in check_build
    with support.setup_venv_with_pip_setuptools_wheel(venv_dir) as python_exe:
        self._check_build(extension_name, python_exe,
                          std=std, limited=limited)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/contextlib.py", line 141, in __enter__
    return next(self.gen)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/support/__init__.py", line 2355, in setup_venv_with_pip_setuptools_wheel
    run_command(cmd)
    ~~~~~~~~~~~^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/support/__init__.py", line 2330, in run_command
    subprocess.run(cmd, check=True)
    ~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/subprocess.py", line 577, in run
    raise CalledProcessError(retcode, process.args,
                             output=stdout, stderr=stderr)
subprocess.CalledProcessError: Command '['/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_335684æ/tempcwd/env/bin/python', '-X', 'dev', '-m', 'pip', 'install', '/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/wheeldata/setuptools-67.6.1-py3-none-any.whl', '/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/wheeldata/wheel-0.43.0-py3-none-any.whl']' returned non-zero exit status 1.


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 134, in test_constructor
    self.assertEqual(self._empty_mapping(), self._empty_mapping())
                     ~~~~~~~~~~~~~~~~~~~^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shelve.py", line 186, in _empty_mapping
    x = shelve.open(self.base_path + str(self.counter), **self._args)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 250, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 227, in __init__
    Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)
                         ~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/__init__.py", line 95, in open
    return mod.open(file, flag, mode)
           ~~~~~~~~^^^^^^^^^^^^^^^^^^
_dbm.error: [Errno 28] No space left on device: '@test_344379_tmpæ/shelftemp.db1'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 157, in test_items
    d = self._empty_mapping()
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shelve.py", line 186, in _empty_mapping
    x = shelve.open(self.base_path + str(self.counter), **self._args)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 250, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 227, in __init__
    Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)
                         ~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/__init__.py", line 95, in open
    return mod.open(file, flag, mode)
           ~~~~~~~~^^^^^^^^^^^^^^^^^^
_gdbm.error: [Errno 28] No space left on device: '@test_344379_tmpæ/shelftemp.db1'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 47, in test_read
    d = self._full_mapping(self.reference)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 27, in _full_mapping
    x[key] = value
    ~^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 125, in __setitem__
    self.dict[key.encode(self.keyencoding)] = f.getvalue()
    ~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/dumb.py", line 203, in __setitem__
    self._addkey(key, self._addval(val))
                      ~~~~~~~~~~~~^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/dumb.py", line 161, in _addval
    with _io.open(self._datfile, 'rb+') as f:
    ...<5 lines>...
        f.write(val)
OSError: [Errno 28] No space left on device


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_peg_generator/test_c_parser.py", line 117, in setUp
    self.tmp_path = tempfile.mkdtemp(dir=self.tmp_base)
                    ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/tempfile.py", line 384, in mkdtemp
    _os.mkdir(file, 0o700)
    ~~~~~~~~~^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_323115æ/tmpp2_i2del'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_peg_generator/test_c_parser.py", line 117, in setUp
    self.tmp_path = tempfile.mkdtemp(dir=self.tmp_base)
                    ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/tempfile.py", line 384, in mkdtemp
    _os.mkdir(file, 0o700)
    ~~~~~~~~~^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/build/test_python_323115æ/tmpt05q7uzp'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 134, in test_constructor
    self.assertEqual(self._empty_mapping(), self._empty_mapping())
                     ~~~~~~~~~~~~~~~~~~~^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shelve.py", line 186, in _empty_mapping
    x = shelve.open(self.base_path + str(self.counter), **self._args)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 250, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 227, in __init__
    Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)
                         ~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/__init__.py", line 95, in open
    return mod.open(file, flag, mode)
           ~~~~~~~~^^^^^^^^^^^^^^^^^^
_dbm.error: [Errno 28] No space left on device: '@test_339409_tmpæ/shelftemp.db1'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 184, in test_random_open
    self.zip_random_open_test(f, self.compression)
    ~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 168, in zip_random_open_test
    self.make_test_archive(f, compression)
    ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 70, in make_test_archive
    with zipfp.open('written-open-w', mode='w') as f:
        for line in self.line_gen:
            f.write(line)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/zipfile/__init__.py", line 1268, in close
    raise RuntimeError("File size too large, try using force_zip64")
RuntimeError: File size too large, try using force_zip64


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 294, in test_pop
    d = self._empty_mapping()
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shelve.py", line 186, in _empty_mapping
    x = shelve.open(self.base_path + str(self.counter), **self._args)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 250, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 227, in __init__
    Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)
                         ~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/__init__.py", line 95, in open
    return mod.open(file, flag, mode)
           ~~~~~~~~^^^^^^^^^^^^^^^^^^
_dbm.error: [Errno 28] No space left on device: '@test_339409_tmpæ/shelftemp.db1'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 557, in test_append_to_concatenated_zip_file
    f.write(data)
    ~~~~~~~^^^^^^
OSError: [Errno 28] No space left on device


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 495, in test_writestr_permissions
    self.zip_test_writestr_permissions(f, zipfile.ZIP_STORED)
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 485, in zip_test_writestr_permissions
    self.make_test_archive(f, compression)
    ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_zipfile/test_core.py", line 70, in make_test_archive
    with zipfp.open('written-open-w', mode='w') as f:
        for line in self.line_gen:
            f.write(line)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/zipfile/__init__.py", line 1268, in close
    raise RuntimeError("File size too large, try using force_zip64")
RuntimeError: File size too large, try using force_zip64


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 296, in test_pop
    d[k] = v
    ~^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 125, in __setitem__
    self.dict[key.encode(self.keyencoding)] = f.getvalue()
    ~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/dumb.py", line 203, in __setitem__
    self._addkey(key, self._addval(val))
                      ~~~~~~~~~~~~^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/dumb.py", line 161, in _addval
    with _io.open(self._datfile, 'rb+') as f:
    ...<5 lines>...
        f.write(val)
OSError: [Errno 28] No space left on device


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 157, in test_items
    d = self._empty_mapping()
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shelve.py", line 186, in _empty_mapping
    x = shelve.open(self.base_path + str(self.counter), **self._args)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 250, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 227, in __init__
    Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)
                         ~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/__init__.py", line 95, in open
    return mod.open(file, flag, mode)
           ~~~~~~~~^^^^^^^^^^^^^^^^^^
_dbm.error: [Errno 28] No space left on device: '@test_339409_tmpæ/shelftemp.db1'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 93, in test_write
    p = self._empty_mapping()
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shelve.py", line 186, in _empty_mapping
    x = shelve.open(self.base_path + str(self.counter), **self._args)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 250, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 227, in __init__
    Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)
                         ~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/__init__.py", line 95, in open
    return mod.open(file, flag, mode)
           ~~~~~~~~^^^^^^^^^^^^^^^^^^
_dbm.error: [Errno 28] No space left on device: '@test_344379_tmpæ/shelftemp.db1'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 134, in test_constructor
    self.assertEqual(self._empty_mapping(), self._empty_mapping())
                     ~~~~~~~~~~~~~~~~~~~^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shelve.py", line 186, in _empty_mapping
    x = shelve.open(self.base_path + str(self.counter), **self._args)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 250, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 227, in __init__
    Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)
                         ~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/__init__.py", line 95, in open
    return mod.open(file, flag, mode)
           ~~~~~~~~^^^^^^^^^^^^^^^^^^
_gdbm.error: [Errno 28] No space left on device: '@test_344379_tmpæ/shelftemp.db1'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_cext/__init__.py", line 34, in test_build
    self.check_build('_test_cext')
    ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_cext/__init__.py", line 53, in check_build
    with support.setup_venv_with_pip_setuptools_wheel(venv_dir) as python_exe:
        self._check_build(extension_name, python_exe,
                          std=std, limited=limited)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/contextlib.py", line 141, in __enter__
    return next(self.gen)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/support/__init__.py", line 2340, in setup_venv_with_pip_setuptools_wheel
    run_command(cmd)
    ~~~~~~~~~~~^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/support/__init__.py", line 2330, in run_command
    subprocess.run(cmd, check=True)
    ~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/subprocess.py", line 577, in run
    raise CalledProcessError(retcode, process.args,
                             output=stdout, stderr=stderr)
subprocess.CalledProcessError: Command '['/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/python', '-X', 'dev', '-m', 'venv', 'env']' returned non-zero exit status 1.


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/mapping_tests.py", line 157, in test_items
    d = self._empty_mapping()
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/test/test_shelve.py", line 186, in _empty_mapping
    x = shelve.open(self.base_path + str(self.counter), **self._args)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 250, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/shelve.py", line 227, in __init__
    Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)
                         ~~~~~~~~^^^^^^^^^^^^^^^^
  File "/home/buildbot/buildarea/3.13.cstratak-fedora-stable-x86_64.lto/build/Lib/dbm/__init__.py", line 95, in open
    return mod.open(file, flag, mode)
           ~~~~~~~~^^^^^^^^^^^^^^^^^^
_dbm.error: [Errno 28] No space left on device: '@test_344379_tmpæ/shelftemp.db1'

mrahtz pushed a commit to mrahtz/cpython that referenced this pull request Jun 30, 2024
…SC-V architecture (python#120089)

Co-authored-by: Pablo Galindo Salgado <Pablogsal@gmail.com>
@stefanor
Copy link
Contributor
stefanor commented Jul 3, 2024

This seems incomplete. It causes compilation to now fail on riscv64, due to missing support in perf_jit_trampoline.c:

$ grep -A1 'perf trampoline' config.log
configure:13288: checking perf trampoline
configure:13301: result: yes
$ make Python/perf_jit_trampoline.o
gcc -c -fno-strict-overflow -fstack-protector-strong -Wtrampolines -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I./Include/internal -I./Include/internal/mimalloc  -I. -I./Include    -DPy_BUILD_CORE -o Python/perf_jit_trampoline.o Python/perf_jit_trampoline.c
Python/perf_jit_trampoline.c:375:6: error: #error "Unsupported target architecture"
  375 | #    error "Unsupported target architecture"
      |      ^~~~~
Python/perf_jit_trampoline.c:377:1: error: empty enum is invalid
  377 | };
      | ^
Python/perf_jit_trampoline.c: In function 'elf_init_ehframe':
Python/perf_jit_trampoline.c:458:26: error: 'DWRF_REG_RA' undeclared (first use in this function)
  458 |                  DWRF_U8(DWRF_REG_RA); /* Return address register. */
      |                          ^~~~~~~~~~~
Python/perf_jit_trampoline.c:441:9: note: in definition of macro 'DWRF_SECTION'
  441 |         stmt;                                                                                           \
      |         ^~~~
Python/perf_jit_trampoline.c:458:18: note: in expansion of macro 'DWRF_U8'
  458 |                  DWRF_U8(DWRF_REG_RA); /* Return address register. */
      |                  ^~~~~~~
Python/perf_jit_trampoline.c:458:26: note: each undeclared identifier is reported only once for each function it appears in
  458 |                  DWRF_U8(DWRF_REG_RA); /* Return address register. */
      |                          ^~~~~~~~~~~
Python/perf_jit_trampoline.c:441:9: note: in definition of macro 'DWRF_SECTION'
  441 |         stmt;                                                                                           \
      |         ^~~~
Python/perf_jit_trampoline.c:458:18: note: in expansion of macro 'DWRF_U8'
  458 |                  DWRF_U8(DWRF_REG_RA); /* Return address register. */
      |                  ^~~~~~~
Python/perf_jit_trampoline.c:461:53: error: 'DWRF_REG_SP' undeclared (first use in this function)
  461 |                  DWRF_U8(DWRF_CFA_def_cfa); DWRF_UV(DWRF_REG_SP); DWRF_UV(sizeof(uintptr_t));
      |                                                     ^~~~~~~~~~~
Python/perf_jit_trampoline.c:441:9: note: in definition of macro 'DWRF_SECTION'
  441 |         stmt;                                                                                           \
      |         ^~~~
Python/perf_jit_trampoline.c:461:45: note: in expansion of macro 'DWRF_UV'
  461 |                  DWRF_U8(DWRF_CFA_def_cfa); DWRF_UV(DWRF_REG_SP); DWRF_UV(sizeof(uintptr_t));
      |                                             ^~~~~~~
Python/perf_jit_trampoline.c:430:64: warning: left-hand operand of comma expression has no effect [-Wunused-value]
  430 | #define DWRF_UV(x) (ctx->p = p, elfctx_append_uleb128(ctx, (x)), p = ctx->p)
      |                                                                ^
Python/perf_jit_trampoline.c:441:9: note: in definition of macro 'DWRF_SECTION'
  441 |         stmt;                                                                                           \
      |         ^~~~
Python/perf_jit_trampoline.c:461:45: note: in expansion of macro 'DWRF_UV'
  461 |                  DWRF_U8(DWRF_CFA_def_cfa); DWRF_UV(DWRF_REG_SP); DWRF_UV(sizeof(uintptr_t));
      |                                             ^~~~~~~
Python/perf_jit_trampoline.c:491:6: error: #error "Unsupported target architecture"
  491 | #    error "Unsupported target architecture"
      |      ^~~~~
make: *** [Makefile:3047: Python/perf_jit_trampoline.o] Error 1

stefanor added a commit to stefanor/cpython that referenced this pull request Jul 3, 2024
Until support is added in perf_jit_trampoline.c

pythongh-120089 was incomplete.
stefanor added a commit to stefanor/cpython that referenced this pull request Jul 3, 2024
Until support is added in perf_jit_trampoline.c

pythongh-120089 was incomplete.
@pablogsal
Copy link
Member

This seems incomplete. It causes compilation to now fail on riscv64, due to missing support in perf_jit_trampoline.c:

This has already been reported in #121201

pablogsal pushed a commit that referenced this pull request Jul 3, 2024
Disable perf_trampoline on riscv64 for now

Until support is added in perf_jit_trampoline.c

gh-120089 was incomplete.
miss-islington pushed a commit to miss-islington/cpython that referenced this pull request Jul 3, 2024
…-121328)

Disable perf_trampoline on riscv64 for now

Until support is added in perf_jit_trampoline.c

pythongh-120089 was incomplete.
(cherry picked from commit ca2e876)

Co-authored-by: Stefano Rivera <stefano@rivera.za.net>
pablogsal pushed a commit that referenced this pull request Jul 4, 2024
…) (#121336)

gh-121201: Disable perf_trampoline on riscv64 for now (GH-121328)

Disable perf_trampoline on riscv64 for now

Until support is added in perf_jit_trampoline.c

gh-120089 was incomplete.
(cherry picked from commit ca2e876)

Co-authored-by: Stefano Rivera <stefano@rivera.za.net>
@ixgbe00
Copy link
Contributor Author
ixgbe00 commented Jul 5, 2024

This seems incomplete. It causes compilation to now fail on riscv64, due to missing support in perf_jit_trampoline.c:

This has already been reported in #121201

Thank you very much for your reminder. Can we add a test program for perf jit in test_perf_profiler?

noahbkim pushed a commit to hudson-trading/cpython that referenced this pull request Jul 11, 2024
…SC-V architecture (python#120089)

Co-authored-by: Pablo Galindo Salgado <Pablogsal@gmail.com>
noahbkim pushed a commit to hudson-trading/cpython that referenced this pull request Jul 11, 2024
…21328)

Disable perf_trampoline on riscv64 for now

Until support is added in perf_jit_trampoline.c

pythongh-120089 was incomplete.
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

6 participants