Skip to content

gh-108740: Fix "make regen-all" race condition #108741

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

Merged
merged 6 commits into from
Sep 6, 2023

Conversation

vstinner
Copy link
Member

@vstinner vstinner commented Aug 31, 2023

Fix a race condition in "make regen-all". The deepfreeze.c source and files generated by Argument Clinic are now generated or updated before generating "global objects". Previously, some identifiers may miss depending on the order in which these files were generated.

  • "make regen-global-objects": Make sure that deepfreeze.c is generated and up to date, and always run "make clinic".
  • "make clinic" no longer runs generate_global_objects.py script anymore.
  • "make regen-deepfreeze" now only updates deepfreeze.c, it doesn't build deepfreeze.o anymore.

@vstinner
Copy link
Member Author

You can test this fix by adding a new global identifier with this patch:

index c66a862341..4534768305 100644
--- a/Modules/_asynciomodule.c
+++ b/Modules/_asynciomodule.c
@@ -780,6 +780,7 @@ _asyncio.Future.__init__
 
     *
     loop: object = None
+    new_funky_identifier: object = None
 
 This class is *almost* compatible with concurrent.futures.Future.
 

Run make regen-global-objects: it should add the new identifier to global objects:

$ grep 'ID(new_funky_identifier)' ./Include/internal/pycore_global*.h
./Include/internal/pycore_global_objects_fini_generated.h:    _PyStaticObject_CheckRefcnt((PyObject *)&_Py_ID(new_funky_identifier));
./Include/internal/pycore_global_strings.h:        STRUCT_FOR_ID(new_funky_identifier)

Then revert the local patch, and make run that make regen-global-objects removes it.

Moreover, make clean; make regen-global-objects should no longer remove identifiers of deepfreze.c depending in which order deepfreze.c was generated or if it was not generated.

@vstinner
Copy link
Member Author

I removed the misleading messages displayed to the user to ask to run make regen-global-objects . If a PR doesn't run make regen-all, the "Check if generated files are up to date" job will fail anyway (with this fix).

In general, make regen-all makes sure that all generated files are up to date.

@vstinner
Copy link
Member Author

Maybe:

  • make Python/deepfreeze/deepfreeze.c should depend on make regen-frozen which can update $(FROZEN_FILES_OUT)
  • make regen-global-objects should depend on make regen-cases (ex: Python/generated_cases.c contains _Py_ID(...))

@vstinner
Copy link
Member Author

cc @erlend-aasland

@erlend-aasland erlend-aasland requested a review from zware September 1, 2023 07:03
@markshannon
Copy link
Member

We are looking at removing deepfreeze altogether. #108722

@vstinner
Copy link
Member Author

vstinner commented Sep 1, 2023

We are looking at removing deepfreeze altogether. #108722

Good to know! Anyway, it's still worth it to fix Python 3.12 build system (which uses deepfreeze).

And there is still a dependency issue between make clinic and make regen-global-objects.

@vstinner vstinner added needs backport to 3.11 only security fixes needs backport to 3.12 only security fixes labels Sep 1, 2023
@vstinner vstinner force-pushed the fix_regen_all_race_cond branch from ab72ab2 to 5bb8646 Compare September 2, 2023 15:48
@vstinner
Copy link
Member Author

vstinner commented Sep 2, 2023

I updated my PR to better explain the change, and I documented generated files in Doc/using/configure.rst.

@erlend-aasland: Would you be available to review my change?

@erlend-aasland
Copy link
Contributor

I updated my PR to better explain the change, and I documented generated files in Doc/using/configure.rst.

@erlend-aasland: Would you be available to review my change?

I'll have a look tomorrow!

@erlend-aasland
Copy link
Contributor

@markshannon:

We are looking at removing deepfreeze altogether. #108722

IIUC, it is only partially removed, and the infrastructure remains, so it would make sense to fix the race condition.

vstinner and others added 6 commits September 6, 2023 19:25
Fix a race condition in "make regen-all". The deepfreeze.c source and
files generated by Argument Clinic are now generated or updated
before generating "global objects". Previously, some identifiers may
miss depending on the order in which these files were generated.

* "make regen-global-objects": Make sure that deepfreeze.c is
  generated and up to date, and always run "make clinic".
* "make clinic" no longer runs generate_global_objects.py script
  anymore.
* "make regen-deepfreeze" now only updates deepfreeze.c, it doesn't
  build deepfreeze.o anymore.
* Remove misleading messages in "make regen-global-objects" and
  "make clinic". They are outdated, these commands are now safe to
  use.
* Document generates files in Doc/using/configure.rst
- place coments above .PHONY targets

- reword comment about implicit clinic regen
This reverts commit 4803f4e.
We must keep the previous rule because of the Makefile patching (!) that the
generate-* scripts does.
@vstinner vstinner force-pushed the fix_regen_all_race_cond branch from 2f5eed3 to 66e8d70 Compare September 6, 2023 17:26
@vstinner
Copy link
Member Author

vstinner commented Sep 6, 2023

Revert "Use DEEPFREEZE_C in target rule as well"

What what the problem?

Use $(DEEPFREEZE_C)

I tried again your change :-)

@vstinner
Copy link
Member Author

vstinner commented Sep 6, 2023

Tests / Check if generated files are up to date (pull_request) Successful

Good :-)

@vstinner vstinner merged commit db1ee6a into python:main Sep 6, 2023
@vstinner vstinner deleted the fix_regen_all_race_cond branch September 6, 2023 18:09
@miss-islington
Copy link
Contributor

Thanks @vstinner for the PR 🌮🎉.. I'm working now to backport this PR to: 3.11, 3.12.
🐍🍒⛏🤖

@miss-islington
Copy link
Contributor

Sorry, @vstinner, I could not cleanly backport this to 3.12 due to a conflict.
Please backport using cherry_picker on command line.
cherry_picker db1ee6a19ab62191c16ecb732cb4dcaede98a902 3.12

@miss-islington
Copy link
Contributor

Sorry, @vstinner, I could not cleanly backport this to 3.11 due to a conflict.
Please backport using cherry_picker on command line.
cherry_picker db1ee6a19ab62191c16ecb732cb4dcaede98a902 3.11

vstinner added a commit to vstinner/cpython that referenced this pull request Sep 6, 2023
Fix a race condition in "make regen-all". The deepfreeze.c source and
files generated by Argument Clinic are now generated or updated
before generating "global objects". Previously, some identifiers may
miss depending on the order in which these files were generated.

* "make regen-global-objects": Make sure that deepfreeze.c is
  generated and up to date, and always run "make clinic".
* "make clinic" no longer runs generate_global_objects.py script.
* "make regen-deepfreeze" now only updates deepfreeze.c (C file).
  It doesn't build deepfreeze.o (object) anymore.
* Remove misleading messages in "make regen-global-objects" and
  "make clinic". They are now outdated, these commands are now
  safe to use.
* Document generates files in Doc/using/configure.rst.

Co-authored-by: Erlend E. Aasland <[email protected]>
(cherry picked from commit db1ee6a)
@bedevere-bot
Copy link

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

@bedevere-bot bedevere-bot removed the needs backport to 3.12 only security fixes label Sep 6, 2023
vstinner added a commit to vstinner/cpython that referenced this pull request Sep 6, 2023
Fix a race condition in "make regen-all". The deepfreeze.c source and
files generated by Argument Clinic are now generated or updated
before generating "global objects". Previously, some identifiers may
miss depending on the order in which these files were generated.

* "make regen-global-objects": Make sure that deepfreeze.c is
  generated and up to date, and always run "make clinic".
* "make clinic" no longer runs generate_global_objects.py script.
* "make regen-deepfreeze" now only updates deepfreeze.c (C file).
  It doesn't build deepfreeze.o (object) anymore.
* Remove misleading messages in "make regen-global-objects" and
  "make clinic". They are now outdated, these commands are now
  safe to use.

Backport notes:

* Omit Doc/using/configure.rst changes.

Co-authored-by: Erlend E. Aasland <[email protected]>
(cherry picked from commit db1ee6a)
vstinner added a commit to vstinner/cpython that referenced this pull request Sep 6, 2023
Fix a race condition in "make regen-all". The deepfreeze.c source and
files generated by Argument Clinic are now generated or updated
before generating "global objects". Previously, some identifiers may
miss depending on the order in which these files were generated.

* "make regen-global-objects": Make sure that deepfreeze.c is
  generated and up to date, and always run "make clinic".
* "make regen-deepfreeze" now only updates deepfreeze.c (C file).
  It doesn't build deepfreeze.o (object) anymore.
* Remove misleading messages in "make regen-global-objects" and
  "make clinic". They are now outdated, these commands are now
  safe to use.

Backport notes:

* Omit Doc/using/configure.rst changes.
* no need to change "make clinic", it didn't run
  generate_global_objects.py script before.

Co-authored-by: Erlend E. Aasland <[email protected]>
(cherry picked from commit db1ee6a)
@bedevere-bot
Copy link

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

@bedevere-bot bedevere-bot removed the needs backport to 3.11 only security fixes label Sep 6, 2023
@vstinner
Copy link
Member Author

vstinner commented Sep 6, 2023

@vstinner
Copy link
Member Author

vstinner commented Sep 6, 2023

Thanks for the review @erlend-aasland, I merged my PR.

@bedevere-bot
Copy link

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

Hi! The buildbot AMD64 Debian PGO 3.x has failed when building commit db1ee6a.

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

Failed tests:

  • test_venv

Failed subtests:

  • test_deactivate_with_strict_bash_opts - test.test_venv.BasicTest.test_deactivate_with_strict_bash_opts
  • test_isolation - test.test_venv.BasicTest.test_isolation
  • test_config_file_command_key - test.test_venv.BasicTest.test_config_file_command_key
  • test_prompt - test.test_venv.BasicTest.test_prompt
  • test_no_pip_by_default - test.test_venv.EnsurePipTest.test_no_pip_by_default
  • test_explicit_no_pip - test.test_venv.EnsurePipTest.test_explicit_no_pip
  • test_with_pip - test.test_venv.EnsurePipTest.test_with_pip
  • test_zippath_from_non_installed_posix - test.test_venv.BasicTest.test_zippath_from_non_installed_posix

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

==

Click to see traceback logs
Traceback (most recent call last):
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 111, in test_defaults_with_str_path
    self.run_with_capture(venv.create, self.env_dir)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 88, in run_with_capture
    func(*args, **kwargs)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 469, in create
    builder.create(env_dir)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 74, in create
    self.setup_python(context)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 301, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 236, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 273, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 164, in _fastcopy_sendfile
    raise err from None
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 150, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpq3rroyi5/bin/python' -> '/tmp/test_python_j2kpxgaq/tmpq3rroyi5/bin/python3.13'


Traceback (most recent call last):
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 658, in test_explicit_no_pip
    self.run_with_capture(venv.create, self.env_dir, with_pip=False)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 88
, in run_with_capture
    func(*args, **kwargs)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 469, in create
    builder.create(env_dir)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 74, in create
    self.setup_python(context)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 301, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 236, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 273, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 164, in _fastcopy_sendfile
    raise err from None
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 150, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/tmp/test_python_icmma_pq/tmpzfatuo4y/bin/python' -> '/tmp/test_python_icmma_pq/tmpzfatuo4y/bin/python3.13'


Traceback (most recent call last):
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 374, in test_upgrade
    self.run_with_capture(builder.create, self.env_dir)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 88, in run_with_capture
    func(*args, **kwargs)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 74, in create
    self.setup_python(context)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 301, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 236, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 273, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 164, in _fastcopy_sendfile
    raise err from None
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 150, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpoiauq34u/bin/python' -> '/tmp/test_python_j2kpxgaq/tmpoiauq34u/bin/python3.13'


Traceback (most recent call last):
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 653, in test_no_pip_by_default
    self.run_with_capture(venv.create, self.env_dir)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 88, in run_with_capture
    func(*args, **kwargs)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 469, in create
    builder.create(env_dir)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 74, in create
    self.setup_python(context)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 301, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 236, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 273, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 164, in _fastcopy_sendfile
    raise err from None
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 150, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/tmp/test_python_icmma_pq/tmpbhoyt_8u/bin/python' -> '/tmp/test_python_icmma_pq/tmpbhoyt_8u/bin/python3.13'


Traceback (most recent call last):
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 392, in test_isolation
    builder.create(self.env_dir)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 74, in create
    self.setup_python(context)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 301, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 236, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 273, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 164, in _fastcopy_sendfile
    raise err from None
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 150, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmppdmgi_kv/bin/python' -> '/tmp/test_python_j2kpxgaq/tmppdmgi_kv/bin/python3.13'


Traceback (most recent call last):
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 111, in test_defaults_with_str_path
    self.run_with_capture(venv.create, self.env_dir)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 88, in run_with_capture
    func(*args, **kwargs)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 469, in create
    builder.create(env_dir)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 74, in create
    self.setup_python(context)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 301, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 236, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 273, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 164, in _fastcopy_sendfile
    raise err from None
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 150, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/tmp/test_python_icmma_pq/tmpikx_9dzw/bin/python' -> '/tmp/test_python_icmma_pq/tmpikx_9dzw/bin/python3.13'


Traceback (most recent call last):
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 475, in test_multiprocessing
    self.run_with_capture(venv.create, self.env_dir)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 88, in run_with_capture
    func(*args, **kwargs)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 469, in create
    builder.create(env_dir)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 74, in create
    self.setup_python(context)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 301, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 236, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 273, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 164, in _fastcopy_sendfile
    raise err from None
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 150, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpxhsyol5n/bin/python' -> '/tmp/test_python_j2kpxgaq/tmpxhsyol5n/bin/python3.13'


Traceback (most recent call last):
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 580, in test_zippath_from_non_installed_posix
    shutil.copytree(fn, os.path.join(libdir, name))
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 588, in copytree
    return _copytree(entries=entries, src=src, dst=dst, symlinks=symlinks,
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 542, in _copytree
    raise Error(errors)
shutil.Error: [('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_codecs.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_codecs.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_codecs.py' -> '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_codecs.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_userstring.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_userstring.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_userstring.py' -> '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_userstring.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_int_literal.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_int_literal.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_int_literal.py' -> '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_int_literal.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/pickletester.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/pickletester.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/pickletester.py' -> '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/pickletester.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_syntax.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_syntax.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_syntax.py' -> '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_syntax.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_difflib_expect.html', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_difflib_expect.html', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_difflib_expect.html' -> '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_difflib_expect.html'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/__pycache__', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/__pycache__', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/__pycache__'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/randv2_64.pck', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/randv2_64.pck', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/randv2_64.pck' -> '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/randv2_64.pck'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_timeit.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_timeit.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_timeit.py' -> '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_timeit.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_os.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_os.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/t
st/test_os.py' -> '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_os.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/exception_hierarchy.txt', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/exception_hierarchy.txt', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/exception_hierarchy.txt' -> '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/exception_hierarchy.txt'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_imaplib.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_imaplib.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_imaplib.py' -> '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_imaplib.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_strptime.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_strptime.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_strptime.py' -> '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_strptime.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_codecencodings_kr.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_codecencodings_kr.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_codecencodings_kr.py' -> '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_codecencodings_kr.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_cmd.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_cmd.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_cmd.py' -> '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_cmd.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_htmlparser.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_htmlparser.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_htmlparser.py' -> '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_htmlparser.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/profilee.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/profilee.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/profilee.py' -> '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/profilee.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_unicode_file.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_unicode_file.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_unicode_file.py' -> '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_unicode_file.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_file.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_file.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_file.py' -> '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_file.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/bui
ld/Lib/test/badsyntax_future6.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/badsyntax_future6.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/badsyntax_future6.py' -> '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/badsyntax_future6.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_osx_env.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_osx_env.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_osx_env.py' -> '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_osx_env.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_http_cookiejar.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_http_cookiejar.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_http_cookiejar.py' -> '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_http_cookiejar.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_keywordonlyarg.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_keywordonlyarg.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_keywordonlyarg.py' -> '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_keywordonlyarg.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_posix.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_posix.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_posix.py' -> '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_posix.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_enumerate.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_enumerate.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_enumerate.py' -> '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_enumerate.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_getpath.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_getpath.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_getpath.py' -> '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_getpath.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/tokenize_tests-utf8-coding-cookie-and-no-utf8-bom-sig.txt', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/tokenize_tests-utf8-coding-cookie-and-no-utf8-bom-sig.txt', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/tokenize_tests-utf8-coding-cookie-and-no-utf8-bom-sig.txt' -> '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/tokenize_tests-utf8-coding-cookie-and-no-utf8-bom-sig.txt'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_types.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_types.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_types.py' -> '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_types.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/t
st/ffdh3072.pem', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/ffdh3072.pem', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/ffdh3072.pem' -> '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/ffdh3072.pem'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_exception_group.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_exception_group.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_exception_group.py' -> '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_exception_group.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_genericclass.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_genericclass.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_genericclass.py' -> '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_genericclass.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_rlcompleter.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_rlcompleter.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_rlcompleter.py' -> '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_rlcompleter.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test__xxinterpchannels.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test__xxinterpchannels.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test__xxinterpchannels.py' -> '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test__xxinterpchannels.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_sched.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_sched.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_sched.py' -> '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_sched.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/pycacert.pem', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/pycacert.pem', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/pycacert.pem' -> '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/pycacert.pem'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_zipimport.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_zipimport.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_zipimport.py' -> '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_zipimport.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_webbrowser.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_webbrowser.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_webbrowser.py' -> '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_webbrowser.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_poplib.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_poplib.py', "[Errno 28] No space left on device: '/var/lib/buil
dbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_poplib.py' -> '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_poplib.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_set.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_set.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_set.py' -> '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_set.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_startfile.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_startfile.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_startfile.py' -> '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_startfile.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_json', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_json', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_json'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_compiler_codegen.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_compiler_codegen.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_compiler_codegen.py' -> '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_compiler_codegen.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_smtpnet.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_smtpnet.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_smtpnet.py' -> '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_smtpnet.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_xxlimited.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_xxlimited.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_xxlimited.py' -> '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_xxlimited.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/badsyntax_future10.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/badsyntax_future10.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/badsyntax_future10.py' -> '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/badsyntax_future10.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_type_comments.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_type_comments.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_type_comments.py' -> '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_type_comments.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/smtpd.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/smtpd.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/smtpd.py' -> '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/smtpd.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test__osx_support.py', '/tmp/test_python_j2k
pxgaq/tmpwxeybunc/lib/python3.13/test/test__osx_support.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test__osx_support.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_scope.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_scope.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_scope.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_doctest2.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_doctest2.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_doctest2.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/pstats.pck', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/pstats.pck', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/pstats.pck' -> '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/pstats.pck'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_generator_stop.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_generator_stop.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_generator_stop.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_gdb.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_gdb.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_gdb.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_bufio.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_bufio.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_bufio.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_zlib.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_zlib.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_zlib.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_frame.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_frame.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_frame.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_http_cookies.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_http_cookies.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_http_cookies.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/string_tests.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/string_tests.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/string_tests.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_sys_setprofile.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_sys_setprofile.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_sys_setprofile.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_resource.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_resource.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_resource.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-prof
ile-opt.pgo/build/Lib/test/test_print.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_print.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_print.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_urllib.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_urllib.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_urllib.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/badcert.pem', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/badcert.pem', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/badcert.pem'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_html.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_html.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_html.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_secrets.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_secrets.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_secrets.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/regrtest.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/regrtest.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/regrtest.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_doctest4.txt', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_doctest4.txt', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_doctest4.txt'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/cmath_testcases.txt', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/cmath_testcases.txt', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/cmath_testcases.txt'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/keycert.pem', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/keycert.pem', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/keycert.pem'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_colorsys.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_colorsys.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_colorsys.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_ipaddress.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_ipaddress.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_ipaddress.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_memoryio.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_memoryio.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_memoryio.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/gdb_sample.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/gdb_sample.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/gdb_sample.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/tkinterdata', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/t
st/tkinterdata', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/tkinterdata'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_winsound.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_winsound.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_winsound.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_threadedtempfile.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_threadedtempfile.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_threadedtempfile.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_stringprep.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_stringprep.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_stringprep.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_xml_dom_minicompat.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_xml_dom_minicompat.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_xml_dom_minicompat.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_compiler_assemble.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_compiler_assemble.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_compiler_assemble.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/cfgparser.3', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/cfgparser.3', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/cfgparser.3'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_zipfile', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_zipfile', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_zipfile'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_buffer.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_buffer.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_buffer.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_shutil.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_shutil.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_shutil.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_unicode_file_functions.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_unicode_file_functions.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_unicode_file_functions.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_sqlite3', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_sqlite3', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_sqlite3'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_int.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_int.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_int.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_userdict.py', '/tmp/test_python_j2kpxgaq/tm
pwxeybunc/lib/python3.13/test/test_userdict.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_userdict.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_tarfile.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_tarfile.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_tarfile.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/selfsigned_pythontestdotnet.pem', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/selfsigned_pythontestdotnet.pem', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/selfsigned_pythontestdotnet.pem'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_lltrace.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_lltrace.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_lltrace.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/ssl_servers.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/ssl_servers.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/ssl_servers.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_socketserver.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_socketserver.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_socketserver.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_math_property.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_math_property.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_math_property.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_functools.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_functools.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_functools.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_strftime.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_strftime.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_strftime.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_tkinter', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_tkinter', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_tkinter'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_raise.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_raise.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_raise.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_random.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_random.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_random.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_re.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_re.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_re.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_getopt.py
', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_getopt.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_getopt.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_perf_profiler.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_perf_profiler.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_perf_profiler.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_string.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_string.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_string.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/zip_cp437_header.zip', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/zip_cp437_header.zip', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/zip_cp437_header.zip'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_numeric_tower.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_numeric_tower.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_numeric_tower.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_codecmaps_jp.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_codecmaps_jp.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_codecmaps_jp.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_email', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_email', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_email'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/_test_atexit.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/_test_atexit.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/_test_atexit.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/testtar.tar', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/testtar.tar', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/testtar.tar'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_csv.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_csv.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_csv.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_named_expressions.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_named_expressions.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_named_expressions.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_winreg.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_winreg.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_winreg.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/_test_venv_multiprocessing.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/_test_venv_multiprocessing.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/_test_venv_multiprocessing.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build
/Lib/test/test_concurrent_futures', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_concurrent_futures', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_concurrent_futures'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_type_cache.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_type_cache.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_type_cache.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_structseq.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_structseq.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_structseq.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_decimal.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_decimal.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_decimal.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/decimaltestdata', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/decimaltestdata', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/decimaltestdata'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_pyclbr.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_pyclbr.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_pyclbr.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_future5.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_future5.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_future5.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_gettext.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_gettext.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_gettext.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/win_console_handler.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/win_console_handler.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/win_console_handler.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_tools', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_tools', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_tools'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/mod_generics_cache.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/mod_generics_cache.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/mod_generics_cache.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_charmapcodec.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_charmapcodec.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_charmapcodec.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_abc.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_abc.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_abc.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Li
b/test/mp_preload.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/mp_preload.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/mp_preload.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_quopri.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_quopri.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_quopri.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_funcattrs.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_funcattrs.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_funcattrs.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_keyword.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_keyword.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_keyword.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_subclassinit.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_subclassinit.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_subclassinit.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_locale.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_locale.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_locale.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/double_const.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/double_const.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/double_const.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_import', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_import', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_import'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_unicode_identifiers.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_unicode_identifiers.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_unicode_identifiers.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_fnmatch.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_fnmatch.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_fnmatch.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/badsyntax_future7.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/badsyntax_future7.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/badsyntax_future7.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_copy.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_copy.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_copy.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_fractions.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_fractions.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_fractions.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/badsyntax_3131
.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/badsyntax_3131.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/badsyntax_3131.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_utf8_mode.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_utf8_mode.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_utf8_mode.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_pty.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_pty.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_pty.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_mailbox.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_mailbox.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_mailbox.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_defaultdict.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_defaultdict.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_defaultdict.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/keycert2.pem', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/keycert2.pem', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/keycert2.pem'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_lzma.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_lzma.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_lzma.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_wsgiref.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_wsgiref.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_wsgiref.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_thread.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_thread.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_thread.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/sample_doctest_no_doctests.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/sample_doctest_no_doctests.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/sample_doctest_no_doctests.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_logging.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_logging.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_logging.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_eof.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_eof.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_eof.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_c_locale_coercion.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_c_locale_coercion.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_c_locale_coercion.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_sys.py', '/tmp/test_pyth
n_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_sys.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_sys.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/tokenize_tests.txt', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/tokenize_tests.txt', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/tokenize_tests.txt'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_extcall.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_extcall.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_extcall.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_inspect.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_inspect.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_inspect.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/audiotests.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/audiotests.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/audiotests.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/future_test1.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/future_test1.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/future_test1.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_reprlib.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_reprlib.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_reprlib.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_abstract_numbers.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_abstract_numbers.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_abstract_numbers.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/ssl_key.pem', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/ssl_key.pem', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/ssl_key.pem'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_dbm.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_dbm.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_dbm.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/imp_dummy.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/imp_dummy.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/imp_dummy.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_turtle.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_turtle.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_turtle.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/bad_coding2.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/bad_coding2.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/bad_coding2.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_curses.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_curses.py', "[Errno 28] No space le
ft on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_curses.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_property.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_property.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_property.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_socket.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_socket.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_socket.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_type_params.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_type_params.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_type_params.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_audit.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_audit.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_audit.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_ensurepip.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_ensurepip.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_ensurepip.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_ttk', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_ttk', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_ttk'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_tuple.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_tuple.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_tuple.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_math.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_math.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_math.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_future3.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_future3.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_future3.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/final_b.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/final_b.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/final_b.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/badsyntax_future8.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/badsyntax_future8.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/badsyntax_future8.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_flufl.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_flufl.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_flufl.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/datetimetester.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/datetimetester.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/datetimetester.py'")
, ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_bdb.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_bdb.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_bdb.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_urllibnet.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_urllibnet.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_urllibnet.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test__locale.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test__locale.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test__locale.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_codecmaps_kr.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_codecmaps_kr.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_codecmaps_kr.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/nullbytecert.pem', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/nullbytecert.pem', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/nullbytecert.pem'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_queue.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_queue.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_queue.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_augassign.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_augassign.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_augassign.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_bigmem.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_bigmem.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_bigmem.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_isinstance.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_isinstance.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_isinstance.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/wheel-0.40.0-py3-none-any.whl', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/wheel-0.40.0-py3-none-any.whl', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/wheel-0.40.0-py3-none-any.whl'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_setcomps.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_setcomps.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_setcomps.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_userlist.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_userlist.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_userlist.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/leakers', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/leakers', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/leakers'"), ('/var/lib/buildbot/wo
rkers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/mock_socket.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/mock_socket.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/mock_socket.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/sample_doctest.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/sample_doctest.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/sample_doctest.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_hashlib.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_hashlib.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_hashlib.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_unpack.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_unpack.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_unpack.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_grp.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_grp.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_grp.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_exception_variations.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_exception_variations.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_exception_variations.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_list.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_list.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_list.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/pythoninfo.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/pythoninfo.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/pythoninfo.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_file_eintr.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_file_eintr.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_file_eintr.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_tabnanny.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_tabnanny.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_tabnanny.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_monitoring.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_monitoring.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_monitoring.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/subprocessdata', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/subprocessdata', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/subprocessdata'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_ftplib.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_ftplib.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_ftplib.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-
debian-profile-opt.pgo/build/Lib/test/test_netrc.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_netrc.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_netrc.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_genericalias.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_genericalias.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_genericalias.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_codecmaps_hk.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_codecmaps_hk.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_codecmaps_hk.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_sort.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_sort.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_sort.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_zoneinfo', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_zoneinfo', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_zoneinfo'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/re_tests.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/re_tests.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/re_tests.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/doctest_aliases.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/doctest_aliases.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/doctest_aliases.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_threading.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_threading.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_threading.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_capi', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_capi', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_capi'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/levenshtein_examples.json', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/levenshtein_examples.json', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/levenshtein_examples.json'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_configparser.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_configparser.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_configparser.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/cfgparser.2', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/cfgparser.2', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/cfgparser.2'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_httplib.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_httplib.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_httplib.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/m
ultibytecodec_support.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/multibytecodec_support.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/multibytecodec_support.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/badsyntax_future5.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/badsyntax_future5.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/badsyntax_future5.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/inspect_stringized_annotations.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/inspect_stringized_annotations.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/inspect_stringized_annotations.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/nokia.pem', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/nokia.pem', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/nokia.pem'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_univnewlines.py', '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_univnewlines.py', "[Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpwxeybunc/lib/python3.13/test/test_univnewlines.py'")]


Traceback (most recent call last):
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 403, in test_symlinking
    builder.create(self.env_dir)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 74, in create
    self.setup_python(context)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 301, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 236, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 273, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 164, in _fastcopy_sendfile
    raise err from None
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 150, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpt9anawz6/bin/python' -> '/tmp/test_python_j2kpxgaq/tmpt9anawz6/bin/python3.13'


Traceback (most recent call last):
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 186, in test_prompt
    self.run_with_capture(builder.create, self.env_dir)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 88, in run_with_capture
    func(*args, **kwargs)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 74, in create
    self.setup_python(context)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 301, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 236, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 273, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 164, in _fastcopy_sendfile
    raise err from None
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 150, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpvkjoj7kj/bin/python' -> '/tmp/test_python_j2kpxgaq/tmpvkjoj7kj/bin/python3.13'


Traceback (most recent call last):
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 170, in test_config_file_command_key
    self.run_with_capture(b.create, self.env_dir)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 88, in run_with_capture
    func(*args, **kwargs)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 74, in create
    self.setup_python(context)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 301, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 236, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 273, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 164, in _fastcopy_sendfile
    raise err from None
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 150, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/tmp/test_python_icmma_pq/tmpc7n5a5ez/bin/python' -> '/tmp/test_python_icmma_pq/tmpc7n5a5ez/bin/python3.13'


Traceback (most recent call last):
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 119, in test_defaults_with_pathlib_path
    self.run_with_capture(venv.create, pathlib.Path(self.env_dir))
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 88, in run_with_capture
    func(*args, **kwargs)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 469, in create
    builder.create(env_dir)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 74, in create
    self.setup_python(context)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 301, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 236, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 273, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 164, in _fastcopy_sendfile
    raise err from None
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 150, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/tmp/test_python_icmma_pq/tmpttry01uk/bin/python' -> '/tmp/test_python_icmma_pq/tmpttry01uk/bin/python3.13'


Traceback (most recent call last):
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 426, in test_executable
    self.run_with_capture(venv.create, self.env_dir)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 88, in run_with_capture
    func(*args, **kwargs)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 469, in create
    builder.create(env_dir)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 74, in create
    self.setup_python(context)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 301, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 236, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 273, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 164, in _fastcopy_sendfile
    raise err from None
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 150, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/tmp/test_python_icmma_pq/tmp628wvqdl/bin/python' -> '/tmp/test_python_icmma_pq/tmp628wvqdl/bin/python3.13'


Traceback (most recent call last):
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 493, in test_multiprocessing_recursion
    self.run_with_capture(venv.create, self.env_dir)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 88, in run_with_capture
    func(*args, **kwargs)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 469, in create
    builder.create(env_dir)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 74, in create
    self.setup_python(context)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 301, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 236, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 273, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 164, in _fastcopy_sendfile
    raise err from None
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 150, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/tmp/test_python_icmma_pq/tmpt0chf8hv/bin/python' -> '/tmp/test_python_icmma_pq/tmpt0chf8hv/bin/python3.13'


Traceback (most recent call last):
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 186, in test_prompt
    self.run_with_capture(builder.create, self.env_dir)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 88, in run_with_capture
    func(*args, **kwargs)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 74, in create
    self.setup_python(context)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 301, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 236, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 273, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 164, in _fastcopy_sendfile
    raise err from None
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 150, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/tmp/test_python_icmma_pq/tmpj78lsa99/bin/python' -> '/tmp/test_python_icmma_pq/tmpj78lsa99/bin/python3.13'


Traceback (most recent call last):
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 658, in test_explicit_no_pip
    self.run_with_capture(venv.create, self.env_dir, with_pip=False)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 88, in run_with_capture
    func(*args, **kwargs)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 469, in create
    builder.create(env_dir)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 74, in create
    self.setup_python(context)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 301, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 236, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 273, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 164, in _fastcopy_sendfile
    raise err from None
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 150, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpjd5t194m/bin/python' -> '/tmp/test_python_j2kpxgaq/tmpjd5t194m/bin/python3.13'


Traceback (most recent call last):
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 580, in test_zippath_from_non_installed_posix
    shutil.copytree(fn, os.path.join(libdir, name))
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 588, in copytree
    return _copytree(entries=entries, src=src, dst=dst, symlinks=symlinks,
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 542, in _copytree
    raise Error(errors)
shutil.Error: [('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_tomllib/test_error.py', '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_tomllib/test_error.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_tomllib/test_error.py' -> '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_tomllib/test_error.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_tomllib/test_misc.py', '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_tomllib/test_misc.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_tomllib/test_misc.py' -> '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_tomllib/test_misc.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_sax.py', '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_sax.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_sax.py' -> '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_sax.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_calendar.py', '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_calendar.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_calendar.py' -> '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_calendar.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_stable_abi_ctypes.py', '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_stable_abi_ctypes.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_stable_abi_ctypes.py' -> '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_stable_abi_ctypes.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_coroutines.py', '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_coroutines.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_coroutines.py' -> '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_coroutines.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_binascii.py', '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_binascii.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_binascii.py' -> '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_binascii.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_cprofile.py', '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_cprofile.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_cprofile.py' -> '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_cprofile.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_faulthandler.py', '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_faulthandler.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_faulthandler.py' -> '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_faulthandler.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-o
pt.pgo/build/Lib/test/floating_points.txt', '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/floating_points.txt', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/floating_points.txt' -> '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/floating_points.txt'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_iter.py', '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_iter.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_iter.py' -> '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_iter.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_dynamicclassattribute.py', '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_dynamicclassattribute.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_dynamicclassattribute.py' -> '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_dynamicclassattribute.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_stat.py', '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_stat.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_stat.py' -> '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_stat.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/audit-tests.py', '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/audit-tests.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/audit-tests.py' -> '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/audit-tests.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_generators.py', '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_generators.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_generators.py' -> '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_generators.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/formatfloat_testcases.txt', '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/formatfloat_testcases.txt', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/formatfloat_testcases.txt' -> '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/formatfloat_testcases.txt'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_enum.py', '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_enum.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_enum.py' -> '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_enum.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_descr.py', '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_descr.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_descr.py' -> '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_descr.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_idle.py', '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_idle.py', "[Errno 28] No space left on device: '/var/lib/buildbot/w
rkers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_idle.py' -> '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_idle.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_codecmaps_tw.py', '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_codecmaps_tw.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_codecmaps_tw.py' -> '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_codecmaps_tw.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_readline.py', '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_readline.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_readline.py' -> '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_readline.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_difflib.py', '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_difflib.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_difflib.py' -> '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_difflib.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_class.py', '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_class.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_class.py' -> '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_class.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_codecencodings_tw.py', '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_codecencodings_tw.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_codecencodings_tw.py' -> '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_codecencodings_tw.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_cmd_line_script.py', '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_cmd_line_script.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_cmd_line_script.py' -> '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_cmd_line_script.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_ssl.py', '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_ssl.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_ssl.py' -> '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_ssl.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/future_test2.py', '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/future_test2.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/future_test2.py' -> '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/future_test2.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/badsyntax_future9.py', '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/badsyntax_future9.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/badsyntax_future9.py' -> '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/badsyn
tax_future9.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_struct.py', '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_struct.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_struct.py' -> '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_struct.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/badsyntax_pep3120.py', '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/badsyntax_pep3120.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/badsyntax_pep3120.py' -> '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/badsyntax_pep3120.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/math_testcases.txt', '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/math_testcases.txt', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/math_testcases.txt' -> '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/math_testcases.txt'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/autotest.py', '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/autotest.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/autotest.py' -> '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/autotest.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_pwd.py', '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_pwd.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_pwd.py' -> '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_pwd.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_base64.py', '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_base64.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_base64.py' -> '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_base64.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/mime.types', '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/mime.types', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/mime.types' -> '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/mime.types'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_shlex.py', '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_shlex.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_shlex.py' -> '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_shlex.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_statistics.py', '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_statistics.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_statistics.py' -> '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_statistics.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_codecencodings_iso2022.py', '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_codecencodings_iso2022.py', "[Errno 28] No space left
 on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_codecencodings_iso2022.py' -> '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_codecencodings_iso2022.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/secp384r1.pem', '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/secp384r1.pem', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/secp384r1.pem' -> '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/secp384r1.pem'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_peepholer.py', '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_peepholer.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_peepholer.py' -> '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_peepholer.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_string_literals.py', '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_string_literals.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_string_literals.py' -> '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_string_literals.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_argparse.py', '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_argparse.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_argparse.py' -> '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_argparse.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_pep646_syntax.py', '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_pep646_syntax.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_pep646_syntax.py' -> '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_pep646_syntax.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_perfmaps.py', '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_perfmaps.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_perfmaps.py' -> '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_perfmaps.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_pkg.py', '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_pkg.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_pkg.py' -> '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_pkg.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_pyexpat.py', '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_pyexpat.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_pyexpat.py' -> '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_pyexpat.py'"), ('/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_timeout.py', '/tmp/test_python_icmma_pq/tmpqj82y40h/lib/python3.13/test/test_timeout.py', "[Errno 28] No space left on device: '/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_timeout.py' -> '/tmp/test_python_icmma_pq/tmpqj82y4


Traceback (most recent call last):
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 374, in test_upgrade
    self.run_with_capture(builder.create, self.env_dir)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 88, in run_with_capture
    func(*args, **kwargs)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 74, in create
    self.setup_python(context)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 301, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 236, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 273, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 164, in _fastcopy_sendfile
    raise err from None
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 150, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/tmp/test_python_icmma_pq/tmpdcdp8oip/bin/python' -> '/tmp/test_python_icmma_pq/tmpdcdp8oip/bin/python3.13'


Traceback (most recent call last):
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 170, in test_config_file_command_key
    self.run_with_capture(b.create, self.env_dir)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 88, in run_with_capture
    func(*args, **kwargs)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 74, in create
    self.setup_python(context)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 301, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 236, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 273, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 164, in _fastcopy_sendfile
    raise err from None
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 150, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpupuyxyxp/bin/python' -> '/tmp/test_python_j2kpxgaq/tmpupuyxyxp/bin/python3.13'


Traceback (most recent call last):
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 263, in test_sysconfig
    self.run_with_capture(venv.create, self.env_dir, symlinks=False)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 88, in run_with_capture
    func(*args, **kwargs)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 469, in create
    builder.create(env_dir)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 74, in create
    self.setup_python(context)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 301, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 236, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 273, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 164, in _fastcopy_sendfile
    raise err from None
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 150, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/tmp/test_python_icmma_pq/tmpfbobf7qr/bin/python' -> '/tmp/test_python_icmma_pq/tmpfbobf7qr/bin/python3.13'


Traceback (most recent call last):
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 629, in test_activate_shell_script_has_no_dos_newlines
    venv.create(venv_dir)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 469, in create
    builder.create(env_dir)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 74, in create
    self.setup_python(context)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 301, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 236, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 273, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 164, in _fastcopy_sendfile
    raise err from None
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 150, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpbv2ei3ro/bin/python' -> '/tmp/test_python_j2kpxgaq/tmpbv2ei3ro/bin/python3.13'


Traceback (most recent call last):
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 506, in test_deactivate_with_strict_bash_opts
    builder.create(self.env_dir)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 74, in create
    self.setup_python(context)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 301, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 236, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 273, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 164, in _fastcopy_sendfile
    raise err from None
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 150, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/tmp/test_python_icmma_pq/tmpl1ui10hq/bin/python' -> '/tmp/test_python_icmma_pq/tmpl1ui10hq/bin/python3.13'


Traceback (most recent call last):
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 245, in test_prefixes
    self.run_with_capture(venv.create, self.env_dir)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 88, in run_with_capture
    func(*args, **kwargs)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 469, in create
    builder.create(env_dir)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 74, in create
    self.setup_python(context)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 301, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 236, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 273, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 164, in _fastcopy_sendfile
    raise err from None
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 150, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/tmp/test_python_icmma_pq/tmpe8ldp6wd/bin/python' -> '/tmp/test_python_icmma_pq/tmpe8ldp6wd/bin/python3.13'


Traceback (most recent call last):
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 403, in test_symlinking
    builder.create(self.env_dir)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 74, in create
    self.setup_python(context)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 301, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 236, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 273, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 164, in _fastcopy_sendfile
    raise err from None
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 150, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/tmp/test_python_icmma_pq/tmpu67dqdcz/bin/python' -> '/tmp/test_python_icmma_pq/tmpu67dqdcz/bin/python3.13'


Traceback (most recent call last):
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 392, in test_isolation
    builder.create(self.env_dir)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 74, in create
    self.setup_python(context)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 301, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 236, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 273, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 164, in _fastcopy_sendfile
    raise err from None
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 150, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/tmp/test_python_icmma_pq/tmplnz1j_r7/bin/python' -> '/tmp/test_python_icmma_pq/tmplnz1j_r7/bin/python3.13'


Traceback (most recent call last):
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 119, in test_defaults_with_pathlib_path
    self.run_with_capture(venv.create, pathlib.Path(self.env_dir))
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 88, in run_with_capture
    func(*args, **kwargs)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 469, in create
    builder.create(env_dir)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 74, in create
    self.setup_python(context)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 301, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 236, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 273, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 164, in _fastcopy_sendfile
    raise err from None
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 150, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpr2qb7i12/bin/python' -> '/tmp/test_python_j2kpxgaq/tmpr2qb7i12/bin/python3.13'


Traceback (most recent call last):
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 263, in test_sysconfig
    self.run_with_capture(venv.create, self.env_dir, symlinks=False)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 88, in run_with_capture
    func(*args, **kwargs)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 469, in create
    builder.create(env_dir)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 74, in create
    self.setup_python(context)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 301, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 236, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 273, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 164, in _fastcopy_sendfile
    raise err from None
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 150, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmps69jtb_e/bin/python' -> '/tmp/test_python_j2kpxgaq/tmps69jtb_e/bin/python3.13'


Traceback (most recent call last):
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 335, in test_overwrite_existing
    venv.create(self.env_dir)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 469, in create
    builder.create(env_dir)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 74, in create
    self.setup_python(context)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 301, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 236, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 273, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 164, in _fastcopy_sendfile
    raise err from None
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 150, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmp363yegz1/bin/python' -> '/tmp/test_python_j2kpxgaq/tmp363yegz1/bin/python3.13'


Traceback (most recent call last):
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 629, in test_activate_shell_script_has_no_dos_newlines
    venv.create(venv_dir)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 469, in create
    builder.create(env_dir)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 74, in create
    self.setup_python(context)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 301, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 236, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 273, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 164, in _fastcopy_sendfile
    raise err from None
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 150, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/tmp/test_python_icmma_pq/tmp4ua7z9iz/bin/python' -> '/tmp/test_python_icmma_pq/tmp4ua7z9iz/bin/python3.13'


Traceback (most recent call last):
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 475, in test_multiprocessing
    self.run_with_capture(venv.create, self.env_dir)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 88, in run_with_capture
    func(*args, **kwargs)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 469, in create
    builder.create(env_dir)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 74, in create
    self.setup_python(context)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 301, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 236, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 273, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 164, in _fastcopy_sendfile
    raise err from None
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 150, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/tmp/test_python_icmma_pq/tmp7fub5e8m/bin/python' -> '/tmp/test_python_icmma_pq/tmp7fub5e8m/bin/python3.13'


Traceback (most recent call last):
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 781, in test_with_pip
    self.do_test_with_pip(False)
  File "/var/lib/buildbot/workers/enable-optimiz
ations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 704, in do_test_with_pip
    self.run_with_capture(venv.create, self.env_dir,
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 88, in run_with_capture
    func(*args, **kwargs)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 469, in create
    builder.create(env_dir)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 74, in create
    self.setup_python(context)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 301, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 236, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 273, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 164, in _fastcopy_sendfile
    raise err from None
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 150, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/tmp/test_python_icmma_pq/tmpldp9z0dl/bin/python' -> '/tmp/test_python_icmma_pq/tmpldp9z0dl/bin/python3.13'


Traceback (most recent call last):
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 245, in test_prefixes
    self.run_with_capture(venv.create, self.env_dir)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 88, in run_with_capture
    func(*args, **kwargs)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 469, in create
    builder.create(env_dir)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 74, in create
    self.setup_python(context)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 301, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 236, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 273, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 164, in _fastcopy_sendfile
    raise err from None
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 150, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpm494u38o/bin/python' -> '/tmp/test_python_j2kpxgaq/tmpm494u38o/bin/python3.13'


Traceback (most recent call last):
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 426, in test_executable
    self.run_with_capture(venv.create, self.env_dir)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 88, in run_with_capture
    func(*args, **kwargs)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 469, in create
    builder.create(env_dir)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 74, in create
    self.setup_python(context)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 301, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 236, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 273, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 164, in _fastcopy_sendfile
    raise err from None
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 150, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpmr9_bdl_/bin/python' -> '/tmp/test_python_j2kpxgaq/tmpmr9_bdl_/bin/python3.13'


Traceback (most recent call last):
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 493, in test_multiprocessing_recursion
    self.run_with_capture(venv.create, self.env_dir)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 88, in run_with_capture
    func(*args, **kwargs)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 469, in create
    builder.create(env_dir)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 74, in create
    self.setup_python(context)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 301, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 236, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 273, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 164, in _fastcopy_sendfile
    raise err from None
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 150, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmp9hwdlo9c/bin/python' -> '/tmp/test_python_j2kpxgaq/tmp9hwdlo9c/bin/python3.13'


Traceback (most recent call last):
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 335, in test_overwrite_existing
    venv.create(self.env_dir)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 469, in create
    builder.create(env_dir)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 74, in create
    self.setup_python(context)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 301, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 236, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 273, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 164, in _fastcopy_sendfile
    raise err from None
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 150, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/tmp/test_python_icmma_pq/tmpye034p_h/bin/python' -> '/tmp/test_python_icmma_pq/tmpye034p_h/bin/python3.13'


Traceback (most recent call last):
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 781, in test_with_pip
    self.do_test_with_pip(False)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 704, in do_test_with_pip
    self.run_with_capture(venv.create, self.env_dir,
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 88, in run_with_capture
    func(*args, **kwargs)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 469, in create
    builder.create(env_dir)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 74, in create
    self.setup_python(context)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 301, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 236, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 273, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 164, in _fastcopy_sendfile
    raise err from None
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 150, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpdi_gbqm9/bin/python' -> '/tmp/test_python_j2kpxgaq/tmpdi_gbqm9/bin/python3.13'


Traceback (most recent call last):
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 506, in test_deactivate_with_strict_bash_opts
    builder.create(self.env_dir)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 74, in create
    self.setup_python(context)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 301, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 236, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 273, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 164, in _fastcopy_sendfile
    raise err from None
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 150, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmprs3yisq3/bin/python' -> '/tmp/test_python_j2kpxgaq/tmprs3yisq3/bin/python3.13'


Traceback (most recent call last):
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 653, in test_no_pip_by_default
    self.ru
n_with_capture(venv.create, self.env_dir)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_venv.py", line 88, in run_with_capture
    func(*args, **kwargs)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 469, in create
    builder.create(env_dir)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 74, in create
    self.setup_python(context)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 301, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/venv/__init__.py", line 236, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 273, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 164, in _fastcopy_sendfile
    raise err from None
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/shutil.py", line 150, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device: '/tmp/test_python_j2kpxgaq/tmpsrc9isr3/bin/python' -> '/tmp/test_python_j2kpxgaq/tmpsrc9isr3/bin/python3.13'

vstinner added a commit that referenced this pull request Sep 6, 2023
)

gh-108740: Fix "make regen-all" race condition (#108741)

Fix a race condition in "make regen-all". The deepfreeze.c source and
files generated by Argument Clinic are now generated or updated
before generating "global objects". Previously, some identifiers may
miss depending on the order in which these files were generated.

* "make regen-global-objects": Make sure that deepfreeze.c is
  generated and up to date, and always run "make clinic".
* "make regen-deepfreeze" now only updates deepfreeze.c (C file).
  It doesn't build deepfreeze.o (object) anymore.
* Remove misleading messages in "make regen-global-objects" and
  "make clinic". They are now outdated, these commands are now
  safe to use.

Backport notes:

* Omit Doc/using/configure.rst changes.
* no need to change "make clinic", it didn't run
  generate_global_objects.py script before.

Co-authored-by: Erlend E. Aasland <[email protected]>
(cherry picked from commit db1ee6a)
Yhg1s pushed a commit that referenced this pull request Sep 8, 2023
)

gh-108740: Fix "make regen-all" race condition (#108741)

Fix a race condition in "make regen-all". The deepfreeze.c source and
files generated by Argument Clinic are now generated or updated
before generating "global objects". Previously, some identifiers may
miss depending on the order in which these files were generated.

* "make regen-global-objects": Make sure that deepfreeze.c is
  generated and up to date, and always run "make clinic".
* "make clinic" no longer runs generate_global_objects.py script.
* "make regen-deepfreeze" now only updates deepfreeze.c (C file).
  It doesn't build deepfreeze.o (object) anymore.
* Remove misleading messages in "make regen-global-objects" and
  "make clinic". They are now outdated, these commands are now
  safe to use.
* Document generates files in Doc/using/configure.rst.

Co-authored-by: Erlend E. Aasland <[email protected]>
(cherry picked from commit db1ee6a)
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.

5 participants