Public issue detail

Runaway CPU investigation for python3.13: busy poll at unresolved offset in python3.13

python3.13 is stuck in a likely busy poll loop: 100.00% of sampled CPU passed through unresolved offset, with repeated thread backtraces show 1 thread(s) around 0x00007f1c6e7efe92 in pthread_attr_destroy () from target:<path>.

highpackage: python3.13-minimalsource: python3.13score: 106reports: 2

Last seen: 2026-05-19 01:48 UTC. Public JSON: /v1/issues/019dc2a0-9ae7-7f42-8f59-415fe22abe51

Best Available Diagnosis

Fixer does not have a ready diff or triage handoff for this issue yet, but it does have a published diagnosis-only result. This is the clearest current explanation of what workers found.

diagnosis availablecreated: 2026-05-19 01:42 UTCvalidation: ready

python3.13 likely remains stuck in a busy-poll loop. A diagnosis report and patch proposal were created locally.

state: readycreated: 2026-05-19 01:42 UTCvalidation: ready
Published session

Prompt

## Plan Pass

You are planning a fixer patch before any edits happen.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. The original pre-edit snapshot is available at `./source` if you need to inspect it. For interpreter processes, plan from the script/application entrypoint evidence first and include the runtime only as a second investigation target unless the evidence proves a runtime bug.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround. Inspect the relevant code, nearby callers, project contribution docs, and local helper/compat APIs, but do not edit files in this pass.

Return a short markdown plan with these exact sections:

## Problem
## Evidence Confidence
## Proposed Subject
## Patch Plan
## Risks
## Validation

Classify `## Evidence Confidence` as exactly one of `reproduced`, `observed`, or `inferred`. Use `inferred` only for a no-patch diagnosis/report plan unless you can name the extra evidence you will collect before editing; inferred source patches are blocked by Fixer because they are not pull-request-ready. For `observed` source-patch plans, plan to say in the final `## Issue Connection` that the failure was observed by Fixer and not independently reproduced. If the plan touches authentication, authorization, credentials, cryptography, sandboxing, permissions, or timing/throttling behavior, treat it as security-sensitive: do not plan a source patch unless validation can reproduce the behavior and analyze the security impact; otherwise plan a no-patch diagnosis/report. The plan must explain how the proposed code change addresses the observed issue evidence, call out any prior Fixer patch that should be improved or replaced, reject awkward control flow such as avoidable `goto` if there is a cleaner bounded alternative, name any local helper APIs or maintainer conventions the patch should follow, and keep the intended maintainer-facing explanation clear enough that someone unfamiliar with the local complaint wording can still follow the fix. In `## Validation`, name the reproducible configure/build/test entrypoint you will try from the workspace root before any focused leaf compile or smoke check, and include one bounded independent reproduction attempt for the collected failure signal when it is safe and cheap. Do not plan to claim `reproduced` unless that reproduction command or test can actually show the failure.

## Patch Pass

You are working on a bounded fixer proposal.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. Produce the smallest reasonable patch for the target repository, keep the change upstreamable, prefer the clearest control flow available, and do not keep avoidable `goto` when a simpler structure would read better. Before introducing new file, process, allocation, locking, networking, or platform APIs, inspect nearby code and project contribution docs for existing helpers or compatibility wrappers and use those local patterns unless you can explain why they do not fit. Validate from a reproducible workspace-root entrypoint before falling back to focused leaf commands; if a build or test cannot run, report the exact command, the exact blocker, and any narrower check you ran instead. During validation, also try one bounded independent reproduction of the collected failure signal when it is safe and cheap, such as a failing test, smoke command, perf/strace comparison, or before/after runtime check. Only use `reproduced` if that command or test actually reproduced the failure; otherwise keep `observed` and report the reproduction blocker. The final explanation must connect the observed issue evidence to the actual code change, not just paraphrase the diff. Write like a maintainer is going to read the patch mail cold: explain the bug in plain language, define subsystem-specific jargon the first time you need it, and make the causal story obvious. Explicitly classify evidence confidence as `reproduced`, `observed`, or `inferred`: `reproduced` means you reproduced the failure locally; `observed` means Fixer has direct crash/log/trace evidence but you did not independently reproduce it; `inferred` means the source patch is not pull-request-ready, so do not leave a source diff unless you first gather stronger observed/reproduced evidence; otherwise return a no-patch diagnosis/report. For any source-changing `observed` patch, say explicitly in `## Issue Connection` that the failure was observed by Fixer and not independently reproduced. Security-sensitive areas such as authentication, authorization, credentials, cryptography, sandboxing, permissions, and timing/throttling behavior need reproduced evidence plus explicit security-impact analysis before leaving a source diff; otherwise return a no-patch diagnosis/report for human review. If you introduce non-obvious state translation, index remapping, or backend split logic, add a short source comment that explains the invariant being preserved.

Start by explaining the likely root cause from the collected perf, strace, and /proc evidence. If you cannot land a safe patch, leave a diagnosis that is strong enough for an upstream bug report.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround. 

Keep the change narrowly scoped and summarize validation clearly.

In every authoring pass, your final response must start with `Subject: <single-line git commit subject>` and then include these markdown sections exactly:

## Commit Message
A short upstream-friendly explanation of what changed and why. Write it in plain language that a maintainer can follow without local complaint context. If you use subsystem jargon, define it immediately.

## Evidence Confidence
Exactly one word: `reproduced`, `observed`, or `inferred`. Use `reproduced` only when you reproduced the failure locally with a command or test, and include that command/test in `## Validation`. Use `observed` when Fixer has direct crash/log/trace evidence but you did not independently reproduce it. If `## Git Add Paths` lists source files for an `observed` patch, `## Issue Connection` must explicitly say the failure was observed by Fixer and not independently reproduced. Security-sensitive source changes touching authentication, authorization, credentials, cryptography, sandboxing, permissions, or timing/throttling behavior require reproduced evidence and explicit security-impact analysis; otherwise list `None` under `## Git Add Paths` and write a no-patch diagnosis/report. Use `inferred` for profiler/strace/indirect evidence; inferred responses may be no-patch diagnoses or reports, but inferred source patches are not pull-request-ready until stronger evidence is gathered.

## Issue Connection
Write this as maintainer-facing patch mail, not as local Fixer notes. Cover four things explicitly in readable sentences: the user-visible symptom or the exact collected signal, the code-level cause or the cautious inference from evidence, the specific change you made, and the expected effect. Do not invent a reproducer, command line, crash, or user-visible failure that is not present in the evidence bundle. If the evidence is direct-but-not-reproduced, say it was observed by Fixer and not independently reproduced. If the evidence is indirect and you did not gather stronger evidence, do not leave a source diff; write a no-patch diagnosis/report instead. Include an explicit effect sentence such as `The expected effect is ...`, `This should reduce ...`, or `This prevents ...` for source patches. If the logic is non-obvious in code, mention that you added a short explanatory comment.

## Git Add Paths
List the repo-relative paths that belong in the final patch, one per line. Use `None` only when you intentionally made no source changes. Include intentionally new files, and do not list generated build artifacts.

## Validation
List the checks you ran, or say clearly that you could not run them. Include the independent reproduction command/test and result when `## Evidence Confidence` is `reproduced`; if reproduction was attempted but blocked, name the exact blocker and keep confidence at `observed` or `inferred`.

Before editing, read the plan at `./plan-output.txt` and follow it unless the code proves part of it wrong. If you change course, say so explicitly in the final write-up instead of silently drifting from the plan.

## Review Pass 1 (local metadata check)

Local metadata consistency check

## Refinement Pass 1

You are refining a fixer patch after an explicit code review.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. Read the latest author response at `./patch-output.txt`. Read the review report at `./review-1-output.txt`. This is refinement round 1. The original pre-edit snapshot is available at `./source` if you need to compare the current patch against it. Re-read the planning pass at `./plan-output.txt` before editing. The workspace currently changes these repo-relative paths: Lib/__pycache__/__future__.cpython-313.pyc, Lib/__pycache__/_collections_abc.cpython-313.pyc, Lib/__pycache__/_colorize.cpython-313.pyc, Lib/__pycache__/_compat_pickle.cpython-313.pyc, Lib/__pycache__/_compression.cpython-313.pyc, Lib/__pycache__/_opcode_metadata.cpython-313.pyc, Lib/__pycache__/_sitebuiltins.cpython-313.pyc, Lib/__pycache__/_weakrefset.cpython-313.pyc, Lib/__pycache__/abc.cpython-313.pyc, Lib/__pycache__/argparse.cpython-313.pyc, Lib/__pycache__/ast.cpython-313.pyc, Lib/__pycache__/bz2.cpython-313.pyc, Lib/__pycache__/codecs.cpython-313.pyc, Lib/__pycache__/contextlib.cpython-313.pyc, Lib/__pycache__/contextvars.cpython-313.pyc, Lib/__pycache__/copy.cpython-313.pyc, Lib/__pycache__/copyreg.cpython-313.pyc, Lib/__pycache__/datetime.cpython-313.pyc, Lib/__pycache__/dis.cpython-313.pyc, Lib/__pycache__/enum.cpython-313.pyc, Lib/__pycache__/fnmatch.cpython-313.pyc, Lib/__pycache__/functools.cpython-313.pyc, Lib/__pycache__/genericpath.cpython-313.pyc, Lib/__pycache__/gettext.cpython-313.pyc, Lib/__pycache__/glob.cpython-313.pyc, Lib/__pycache__/heapq.cpython-313.pyc, Lib/__pycache__/inspect.cpython-313.pyc, Lib/__pycache__/io.cpython-313.pyc, Lib/__pycache__/keyword.cpython-313.pyc, Lib/__pycache__/linecache.cpython-313.pyc, Lib/__pycache__/locale.cpython-313.pyc, Lib/__pycache__/lzma.cpython-313.pyc, Lib/__pycache__/numbers.cpython-313.pyc, Lib/__pycache__/opcode.cpython-313.pyc, Lib/__pycache__/operator.cpython-313.pyc, Lib/__pycache__/os.cpython-313.pyc, Lib/__pycache__/posixpath.cpython-313.pyc, Lib/__pycache__/reprlib.cpython-313.pyc, Lib/__pycache__/selectors.cpython-313.pyc, Lib/__pycache__/shutil.cpython-313.pyc, Lib/__pycache__/signal.cpython-313.pyc, Lib/__pycache__/site.cpython-313.pyc, Lib/__pycache__/socket.cpython-313.pyc, Lib/__pycache__/ssl.cpython-313.pyc, Lib/__pycache__/stat.cpython-313.pyc, Lib/__pycache__/string.cpython-313.pyc, Lib/__pycache__/struct.cpython-313.pyc, Lib/__pycache__/subprocess.cpython-313.pyc, Lib/__pycache__/textwrap.cpython-313.pyc, Lib/__pycache__/threading.cpython-313.pyc, Lib/__pycache__/token.cpython-313.pyc, Lib/__pycache__/tokenize.cpython-313.pyc, Lib/__pycache__/traceback.cpython-313.pyc, Lib/__pycache__/types.cpython-313.pyc, Lib/__pycache__/typing.cpython-313.pyc, Lib/__pycache__/warnings.cpython-313.pyc, Lib/__pycache__/weakref.cpython-313.pyc, Lib/asyncio/__pycache__/__init__.cpython-313.pyc, Lib/asyncio/__pycache__/base_events.cpython-313.pyc, Lib/asyncio/__pycache__/base_futures.cpython-313.pyc, Lib/asyncio/__pycache__/base_subprocess.cpython-313.pyc, Lib/asyncio/__pycache__/base_tasks.cpython-313.pyc, Lib/asyncio/__pycache__/constants.cpython-313.pyc, Lib/asyncio/__pycache__/coroutines.cpython-313.pyc, Lib/asyncio/__pycache__/events.cpython-313.pyc, Lib/asyncio/__pycache__/exceptions.cpython-313.pyc, Lib/asyncio/__pycache__/format_helpers.cpython-313.pyc, Lib/asyncio/__pycache__/futures.cpython-313.pyc, Lib/asyncio/__pycache__/locks.cpython-313.pyc, Lib/asyncio/__pycache__/log.cpython-313.pyc, Lib/asyncio/__pycache__/mixins.cpython-313.pyc, Lib/asyncio/__pycache__/protocols.cpython-313.pyc, Lib/asyncio/__pycache__/queues.cpython-313.pyc, Lib/asyncio/__pycache__/runners.cpython-313.pyc, Lib/asyncio/__pycache__/selector_events.cpython-313.pyc, Lib/asyncio/__pycache__/sslproto.cpython-313.pyc, Lib/asyncio/__pycache__/staggered.cpython-313.pyc, Lib/asyncio/__pycache__/streams.cpython-313.pyc, Lib/asyncio/__pycache__/subprocess.cpython-313.pyc, Lib/asyncio/__pycache__/taskgroups.cpython-313.pyc, Lib/asyncio/__pycache__/tasks.cpython-313.pyc, Lib/asyncio/__pycache__/threads.cpython-313.pyc, Lib/asyncio/__pycache__/timeouts.cpython-313.pyc, Lib/asyncio/__pycache__/transports.cpython-313.pyc, Lib/asyncio/__pycache__/trsock.cpython-313.pyc, Lib/asyncio/__pycache__/unix_events.cpython-313.pyc, Lib/collections/__pycache__/__init__.cpython-313.pyc, Lib/concurrent/__pycache__/__init__.cpython-313.pyc, Lib/concurrent/futures/__pycache__/__init__.cpython-313.pyc, Lib/concurrent/futures/__pycache__/_base.cpython-313.pyc, Lib/encodings/__pycache__/__init__.cpython-313.pyc, Lib/encodings/__pycache__/aliases.cpython-313.pyc, Lib/encodings/__pycache__/ascii.cpython-313.pyc, Lib/encodings/__pycache__/utf_8.cpython-313.pyc, Lib/importlib/__pycache__/__init__.cpython-313.pyc, Lib/importlib/__pycache__/_abc.cpython-313.pyc, Lib/logging/__pycache__/__init__.cpython-313.pyc, Lib/pathlib/__pycache__/__init__.cpython-313.pyc, Lib/pathlib/__pycache__/_abc.cpython-313.pyc, Lib/pathlib/__pycache__/_local.cpython-313.pyc, Lib/re/__pycache__/__init__.cpython-313.pyc, Lib/re/__pycache__/_casefix.cpython-313.pyc, Lib/re/__pycache__/_compiler.cpython-313.pyc, Lib/re/__pycache__/_constants.cpyth

[truncated 29270 bytes]

Response

## Plan Pass

## Problem
Fixer observed `/usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf` with repeated `wait4(-1, ..., WNOHANG) = -1 ECHILD` followed by `poll(..., 1000) = 0`. That pattern looks like the `supervisord` event loop checking for children once per second, not a tight CPython runtime loop. The process state was sleeping and `wchan` was `poll_schedule_timeout.constprop.0`; the unresolved `pthread_attr_destroy` frame is not enough to identify a CPython defect.

## Evidence Confidence
observed

## Proposed Subject
No CPython source patch in this pass. Treat this as an upstream-style no-patch diagnosis unless an independent reproduction shows CPython itself spinning or mishandling `waitpid`/`poll`.

## Patch Plan
1. Do not edit CPython based only on the profiler signal.
2. Document that the application entrypoint is `supervisord`, while CPython is only the interpreter process.
3. If later evidence proves a runtime bug, investigate `Modules/posixmodule.c` and `Modules/selectmodule.c`; relevant local conventions/helpers are `Py_BEGIN_ALLOW_THREADS` / `Py_END_ALLOW_THREADS`, `PyErr_CheckSignals()`, `posix_error()`, `wait_helper()`, and `_PyDeadline_*` timeout handling.
4. No prior Fixer patch is present in this workspace (`git status --short` is clean), so there is nothing to improve or replace.
5. No awkward control-flow change, including avoidable `goto`, should be introduced; current wait/poll wrappers are bounded direct syscall wrappers.

## Risks
A source patch here would likely be speculative and could alter stable `os.waitpid`, `select.poll`, or subprocess semantics without a demonstrated CPython bug. The evidence may be a supervisor configuration/workload issue, or a profiler misclassification of a sleeping once-per-second service loop as runaway CPU.

## Validation
Before reporting only a focused check after any future edit, try the project-level entrypoint from the workspace root: `./configure && make`. If it fails due to missing dependencies or generated files, record the exact failure and then run the narrowest relevant compile/test.

For the independent bounded check, try to reproduce the collected signal at the application entrypoint if available: `timeout 6s strace -f -tt -e poll,wait4,waitpid /usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf`. In this workspace `/usr/bin/supervisord` and the raw investigation files are unavailable, so do not claim reproduced unless that command can actually be run and shows the same behavior. A secondary CPython sanity check can confirm `os.waitpid(-1, os.WNOHANG)` raises `ChildProcessError`/`ECHILD` without a runtime loop.

## Patch Pass

Subject: No patch: diagnose supervisord poll trace

## Commit Message
No source change. The collected evidence points to a `supervisord` event loop running under CPython, not to a demonstrated CPython wait or poll bug. CPython’s local wait/poll wrappers already use the expected syscall conventions and signal-handling helpers.

## Evidence Confidence
inferred

## Issue Connection
Fixer collected a perf/strace `/proc` signal for `/usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf`: repeated `wait4(-1, ..., WNOHANG) = -1 ECHILD` followed by `poll(..., 1000) = 0`, with `/proc` showing the process sleeping in `poll_schedule_timeout.constprop.0`.

The cautious code-level inference is that this is `supervisord` waking once per second to check for child processes, not a tight CPython busy loop. The CPython wait wrappers in `Modules/posixmodule.c` use `Py_BEGIN_ALLOW_THREADS`, `Py_END_ALLOW_THREADS`, `PyErr_CheckSignals()`, `posix_error()`, and `wait_helper()`. The poll wrapper in `Modules/selectmodule.c` uses `_PyDeadline_*` timeout handling and signal retry logic. `Lib/subprocess.py` also protects waitpid calls with `_waitpid_lock`. No relevant local helper was missing.

I followed the saved plan and made no source change because the evidence is not pull-request-ready for a CPython runtime patch. The expected effect is to avoid an upstream patch that would change stable wait/poll semantics without a reproduced CPython defect.

## Git Add Paths
None

## Validation
`./configure && make` from the workspace root completed with exit code 0. The build reported optional module issues: `_dbm`, `_gdbm`, and `_tkinter` missing, and `_ssl` was built then removed because importing it failed with `undefined symbol: TLSv1_method`.

Independent reproduction attempt: `timeout 6s strace -f -tt -e poll,wait4,waitpid /usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf` did not reproduce; it was blocked by ptrace restrictions: `PTRACE_TRACEME: Operation not permitted` and `ptrace(PTRACE_SEIZE, 5): Operation not permitted`. `/usr/bin/supervisord` is also absent in this workspace.

Focused CPython sanity check: `./python` running `os.waitpid(-1, os.WNOHANG)` returned `ChildProcessError` errno `10` in about `0.000004s`, with no loop. `git diff --name-only` is empty; no tracked source files were changed.

## Review Pass 1 (local metadata check)

RESULT: fix-needed

## Findings
1. Patch metadata drift: the workspace currently changes `Lib/__pycache__/__future__.cpython-313.pyc`, `Lib/__pycache__/_collections_abc.cpython-313.pyc`, `Lib/__pycache__/_colorize.cpython-313.pyc`, `Lib/__pycache__/_compat_pickle.cpython-313.pyc`, `Lib/__pycache__/_compression.cpython-313.pyc`, `Lib/__pycache__/_opcode_metadata.cpython-313.pyc`, `Lib/__pycache__/_sitebuiltins.cpython-313.pyc`, `Lib/__pycache__/_weakrefset.cpython-313.pyc`, `Lib/__pycache__/abc.cpython-313.pyc`, `Lib/__pycache__/argparse.cpython-313.pyc`, `Lib/__pycache__/ast.cpython-313.pyc`, `Lib/__pycache__/bz2.cpython-313.pyc`, `Lib/__pycache__/codecs.cpython-313.pyc`, `Lib/__pycache__/contextlib.cpython-313.pyc`, `Lib/__pycache__/contextvars.cpython-313.pyc`, `Lib/__pycache__/copy.cpython-313.pyc`, `Lib/__pycache__/copyreg.cpython-313.pyc`, `Lib/__pycache__/datetime.cpython-313.pyc`, `Lib/__pycache__/dis.cpython-313.pyc`, `Lib/__pycache__/enum.cpython-313.pyc`, `Lib/__pycache__/fnmatch.cpython-313.pyc`, `Lib/__pycache__/functools.cpython-313.pyc`, `Lib/__pycache__/genericpath.cpython-313.pyc`, `Lib/__pycache__/gettext.cpython-313.pyc`, `Lib/__pycache__/glob.cpython-313.pyc`, `Lib/__pycache__/heapq.cpython-313.pyc`, `Lib/__pycache__/inspect.cpython-313.pyc`, `Lib/__pycache__/io.cpython-313.pyc`, `Lib/__pycache__/keyword.cpython-313.pyc`, `Lib/__pycache__/linecache.cpython-313.pyc`, `Lib/__pycache__/locale.cpython-313.pyc`, `Lib/__pycache__/lzma.cpython-313.pyc`, `Lib/__pycache__/numbers.cpython-313.pyc`, `Lib/__pycache__/opcode.cpython-313.pyc`, `Lib/__pycache__/operator.cpython-313.pyc`, `Lib/__pycache__/os.cpython-313.pyc`, `Lib/__pycache__/posixpath.cpython-313.pyc`, `Lib/__pycache__/reprlib.cpython-313.pyc`, `Lib/__pycache__/selectors.cpython-313.pyc`, `Lib/__pycache__/shutil.cpython-313.pyc`, `Lib/__pycache__/signal.cpython-313.pyc`, `Lib/__pycache__/site.cpython-313.pyc`, `Lib/__pycache__/socket.cpython-313.pyc`, `Lib/__pycache__/ssl.cpython-313.pyc`, `Lib/__pycache__/stat.cpython-313.pyc`, `Lib/__pycache__/string.cpython-313.pyc`, `Lib/__pycache__/struct.cpython-313.pyc`, `Lib/__pycache__/subprocess.cpython-313.pyc`, `Lib/__pycache__/textwrap.cpython-313.pyc`, `Lib/__pycache__/threading.cpython-313.pyc`, `Lib/__pycache__/token.cpython-313.pyc`, `Lib/__pycache__/tokenize.cpython-313.pyc`, `Lib/__pycache__/traceback.cpython-313.pyc`, `Lib/__pycache__/types.cpython-313.pyc`, `Lib/__pycache__/typing.cpython-313.pyc`, `Lib/__pycache__/warnings.cpython-313.pyc`, `Lib/__pycache__/weakref.cpython-313.pyc`, `Lib/asyncio/__pycache__/__init__.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_events.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_futures.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_subprocess.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_tasks.cpython-313.pyc`, `Lib/asyncio/__pycache__/constants.cpython-313.pyc`, `Lib/asyncio/__pycache__/coroutines.cpython-313.pyc`, `Lib/asyncio/__pycache__/events.cpython-313.pyc`, `Lib/asyncio/__pycache__/exceptions.cpython-313.pyc`, `Lib/asyncio/__pycache__/format_helpers.cpython-313.pyc`, `Lib/asyncio/__pycache__/futures.cpython-313.pyc`, `Lib/asyncio/__pycache__/locks.cpython-313.pyc`, `Lib/asyncio/__pycache__/log.cpython-313.pyc`, `Lib/asyncio/__pycache__/mixins.cpython-313.pyc`, `Lib/asyncio/__pycache__/protocols.cpython-313.pyc`, `Lib/asyncio/__pycache__/queues.cpython-313.pyc`, `Lib/asyncio/__pycache__/runners.cpython-313.pyc`, `Lib/asyncio/__pycache__/selector_events.cpython-313.pyc`, `Lib/asyncio/__pycache__/sslproto.cpython-313.pyc`, `Lib/asyncio/__pycache__/staggered.cpython-313.pyc`, `Lib/asyncio/__pycache__/streams.cpython-313.pyc`, `Lib/asyncio/__pycache__/subprocess.cpython-313.pyc`, `Lib/asyncio/__pycache__/taskgroups.cpython-313.pyc`, `Lib/asyncio/__pycache__/tasks.cpython-313.pyc`, `Lib/asyncio/__pycache__/threads.cpython-313.pyc`, `Lib/asyncio/__pycache__/timeouts.cpython-313.pyc`, `Lib/asyncio/__pycache__/transports.cpython-313.pyc`, `Lib/asyncio/__pycache__/trsock.cpython-313.pyc`, `Lib/asyncio/__pycache__/unix_events.cpython-313.pyc`, `Lib/collections/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/futures/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/futures/__pycache__/_base.cpython-313.pyc`, `Lib/encodings/__pycache__/__init__.cpython-313.pyc`, `Lib/encodings/__pycache__/aliases.cpython-313.pyc`, `Lib/encodings/__pycache__/ascii.cpython-313.pyc`, `Lib/encodings/__pycache__/utf_8.cpython-313.pyc`, `Lib/importlib/__pycache__/__init__.cpython-313.pyc`, `Lib/importlib/__pycache__/_abc.cpython-313.pyc`, `Lib/logging/__pycache__/__init__.cpython-313.pyc`, `Lib/pathlib/__pycache__/__init__.cpython-313.pyc`, `Lib/pathlib/__pycache__/_abc.cpython-313.pyc`, `Lib/pathlib/__pycache__/_local.cpython-313.pyc`, `Lib/re/__pycache__/__init__.cpython-313.pyc`, `Lib/re/__pycache__/_casefix.cpython-313.pyc`, `Lib/re/__pycache__/_compiler.cpython-313.pyc`, `Lib/re/__pycache__/_constants.cpython-313.pyc`, `Lib/re/__pycache__/_parser.cpython-313.pyc`, `Lib/sysconfig/__pycache__/__init__.cpython-313.pyc`, `Lib/sysconfig/__pycache__/__main__.cpython-313.pyc`, `Lib/xml/__pycache__/__init__.cpython-313.pyc`, `Lib/xml/etree/__pycache__/ElementPath.cpython-313.pyc`, `Lib/xml/etree/__pycache__/__init__.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/__init__.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/_common.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/_tzpath.cpython-313.pyc`, `Makefile`, `Makefile.pre`, `Misc/python-config.sh`, `Misc/python-embed.pc`, `Misc/python.pc`, `Modules/Setup.bootstrap`, `Modules/Setup.local`, `Modules/Setup.stdlib`, `Modules/_abc.o`, `Modules/_asyncio.cpython-313-x86_64-linux-gnu.so`, `Modules/_asynciomodule.o`, `Modules/_bisect.cpython-313-x86_64-linux-gnu.so`, `Modules/_bisectmodule.o`, `Modules/_blake2.cpython-313-x86_64-linux-gnu.so`, `Modules/_blake2/blake2b_impl.o`, `Modules/_blake2/blake2module.o`, `Modules/_blake2/blake2s_impl.o`, `Modules/_bz2.cpython-313-x86_64-linux-gnu.so`, `Modules/_bz2module.o`, `Modules/_codecs_cn.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_hk.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_iso2022.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_jp.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_kr.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_tw.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecsmodule.o`, `Modules/_collectionsmodule.o`, `Modules/_contextvars.cpython-313-x86_64-linux-gnu.so`, `Modules/_contextvarsmodule.o`, `Modules/_csv.cpython-313-x86_64-linux-gnu.so`, `Modules/_csv.o`, `Modules/_ctypes.cpython-313-x86_64-linux-gnu.so`, `Modules/_ctypes/_ctypes.o`, `Modules/_ctypes/_ctypes_test.o`, `Modules/_ctypes/callbacks.o`, `Modules/_ctypes/callproc.o`, `Modules/_ctypes/cfield.o`, `Modules/_ctypes/stgdict.o`, `Modules/_ctypes_test.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses_panel.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses_panel.o`, `Modules/_cursesmodule.o`, `Modules/_datetime.cpython-313-x86_64-linux-gnu.so`, `Modules/_datetimemodule.o`, `Modules/_decimal.cpython-313-x86_64-linux-gnu.so`, `Modules/_decimal/_decimal.o`, `Modules/_decimal/libmpdec/basearith.o`, `Modules/_decimal/libmpdec/constants.o`, `Modules/_decimal/libmpdec/context.o`, `Modules/_decimal/libmpdec/convolute.o`, `Modules/_decimal/libmpdec/crt.o`, `Modules/_decimal/libmpdec/difradix2.o`, `Modules/_decimal/libmpdec/fnt.o`, `Modules/_decimal/libmpdec/fourstep.o`, `Modules/_decimal/libmpdec/io.o`, `Modules/_decimal/libmpdec/libmpdec.a`, `Modules/_decimal/libmpdec/mpalloc.o`, `Modules/_decimal/libmpdec/mpdecimal.o`, `Modules/_decimal/libmpdec/numbertheory.o`, `Modules/_decimal/libmpdec/sixstep.o`, `Modules/_decimal/libmpdec/transpose.o`, `Modules/_elementtree.cpython-313-x86_64-linux-gnu.so`, `Modules/_elementtree.o`, `Modules/_functoolsmodule.o`, `Modules/_hacl/Hacl_Hash_MD5.o`, `Modules/_hacl/Hacl_Hash_SHA1.o`, `Modules/_hacl/Hacl_Hash_SHA2.o`, `Modules/_hacl/Hacl_Hash_SHA3.o`, `Modules/_hacl/libHacl_Hash_SHA2.a`, `Modules/_hashlib.cpython-313-x86_64-linux-gnu.so`, `Modules/_hashopenssl.o`, `Modules/_heapq.cpython-313-x86_64-linux-gnu.so`, `Modules/_heapqmodule.o`, `Modules/_interpchannels.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpchannelsmodule.o`, `Modules/_interpqueues.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpqueuesmodule.o`, `Modules/_interpreters.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpretersmodule.o`, `Modules/_io/_iomodule.o`, `Modules/_io/bufferedio.o`, `Modules/_io/bytesio.o`, `Modules/_io/fileio.o`, `Modules/_io/iobase.o`, `Modules/_io/stringio.o`, `Modules/_io/textio.o`, `Modules/_json.cpython-313-x86_64-linux-gnu.so`, `Modules/_json.o`, `Modules/_localemodule.o`, `Modules/_lsprof.cpython-313-x86_64-linux-gnu.so`, `Modules/_lsprof.o`, `Modules/_lzma.cpython-313-x86_64-linux-gnu.so`, `Modules/_lzmamodule.o`, `Modules/_md5.cpython-313-x86_64-linux-gnu.so`, `Modules/_multibytecodec.cpython-313-x86_64-linux-gnu.so`, `Modules/_multiprocessing.cpython-313-x86_64-linux-gnu.so`, `Modules/_multiprocessing/multiprocessing.o`, `Modules/_multiprocessing/posixshmem.o`, `Modules/_multiprocessing/semaphore.o`, `Modules/_opcode.cpython-313-x86_64-linux-gnu.so`, `Modules/_opcode.o`, `Modules/_operator.o`, `Modules/_pickle.cpython-313-x86_64-linux-gnu.so`, `Modules/_pickle.o`, `Modules/_posixshmem.cpython-313-x86_64-linux-gnu.so`, `Modules/_posixsubprocess.cpython-313-x86_64-linux-gnu.so`, `Modules/_posixsubprocess.o`, `Modules/_queue.cpython-313-x86_64-linux-gnu.so`, `Modules/_queuemodule.o`, `Modules/_random.cpython-313-x86_64-linux-gnu.so`, `Modules/_randommodule.o`, `Modules/_sha1.cpython-313-x86_64-linux-gnu.so`, `Modules/_sha2.cpython-313-x86_64-linux-gnu.so`, `Modules/_sha3.cpython-313-x86_64-linux-gnu.so`, `Modules/_socket.cpython-313-x86_64-linux-gnu.so`, `Modules/_sqlite/blob.o`, `Modules/_sqlite/connection.o`, `Modules/_sqlite/cursor.o`, `Modules/_sqlite/microprotocols.o`, `Modules/_sqlite/module.o`, `Modules/_sqlite/prepare_protocol.o`, `Modules/_sqlite/row.o`, `Modules/_sqlite/statement.o`, `Modules/_sqlite/util.o`, `Modules/_sqlite3.cpython-313-x86_64-linux-gnu.so`, `Modules/_sre/sre.o`, `Modules/_ssl.o`, `Modules/_ssl_failed.cpython-313-x86_64-linux-gnu.so`, `Modules/_stat.o`, `Modules/_statistics.cpython-313-x86_64-linux-gnu.so`, `Modules/_statisticsmodule.o`, `Modules/_struct.cpython-313-x86_64-linux-gnu.so`, `Modules/_struct.o`, `Modules/_suggestions.o`, `Modules/_sysconfig.o`, `Modules/_testbuffer.cpython-313-x86_64-linux-gnu.so`, `Modules/_testbuffer.o`, `Modules/_testcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testcapi/abstract.o`, `Modules/_testcapi/buffer.o`, `Modules/_testcapi/bytes.o`, `Modules/_testcapi/code.o`, `Modules/_testcapi/codec.o`, `Modules/_testcapi/complex.o`, `Modules/_testcapi/datetime.o`, `Modules/_testcapi/dict.o`, `Modules/_testcapi/docstring.o`, `Modules/_testcapi/exceptions.o`, `Modules/_testcapi/file.o`, `Modules/_testcapi/float.o`, `Modules/_testcapi/gc.o`, `Modules/_testcapi/getargs.o`, `Modules/_testcapi/hash.o`, `Modules/_testcapi/heaptype.o`, `Modules/_testcapi/immortal.o`, `Modules/_testcapi/list.o`, `Modules/_testcapi/long.o`, `Modules/_testcapi/mem.o`, `Modules/_testcapi/monitoring.o`, `Modules/_testcapi/numbers.o`, `Modules/_testcapi/object.o`, `Modules/_testcapi/pyatomic.o`, `Modules/_testcapi/run.o`, `Modules/_testcapi/set.o`, `Modules/_testcapi/structmember.o`, `Modules/_testcapi/time.o`, `Modules/_testcapi/tuple.o`, `Modules/_testcapi/unicode.o`, `Modules/_testcapi/vectorcall.o`, `Modules/_testcapi/watchers.o`, `Modules/_testcapimodule.o`, `Modules/_testclinic.cpython-313-x86_64-linux-gnu.so`, `Modules/_testclinic.o`, `Modules/_testclinic_limited.cpython-313-x86_64-linux-gnu.so`, `Modules/_testclinic_limited.o`, `Modules/_testexternalinspection.cpython-313-x86_64-linux-gnu.so`, `Modules/_testexternalinspection.o`, `Modules/_testimportmultiple.cpython-313-x86_64-linux-gnu.so`, `Modules/_testimportmultiple.o`, `Modules/_testinternalcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testinternalcapi.o`, `Modules/_testinternalcapi/pytime.o`, `Modules/_testinternalcapi/set.o`, `Modules/_testinternalcapi/test_critical_sections.o`, `Modules/_testinternalcapi/test_lock.o`, `Modules/_testlimitedcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testlimitedcapi.o`, `Modules/_testlimitedcapi/abstract.o`, `Modules/_testlimitedcapi/bytearray.o`, `Modules/_testlimitedcapi/bytes.o`, `Modules/_testlimitedcapi/complex.o`, `Modules/_testlimitedcapi/dict.o`, `Modules/_testlimitedcapi/eval.o`, `Modules/_testlimitedcapi/file.o`, `Modules/_testlimitedcapi/float.o`, `Modules/_testlimitedcapi/heaptype_relative.o`, `Modules/_testlimitedcapi/import.o`, `Modules/_testlimitedcapi/list.o`, `Modules/_testlimitedcapi/long.o`, `Modules/_testlimitedcapi/object.o`, `Modules/_testlimitedcapi/pyos.o`, `Modules/_testlimitedcapi/set.o`, `Modules/_testlimitedcapi/sys.o`, `Modules/_testlimitedcapi/tuple.o`, `Modules/_testlimitedcapi/unicode.o`, `Modules/_testlimitedcapi/vectorcall_limited.o`, `Modules/_testmultiphase.cpython-313-x86_64-linux-gnu.so`, `Modules/_testmultiphase.o`, `Modules/_testsinglephase.cpython-313-x86_64-linux-gnu.so`, `Modules/_testsinglephase.o`, `Modules/_threadmodule.o`, `Modules/_tracemalloc.o`, `Modules/_typingmodule.o`, `Modules/_uuid.cpython-313-x86_64-linux-gnu.so`, `Modules/_uuidmodule.o`, `Modules/_weakref.o`, `Modules/_xxtestfuzz.cpython-313-x86_64-linux-gnu.so`, `Modules/_xxtestfuzz/_xxtestfuzz.o`, `Modules/_xxtestfuzz/fuzzer.o`, `Modules/_zoneinfo.cpython-313-x86_64-linux-gnu.so`, `Modules/_zoneinfo.o`, `Modules/array.cpython-313-x86_64-linux-gnu.so`, `Modules/arraymodule.o`, `Modules/atexitmodule.o`, `Modules/binascii.cpython-313-x86_64-linux-gnu.so`, `Modules/binascii.o`, `Modules/cjkcodecs/_codecs_cn.o`, `Modules/cjkcodecs/_codecs_hk.o`, `Modules/cjkcodecs/_codecs_iso2022.o`, `Modules/cjkcodecs/_codecs_jp.o`, `Modules/cjkcodecs/_codecs_kr.o`, `Modules/cjkcodecs/_codecs_tw.o`, `Modules/cjkcodecs/multibytecodec.o`, `Modules/cmath.cpython-313-x86_64-linux-gnu.so`, `Modules/cmathmodule.o`, `Modules/config.c`, `Modules/config.o`, `Modules/errnomodule.o`, `Modules/expat/libexpat.a`, `Modules/expat/xmlparse.o`, `Modules/expat/xmlrole.o`, `Modules/expat/xmltok.o`, `Modules/faulthandler.o`, `Modules/fcntl.cpython-313-x86_64-linux-gnu.so`, `Modules/fcntlmodule.o`, `Modules/gcmodule.o`, `Modules/getbuildinfo.o`, `Modules/getpath.o`, `Modules/getpath_noop.o`, `Modules/grp.cpython-313-x86_64-linux-gnu.so`, `Modules/grpmodule.o`, `Modules/itertoolsmodule.o`, `Modules/ld_so_aix`, `Modules/main.o`, `Modules/math.cpython-313-x86_64-linux-gnu.so`, `Modules/mathmodule.o`, `Modules/md5module.o`, `Modules/mmap.cpython-313-x86_64-linux-gnu.so`, `Modules/mmapmodule.o`, `Modules/posixmodule.o`, `Modules/pwdmodule.o`, `Modules/pyexpat.cpython-313-x86_64-linux-gnu.so`, `Modules/pyexpat.o`, `Modules/readline.cpython-313-x86_64-linux-gnu.so`, `Modules/readline.o`, `Modules/resource.cpython-313-x86_64-linux-gnu.so`, `Modules/resource.o`, `Modules/rotatingtree.o`, `Modules/select.cpython-313-x86_64-linux-gnu.so`, `Modules/selectmodule.o`, `Modules/sha1module.o`, `Modules/sha2module.o`, `Modules/sha3module.o`, `Modules/signalmodule.o`, `Modules/socketmodule.o`, `Modules/symtablemodule.o`, `Modules/syslog.cpython-313-x86_64-linux-gnu.so`, `Modules/syslogmodule.o`, `Modules/termios.cpython-313-x86_64-linux-gnu.so`, `Modules/termios.o`, `Modules/timemodule.o`, `Modules/unicodedata.cpython-313-x86_64-linux-gnu.so`, `Modules/unicodedata.o`, `Modules/xxlimited.cpython-313-x86_64-linux-gnu.so`, `Modules/xxlimited.o`, `Modules/xxlimited_35.cpython-313-x86_64-linux-gnu.so`, `Modules/xxlimited_35.o`, `Modules/xxsubtype.cpython-313-x86_64-linux-gnu.so`, `Modules/xxsubtype.o`, `Modules/zlib.cpython-313-x86_64-linux-gnu.so`, `Modules/zlibmodule.o`, `Objects/abstract.o`, `Objects/boolobject.o`, `Objects/bytearrayobject.o`, `Objects/bytes_methods.o`, `Objects/bytesobject.o`, `Objects/call.o`, `Objects/capsule.o`, `Objects/cellobject.o`, `Objects/classobject.o`, `Objects/codeobject.o`, `Objects/complexobject.o`, `Objects/descrobject.o`, `Objects/dictobject.o`, `Objects/enumobject.o`, `Objects/exceptions.o`, `Objects/fileobject.o`, `Objects/floatobject.o`, `Objects/frameobject.o`, `Objects/funcobject.o`, `Objects/genericaliasobject.o`, `Objects/genobject.o`, `Objects/iterobject.o`, `Objects/listobject.o`, `Objects/longobject.o`, `Objects/memoryobject.o`, `Objects/methodobject.o`, `Objects/moduleobject.o`, `Objects/namespaceobject.o`, `Objects/object.o`, `Objects/obmalloc.o`, `Objects/odictobject.o`, `Objects/picklebufobject.o`, `Objects/rangeobject.o`, `Objects/setobject.o`, `Objects/sliceobject.o`, `Objects/structseq.o`, `Objects/tupleobject.o`, `Objects/typeobject.o`, `Objects/typevarobject.o`, `Objects/unicodectype.o`, `Objects/unicodeobject.o`, `Objects/unionobject.o`, `Objects/weakrefobject.o`, `Parser/action_helpers.o`, `Parser/lexer/buffer.o`, `Parser/lexer/lexer.o`, `Parser/lexer/state.o`, `Parser/myreadline.o`, `Parser/parser.o`, `Parser/peg_api.o`, `Parser/pegen.o`, `Parser/pegen_errors.o`, `Parser/string_parser.o`, `Parser/token.o`, `Parser/tokenizer/file_tokenizer.o`, `Parser/tokenizer/helpers.o`, `Parser/tokenizer/readline_tokenizer.o`, `Parser/tokenizer/string_tokenizer.o`, `Parser/tokenizer/utf8_tokenizer.o`, `Programs/_bootstrap_python.o`, `Programs/_freeze_module`, `Programs/_freeze_module.o`, `Programs/_testembed`, `Programs/_testembed.o`, `Programs/python.o`, `Python/Python-ast.o`, `Python/Python-tokenize.o`, `Python/_warnings.o`, `Python/asdl.o`, `Python/asm_trampoline.o`, `Python/assemble.o`, `Python/ast.o`, `Python/ast_opt.o`, `Python/ast_unparse.o`, `Python/bltinmodule.o`, `Python/bootstrap_hash.o`, `Python/brc.o`, `Python/ceval.o`, `Python/ceval_gil.o`, `Python/codecs.o`, `Python/compile.o`, `Python/context.o`, `Python/critical_section.o`, `Python/crossinterp.o`, `Python/dtoa.o`, `Python/dynamic_annotations.o`, `Python/dynload_shlib.o`, `Python/errors.o`, `Python/fileutils.o`, `Python/flowgraph.o`, `Python/formatter_unicode.o`, `Python/frame.o`, `Python/frozen.o`, `Python/frozen_modules/__hello__.h`, `Python/frozen_modules/__phello__.h`, `Python/frozen_modules/__phello__.ham.eggs.h`, `Python/frozen_modules/__phello__.ham.h`, `Python/frozen_modules/__phello__.spam.h`, `Python/frozen_modules/_collections_abc.h`, `Python/frozen_modules/_sitebuiltins.h`, `Python/frozen_modules/abc.h`, `Python/frozen_modules/codecs.h`, `Python/frozen_modules/frozen_only.h`, `Python/frozen_modules/genericpath.h`, `Python/frozen_modules/getpath.h`, `Python/frozen_modules/importlib._bootstrap.h`, `Python/frozen_modules/importlib._bootstrap_external.h`, `Python/frozen_modules/importlib.machinery.h`, `Python/frozen_modules/importlib.util.h`, `Python/frozen_modules/io.h`, `Python/frozen_modules/ntpath.h`, `Python/frozen_modules/os.h`, `Python/frozen_modules/posixpath.h`, `Python/frozen_modules/runpy.h`, `Python/frozen_modules/site.h`, `Python/frozen_modules/stat.h`, `Python/frozen_modules/zipimport.h`, `Python/frozenmain.o`, `Python/future.o`, `Python/gc.o`, `Python/gc_free_threading.o`, `Python/gc_gil.o`, `Python/getargs.o`, `Python/getcompiler.o`, `Python/getcopyright.o`, `Python/getopt.o`, `Python/getplatform.o`, `Python/getversion.o`, `Python/hamt.o`, `Python/hashtable.o`, `Python/import.o`, `Python/importdl.o`, `Python/initconfig.o`, `Python/instruction_sequence.o`, `Python/instrumentation.o`, `Python/interpconfig.o`, `Python/intrinsics.o`, `Python/jit.o`, `Python/legacy_tracing.o`, `Python/lock.o`, `Python/marshal.o`, `Python/modsupport.o`, `Python/mysnprintf.o`, `Python/mystrtoul.o`, `Python/object_stack.o`, `Python/optimizer.o`, `Python/optimizer_analysis.o`, `Python/optimizer_symbols.o`, `Python/parking_lot.o`, `Python/pathconfig.o`, `Python/perf_jit_trampoline.o`, `Python/perf_trampoline.o`, `Python/preconfig.o`, `Python/pyarena.o`, `Python/pyctype.o`, `Python/pyfpe.o`, `Python/pyhash.o`, `Python/pylifecycle.o`, `Python/pymath.o`, `Python/pystate.o`, `Python/pystrcmp.o`, `Python/pystrhex.o`, `Python/pystrtod.o`, `Python/pythonrun.o`, `Python/pytime.o`, `Python/qsbr.o`, `Python/specialize.o`, `Python/structmember.o`, `Python/suggestions.o`, `Python/symtable.o`, `Python/sysmodule.o`, `Python/thread.o`, `Python/traceback.o`, `Python/tracemalloc.o`, `_bootstrap_python`, `build/lib.linux-x86_64-3.13/__pycache__/_sysconfigdata__linux_x86_64-linux-gnu.cpython-313.pyc`, `build/lib.linux-x86_64-3.13/_asyncio.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_bisect.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_blake2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_bz2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_cn.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_hk.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_iso2022.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_jp.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_kr.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_tw.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_contextvars.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_csv.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_ctypes.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_ctypes_test.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_curses.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_curses_panel.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_datetime.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_decimal.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_elementtree.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_hashlib.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_heapq.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpchannels.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpqueues.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpreters.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_json.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_lsprof.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_lzma.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_md5.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_multibytecodec.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_multiprocessing.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_opcode.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_pickle.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_posixshmem.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_posixsubprocess.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_queue.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_random.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha1.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha3.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_socket.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sqlite3.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_statistics.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_struct.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sysconfigdata__linux_x86_64-linux-gnu.py`, `build/lib.linux-x86_64-3.13/_testbuffer.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testclinic.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testclinic_limited.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testexternalinspection.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testimportmultiple.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testinternalcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testlimitedcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testmultiphase.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testsinglephase.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_uuid.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_xxtestfuzz.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_zoneinfo.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/array.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/binascii.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/cmath.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/fcntl.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/grp.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/math.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/mmap.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/pyexpat.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/readline.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/resource.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/select.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/syslog.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/termios.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/unicodedata.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxlimited.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxlimited_35.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxsubtype.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/zlib.cpython-313-x86_64-linux-gnu.so`, `build/scripts-3.13/idle3.13`, `build/scripts-3.13/pydoc3.13`, `config.log`, `config.status`, `libpython3.13.a`, `platform`, `pybuilddir.txt`, `pyconfig.h`, `python`, `python-config`, `python-config.py`, `python-gdb.py`, but `## Git Add Paths` lists `None`. Update `## Git Add Paths` to match the real shipped file set exactly, and make sure `## Issue Connection` explains every functional file that remains in the patch.
2. Missing from `## Git Add Paths`: `Lib/__pycache__/__future__.cpython-313.pyc`, `Lib/__pycache__/_collections_abc.cpython-313.pyc`, `Lib/__pycache__/_colorize.cpython-313.pyc`, `Lib/__pycache__/_compat_pickle.cpython-313.pyc`, `Lib/__pycache__/_compression.cpython-313.pyc`, `Lib/__pycache__/_opcode_metadata.cpython-313.pyc`, `Lib/__pycache__/_sitebuiltins.cpython-313.pyc`, `Lib/__pycache__/_weakrefset.cpython-313.pyc`, `Lib/__pycache__/abc.cpython-313.pyc`, `Lib/__pycache__/argparse.cpython-313.pyc`, `Lib/__pycache__/ast.cpython-313.pyc`, `Lib/__pycache__/bz2.cpython-313.pyc`, `Lib/__pycache__/codecs.cpython-313.pyc`, `Lib/__pycache__/contextlib.cpython-313.pyc`, `Lib/__pycache__/contextvars.cpython-313.pyc`, `Lib/__pycache__/copy.cpython-313.pyc`, `Lib/__pycache__/copyreg.cpython-313.pyc`, `Lib/__pycache__/datetime.cpython-313.pyc`, `Lib/__pycache__/dis.cpython-313.pyc`, `Lib/__pycache__/enum.cpython-313.pyc`, `Lib/__pycache__/fnmatch.cpython-313.pyc`, `Lib/__pycache__/functools.cpython-313.pyc`, `Lib/__pycache__/genericpath.cpython-313.pyc`, `Lib/__pycache__/gettext.cpython-313.pyc`, `Lib/__pycache__/glob.cpython-313.pyc`, `Lib/__pycache__/heapq.cpython-313.pyc`, `Lib/__pycache__/inspect.cpython-313.pyc`, `Lib/__pycache__/io.cpython-313.pyc`, `Lib/__pycache__/keyword.cpython-313.pyc`, `Lib/__pycache__/linecache.cpython-313.pyc`, `Lib/__pycache__/locale.cpython-313.pyc`, `Lib/__pycache__/lzma.cpython-313.pyc`, `Lib/__pycache__/numbers.cpython-313.pyc`, `Lib/__pycache__/opcode.cpython-313.pyc`, `Lib/__pycache__/operator.cpython-313.pyc`, `Lib/__pycache__/os.cpython-313.pyc`, `Lib/__pycache__/posixpath.cpython-313.pyc`, `Lib/__pycache__/reprlib.cpython-313.pyc`, `Lib/__pycache__/selectors.cpython-313.pyc`, `Lib/__pycache__/shutil.cpython-313.pyc`, `Lib/__pycache__/signal.cpython-313.pyc`, `Lib/__pycache__/site.cpython-313.pyc`, `Lib/__pycache__/socket.cpython-313.pyc`, `Lib/__pycache__/ssl.cpython-313.pyc`, `Lib/__pycache__/stat.cpython-313.pyc`, `Lib/__pycache__/string.cpython-313.pyc`, `Lib/__pycache__/struct.cpython-313.pyc`, `Lib/__pycache__/subprocess.cpython-313.pyc`, `Lib/__pycache__/textwrap.cpython-313.pyc`, `Lib/__pycache__/threading.cpython-313.pyc`, `Lib/__pycache__/token.cpython-313.pyc`, `Lib/__pycache__/tokenize.cpython-313.pyc`, `Lib/__pycache__/traceback.cpython-313.pyc`, `Lib/__pycache__/types.cpython-313.pyc`, `Lib/__pycache__/typing.cpython-313.pyc`, `Lib/__pycache__/warnings.cpython-313.pyc`, `Lib/__pycache__/weakref.cpython-313.pyc`, `Lib/asyncio/__pycache__/__init__.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_events.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_futures.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_subprocess.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_tasks.cpython-313.pyc`, `Lib/asyncio/__pycache__/constants.cpython-313.pyc`, `Lib/asyncio/__pycache__/coroutines.cpython-313.pyc`, `Lib/asyncio/__pycache__/events.cpython-313.pyc`, `Lib/asyncio/__pycache__/exceptions.cpython-313.pyc`, `Lib/asyncio/__pycache__/format_helpers.cpython-313.pyc`, `Lib/asyncio/__pycache__/futures.cpython-313.pyc`, `Lib/asyncio/__pycache__/locks.cpython-313.pyc`, `Lib/asyncio/__pycache__/log.cpython-313.pyc`, `Lib/asyncio/__pycache__/mixins.cpython-313.pyc`, `Lib/asyncio/__pycache__/protocols.cpython-313.pyc`, `Lib/asyncio/__pycache__/queues.cpython-313.pyc`, `Lib/asyncio/__pycache__/runners.cpython-313.pyc`, `Lib/asyncio/__pycache__/selector_events.cpython-313.pyc`, `Lib/asyncio/__pycache__/sslproto.cpython-313.pyc`, `Lib/asyncio/__pycache__/staggered.cpython-313.pyc`, `Lib/asyncio/__pycache__/streams.cpython-313.pyc`, `Lib/asyncio/__pycache__/subprocess.cpython-313.pyc`, `Lib/asyncio/__pycache__/taskgroups.cpython-313.pyc`, `Lib/asyncio/__pycache__/tasks.cpython-313.pyc`, `Lib/asyncio/__pycache__/threads.cpython-313.pyc`, `Lib/asyncio/__pycache__/timeouts.cpython-313.pyc`, `Lib/asyncio/__pycache__/transports.cpython-313.pyc`, `Lib/asyncio/__pycache__/trsock.cpython-313.pyc`, `Lib/asyncio/__pycache__/unix_events.cpython-313.pyc`, `Lib/collections/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/futures/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/futures/__pycache__/_base.cpython-313.pyc`, `Lib/encodings/__pycache__/__init__.cpython-313.pyc`, `Lib/encodings/__pycache__/aliases.cpython-313.pyc`, `Lib/encodings/__pycache__/ascii.cpython-313.pyc`, `Lib/encodings/__pycache__/utf_8.cpython-313.pyc`, `Lib/importlib/__pycache__/__init__.cpython-313.pyc`, `Lib/importlib/__pycache__/_abc.cpython-313.pyc`, `Lib/logging/__pycache__/__init__.cpython-313.pyc`, `Lib/pathlib/__pycache__/__init__.cpython-313.pyc`, `Lib/pathlib/__pycache__/_abc.cpython-313.pyc`, `Lib/pathlib/__pycache__/_local.cpython-313.pyc`, `Lib/re/__pycache__/__init__.cpython-313.pyc`, `Lib/re/__pycache__/_casefix.cpython-313.pyc`, `Lib/re/__pycache__/_compiler.cpython-313.pyc`, `Lib/re/__pycache__/_constants.cpython-313.pyc`, `Lib/re/__pycache__/_parser.cpython-313.pyc`, `Lib/sysconfig/__pycache__/__init__.cpython-313.pyc`, `Lib/sysconfig/__pycache__/__main__.cpython-313.pyc`, `Lib/xml/__pycache__/__init__.cpython-313.pyc`, `Lib/xml/etree/__pycache__/ElementPath.cpython-313.pyc`, `Lib/xml/etree/__pycache__/__init__.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/__init__.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/_common.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/_tzpath.cpython-313.pyc`, `Makefile`, `Makefile.pre`, `Misc/python-config.sh`, `Misc/python-embed.pc`, `Misc/python.pc`, `Modules/Setup.bootstrap`, `Modules/Setup.local`, `Modules/Setup.stdlib`, `Modules/_abc.o`, `Modules/_asyncio.cpython-313-x86_64-linux-gnu.so`, `Modules/_asynciomodule.o`, `Modules/_bisect.cpython-313-x86_64-linux-gnu.so`, `Modules/_bisectmodule.o`, `Modules/_blake2.cpython-313-x86_64-linux-gnu.so`, `Modules/_blake2/blake2b_impl.o`, `Modules/_blake2/blake2module.o`, `Modules/_blake2/blake2s_impl.o`, `Modules/_bz2.cpython-313-x86_64-linux-gnu.so`, `Modules/_bz2module.o`, `Modules/_codecs_cn.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_hk.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_iso2022.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_jp.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_kr.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_tw.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecsmodule.o`, `Modules/_collectionsmodule.o`, `Modules/_contextvars.cpython-313-x86_64-linux-gnu.so`, `Modules/_contextvarsmodule.o`, `Modules/_csv.cpython-313-x86_64-linux-gnu.so`, `Modules/_csv.o`, `Modules/_ctypes.cpython-313-x86_64-linux-gnu.so`, `Modules/_ctypes/_ctypes.o`, `Modules/_ctypes/_ctypes_test.o`, `Modules/_ctypes/callbacks.o`, `Modules/_ctypes/callproc.o`, `Modules/_ctypes/cfield.o`, `Modules/_ctypes/stgdict.o`, `Modules/_ctypes_test.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses_panel.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses_panel.o`, `Modules/_cursesmodule.o`, `Modules/_datetime.cpython-313-x86_64-linux-gnu.so`, `Modules/_datetimemodule.o`, `Modules/_decimal.cpython-313-x86_64-linux-gnu.so`, `Modules/_decimal/_decimal.o`, `Modules/_decimal/libmpdec/basearith.o`, `Modules/_decimal/libmpdec/constants.o`, `Modules/_decimal/libmpdec/context.o`, `Modules/_decimal/libmpdec/convolute.o`, `Modules/_decimal/libmpdec/crt.o`, `Modules/_decimal/libmpdec/difradix2.o`, `Modules/_decimal/libmpdec/fnt.o`, `Modules/_decimal/libmpdec/fourstep.o`, `Modules/_decimal/libmpdec/io.o`, `Modules/_decimal/libmpdec/libmpdec.a`, `Modules/_decimal/libmpdec/mpalloc.o`, `Modules/_decimal/libmpdec/mpdecimal.o`, `Modules/_decimal/libmpdec/numbertheory.o`, `Modules/_decimal/libmpdec/sixstep.o`, `Modules/_decimal/libmpdec/transpose.o`, `Modules/_elementtree.cpython-313-x86_64-linux-gnu.so`, `Modules/_elementtree.o`, `Modules/_functoolsmodule.o`, `Modules/_hacl/Hacl_Hash_MD5.o`, `Modules/_hacl/Hacl_Hash_SHA1.o`, `Modules/_hacl/Hacl_Hash_SHA2.o`, `Modules/_hacl/Hacl_Hash_SHA3.o`, `Modules/_hacl/libHacl_Hash_SHA2.a`, `Modules/_hashlib.cpython-313-x86_64-linux-gnu.so`, `Modules/_hashopenssl.o`, `Modules/_heapq.cpython-313-x86_64-linux-gnu.so`, `Modules/_heapqmodule.o`, `Modules/_interpchannels.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpchannelsmodule.o`, `Modules/_interpqueues.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpqueuesmodule.o`, `Modules/_interpreters.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpretersmodule.o`, `Modules/_io/_iomodule.o`, `Modules/_io/bufferedio.o`, `Modules/_io/bytesio.o`, `Modules/_io/fileio.o`, `Modules/_io/iobase.o`, `Modules/_io/stringio.o`, `Modules/_io/textio.o`, `Modules/_json.cpython-313-x86_64-linux-gnu.so`, `Modules/_json.o`, `Modules/_localemodule.o`, `Modules/_lsprof.cpython-313-x86_64-linux-gnu.so`, `Modules/_lsprof.o`, `Modules/_lzma.cpython-313-x86_64-linux-gnu.so`, `Modules/_lzmamodule.o`, `Modules/_md5.cpython-313-x86_64-linux-gnu.so`, `Modules/_multibytecodec.cpython-313-x86_64-linux-gnu.so`, `Modules/_multiprocessing.cpython-313-x86_64-linux-gnu.so`, `Modules/_multiprocessing/multiprocessing.o`, `Modules/_multiprocessing/posixshmem.o`, `Modules/_multiprocessing/semaphore.o`, `Modules/_opcode.cpython-313-x86_64-linux-gnu.so`, `Modules/_opcode.o`, `Modules/_operator.o`, `Modules/_pickle.cpython-313-x86_64-linux-gnu.so`, `Modules/_pickle.o`, `Modules/_posixshmem.cpython-313-x86_64-linux-gnu.so`, `Modules/_posixsubprocess.cpython-313-x86_64-linux-gnu.so`, `Modules/_posixsubprocess.o`, `Modules/_queue.cpython-313-x86_64-linux-gnu.so`, `Modules/_queuemodule.o`, `Modules/_random.cpython-313-x86_64-linux-gnu.so`, `Modules/_randommodule.o`, `Modules/_sha1.cpython-313-x86_64-linux-gnu.so`, `Modules/_sha2.cpython-313-x86_64-linux-gnu.so`, `Modules/_sha3.cpython-313-x86_64-linux-gnu.so`, `Modules/_socket.cpython-313-x86_64-linux-gnu.so`, `Modules/_sqlite/blob.o`, `Modules/_sqlite/connection.o`, `Modules/_sqlite/cursor.o`, `Modules/_sqlite/microprotocols.o`, `Modules/_sqlite/module.o`, `Modules/_sqlite/prepare_protocol.o`, `Modules/_sqlite/row.o`, `Modules/_sqlite/statement.o`, `Modules/_sqlite/util.o`, `Modules/_sqlite3.cpython-313-x86_64-linux-gnu.so`, `Modules/_sre/sre.o`, `Modules/_ssl.o`, `Modules/_ssl_failed.cpython-313-x86_64-linux-gnu.so`, `Modules/_stat.o`, `Modules/_statistics.cpython-313-x86_64-linux-gnu.so`, `Modules/_statisticsmodule.o`, `Modules/_struct.cpython-313-x86_64-linux-gnu.so`, `Modules/_struct.o`, `Modules/_suggestions.o`, `Modules/_sysconfig.o`, `Modules/_testbuffer.cpython-313-x86_64-linux-gnu.so`, `Modules/_testbuffer.o`, `Modules/_testcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testcapi/abstract.o`, `Modules/_testcapi/buffer.o`, `Modules/_testcapi/bytes.o`, `Modules/_testcapi/code.o`, `Modules/_testcapi/codec.o`, `Modules/_testcapi/complex.o`, `Modules/_testcapi/datetime.o`, `Modules/_testcapi/dict.o`, `Modules/_testcapi/docstring.o`, `Modules/_testcapi/exceptions.o`, `Modules/_testcapi/file.o`, `Modules/_testcapi/float.o`, `Modules/_testcapi/gc.o`, `Modules/_testcapi/getargs.o`, `Modules/_testcapi/hash.o`, `Modules/_testcapi/heaptype.o`, `Modules/_testcapi/immortal.o`, `Modules/_testcapi/list.o`, `Modules/_testcapi/long.o`, `Modules/_testcapi/mem.o`, `Modules/_testcapi/monitoring.o`, `Modules/_testcapi/numbers.o`, `Modules/_testcapi/object.o`, `Modules/_testcapi/pyatomic.o`, `Modules/_testcapi/run.o`, `Modules/_testcapi/set.o`, `Modules/_testcapi/structmember.o`, `Modules/_testcapi/time.o`, `Modules/_testcapi/tuple.o`, `Modules/_testcapi/unicode.o`, `Modules/_testcapi/vectorcall.o`, `Modules/_testcapi/watchers.o`, `Modules/_testcapimodule.o`, `Modules/_testclinic.cpython-313-x86_64-linux-gnu.so`, `Modules/_testclinic.o`, `Modules/_testclinic_limited.cpython-313-x86_64-linux-gnu.so`, `Modules/_testclinic_limited.o`, `Modules/_testexternalinspection.cpython-313-x86_64-linux-gnu.so`, `Modules/_testexternalinspection.o`, `Modules/_testimportmultiple.cpython-313-x86_64-linux-gnu.so`, `Modules/_testimportmultiple.o`, `Modules/_testinternalcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testinternalcapi.o`, `Modules/_testinternalcapi/pytime.o`, `Modules/_testinternalcapi/set.o`, `Modules/_testinternalcapi/test_critical_sections.o`, `Modules/_testinternalcapi/test_lock.o`, `Modules/_testlimitedcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testlimitedcapi.o`, `Modules/_testlimitedcapi/abstract.o`, `Modules/_testlimitedcapi/bytearray.o`, `Modules/_testlimitedcapi/bytes.o`, `Modules/_testlimitedcapi/complex.o`, `Modules/_testlimitedcapi/dict.o`, `Modules/_testlimitedcapi/eval.o`, `Modules/_testlimitedcapi/file.o`, `Modules/_testlimitedcapi/float.o`, `Modules/_testlimitedcapi/heaptype_relative.o`, `Modules/_testlimitedcapi/import.o`, `Modules/_testlimitedcapi/list.o`, `Modules/_testlimitedcapi/long.o`, `Modules/_testlimitedcapi/object.o`, `Modules/_testlimitedcapi/pyos.o`, `Modules/_testlimitedcapi/set.o`, `Modules/_testlimitedcapi/sys.o`, `Modules/_testlimitedcapi/tuple.o`, `Modules/_testlimitedcapi/unicode.o`, `Modules/_testlimitedcapi/vectorcall_limited.o`, `Modules/_testmultiphase.cpython-313-x86_64-linux-gnu.so`, `Modules/_testmultiphase.o`, `Modules/_testsinglephase.cpython-313-x86_64-linux-gnu.so`, `Modules/_testsinglephase.o`, `Modules/_threadmodule.o`, `Modules/_tracemalloc.o`, `Modules/_typingmodule.o`, `Modules/_uuid.cpython-313-x86_64-linux-gnu.so`, `Modules/_uuidmodule.o`, `Modules/_weakref.o`, `Modules/_xxtestfuzz.cpython-313-x86_64-linux-gnu.so`, `Modules/_xxtestfuzz/_xxtestfuzz.o`, `Modules/_xxtestfuzz/fuzzer.o`, `Modules/_zoneinfo.cpython-313-x86_64-linux-gnu.so`, `Modules/_zoneinfo.o`, `Modules/array.cpython-313-x86_64-linux-gnu.so`, `Modules/arraymodule.o`, `Modules/atexitmodule.o`, `Modules/binascii.cpython-313-x86_64-linux-gnu.so`, `Modules/binascii.o`, `Modules/cjkcodecs/_codecs_cn.o`, `Modules/cjkcodecs/_codecs_hk.o`, `Modules/cjkcodecs/_codecs_iso2022.o`, `Modules/cjkcodecs/_codecs_jp.o`, `Modules/cjkcodecs/_codecs_kr.o`, `Modules/cjkcodecs/_codecs_tw.o`, `Modules/cjkcodecs/multibytecodec.o`, `Modules/cmath.cpython-313-x86_64-linux-gnu.so`, `Modules/cmathmodule.o`, `Modules/config.c`, `Modules/config.o`, `Modules/errnomodule.o`, `Modules/expat/libexpat.a`, `Modules/expat/xmlparse.o`, `Modules/expat/xmlrole.o`, `Modules/expat/xmltok.o`, `Modules/faulthandler.o`, `Modules/fcntl.cpython-313-x86_64-linux-gnu.so`, `Modules/fcntlmodule.o`, `Modules/gcmodule.o`, `Modules/getbuildinfo.o`, `Modules/getpath.o`, `Modules/getpath_noop.o`, `Modules/grp.cpython-313-x86_64-linux-gnu.so`, `Modules/grpmodule.o`, `Modules/itertoolsmodule.o`, `Modules/ld_so_aix`, `Modules/main.o`, `Modules/math.cpython-313-x86_64-linux-gnu.so`, `Modules/mathmodule.o`, `Modules/md5module.o`, `Modules/mmap.cpython-313-x86_64-linux-gnu.so`, `Modules/mmapmodule.o`, `Modules/posixmodule.o`, `Modules/pwdmodule.o`, `Modules/pyexpat.cpython-313-x86_64-linux-gnu.so`, `Modules/pyexpat.o`, `Modules/readline.cpython-313-x86_64-linux-gnu.so`, `Modules/readline.o`, `Modules/resource.cpython-313-x86_64-linux-gnu.so`, `Modules/resource.o`, `Modules/rotatingtree.o`, `Modules/select.cpython-313-x86_64-linux-gnu.so`, `Modules/selectmodule.o`, `Modules/sha1module.o`, `Modules/sha2module.o`, `Modules/sha3module.o`, `Modules/signalmodule.o`, `Modules/socketmodule.o`, `Modules/symtablemodule.o`, `Modules/syslog.cpython-313-x86_64-linux-gnu.so`, `Modules/syslogmodule.o`, `Modules/termios.cpython-313-x86_64-linux-gnu.so`, `Modules/termios.o`, `Modules/timemodule.o`, `Modules/unicodedata.cpython-313-x86_64-linux-gnu.so`, `Modules/unicodedata.o`, `Modules/xxlimited.cpython-313-x86_64-linux-gnu.so`, `Modules/xxlimited.o`, `Modules/xxlimited_35.cpython-313-x86_64-linux-gnu.so`, `Modules/xxlimited_35.o`, `Modules/xxsubtype.cpython-313-x86_64-linux-gnu.so`, `Modules/xxsubtype.o`, `Modules/zlib.cpython-313-x86_64-linux-gnu.so`, `Modules/zlibmodule.o`, `Objects/abstract.o`, `Objects/boolobject.o`, `Objects/bytearrayobject.o`, `Objects/bytes_methods.o`, `Objects/bytesobject.o`, `Objects/call.o`, `Objects/capsule.o`, `Objects/cellobject.o`, `Objects/classobject.o`, `Objects/codeobject.o`, `Objects/complexobject.o`, `Objects/descrobject.o`, `Objects/dictobject.o`, `Objects/enumobject.o`, `Objects/exceptions.o`, `Objects/fileobject.o`, `Objects/floatobject.o`, `Objects/frameobject.o`, `Objects/funcobject.o`, `Objects/genericaliasobject.o`, `Objects/genobject.o`, `Objects/iterobject.o`, `Objects/listobject.o`, `Objects/longobject.o`, `Objects/memoryobject.o`, `Objects/methodobject.o`, `Objects/moduleobject.o`, `Objects/namespaceobject.o`, `Objects/object.o`, `Objects/obmalloc.o`, `Objects/odictobject.o`, `Objects/picklebufobject.o`, `Objects/rangeobject.o`, `Objects/setobject.o`, `Objects/sliceobject.o`, `Objects/structseq.o`, `Objects/tupleobject.o`, `Objects/typeobject.o`, `Objects/typevarobject.o`, `Objects/unicodectype.o`, `Objects/unicodeobject.o`, `Objects/unionobject.o`, `Objects/weakrefobject.o`, `Parser/action_helpers.o`, `Parser/lexer/buffer.o`, `Parser/lexer/lexer.o`, `Parser/lexer/state.o`, `Parser/myreadline.o`, `Parser/parser.o`, `Parser/peg_api.o`, `Parser/pegen.o`, `Parser/pegen_errors.o`, `Parser/string_parser.o`, `Parser/token.o`, `Parser/tokenizer/file_tokenizer.o`, `Parser/tokenizer/helpers.o`, `Parser/tokenizer/readline_tokenizer.o`, `Parser/tokenizer/string_tokenizer.o`, `Parser/tokenizer/utf8_tokenizer.o`, `Programs/_bootstrap_python.o`, `Programs/_freeze_module`, `Programs/_freeze_module.o`, `Programs/_testembed`, `Programs/_testembed.o`, `Programs/python.o`, `Python/Python-ast.o`, `Python/Python-tokenize.o`, `Python/_warnings.o`, `Python/asdl.o`, `Python/asm_trampoline.o`, `Python/assemble.o`, `Python/ast.o`, `Python/ast_opt.o`, `Python/ast_unparse.o`, `Python/bltinmodule.o`, `Python/bootstrap_hash.o`, `Python/brc.o`, `Python/ceval.o`, `Python/ceval_gil.o`, `Python/codecs.o`, `Python/compile.o`, `Python/context.o`, `Python/critical_section.o`, `Python/crossinterp.o`, `Python/dtoa.o`, `Python/dynamic_annotations.o`, `Python/dynload_shlib.o`, `Python/errors.o`, `Python/fileutils.o`, `Python/flowgraph.o`, `Python/formatter_unicode.o`, `Python/frame.o`, `Python/frozen.o`, `Python/frozen_modules/__hello__.h`, `Python/frozen_modules/__phello__.h`, `Python/frozen_modules/__phello__.ham.eggs.h`, `Python/frozen_modules/__phello__.ham.h`, `Python/frozen_modules/__phello__.spam.h`, `Python/frozen_modules/_collections_abc.h`, `Python/frozen_modules/_sitebuiltins.h`, `Python/frozen_modules/abc.h`, `Python/frozen_modules/codecs.h`, `Python/frozen_modules/frozen_only.h`, `Python/frozen_modules/genericpath.h`, `Python/frozen_modules/getpath.h`, `Python/frozen_modules/importlib._bootstrap.h`, `Python/frozen_modules/importlib._bootstrap_external.h`, `Python/frozen_modules/importlib.machinery.h`, `Python/frozen_modules/importlib.util.h`, `Python/frozen_modules/io.h`, `Python/frozen_modules/ntpath.h`, `Python/frozen_modules/os.h`, `Python/frozen_modules/posixpath.h`, `Python/frozen_modules/runpy.h`, `Python/frozen_modules/site.h`, `Python/frozen_modules/stat.h`, `Python/frozen_modules/zipimport.h`, `Python/frozenmain.o`, `Python/future.o`, `Python/gc.o`, `Python/gc_free_threading.o`, `Python/gc_gil.o`, `Python/getargs.o`, `Python/getcompiler.o`, `Python/getcopyright.o`, `Python/getopt.o`, `Python/getplatform.o`, `Python/getversion.o`, `Python/hamt.o`, `Python/hashtable.o`, `Python/import.o`, `Python/importdl.o`, `Python/initconfig.o`, `Python/instruction_sequence.o`, `Python/instrumentation.o`, `Python/interpconfig.o`, `Python/intrinsics.o`, `Python/jit.o`, `Python/legacy_tracing.o`, `Python/lock.o`, `Python/marshal.o`, `Python/modsupport.o`, `Python/mysnprintf.o`, `Python/mystrtoul.o`, `Python/object_stack.o`, `Python/optimizer.o`, `Python/optimizer_analysis.o`, `Python/optimizer_symbols.o`, `Python/parking_lot.o`, `Python/pathconfig.o`, `Python/perf_jit_trampoline.o`, `Python/perf_trampoline.o`, `Python/preconfig.o`, `Python/pyarena.o`, `Python/pyctype.o`, `Python/pyfpe.o`, `Python/pyhash.o`, `Python/pylifecycle.o`, `Python/pymath.o`, `Python/pystate.o`, `Python/pystrcmp.o`, `Python/pystrhex.o`, `Python/pystrtod.o`, `Python/pythonrun.o`, `Python/pytime.o`, `Python/qsbr.o`, `Python/specialize.o`, `Python/structmember.o`, `Python/suggestions.o`, `Python/symtable.o`, `Python/sysmodule.o`, `Python/thread.o`, `Python/traceback.o`, `Python/tracemalloc.o`, `_bootstrap_python`, `build/lib.linux-x86_64-3.13/__pycache__/_sysconfigdata__linux_x86_64-linux-gnu.cpython-313.pyc`, `build/lib.linux-x86_64-3.13/_asyncio.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_bisect.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_blake2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_bz2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_cn.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_hk.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_iso2022.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_jp.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_kr.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_tw.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_contextvars.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_csv.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_ctypes.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_ctypes_test.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_curses.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_curses_panel.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_datetime.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_decimal.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_elementtree.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_hashlib.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_heapq.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpchannels.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpqueues.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpreters.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_json.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_lsprof.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_lzma.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_md5.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_multibytecodec.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_multiprocessing.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_opcode.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_pickle.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_posixshmem.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_posixsubprocess.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_queue.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_random.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha1.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha3.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_socket.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sqlite3.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_statistics.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_struct.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sysconfigdata__linux_x86_64-linux-gnu.py`, `build/lib.linux-x86_64-3.13/_testbuffer.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testclinic.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testclinic_limited.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testexternalinspection.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testimportmultiple.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testinternalcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testlimitedcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testmultiphase.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testsinglephase.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_uuid.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_xxtestfuzz.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_zoneinfo.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/array.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/binascii.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/cmath.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/fcntl.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/grp.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/math.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/mmap.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/pyexpat.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/readline.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/resource.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/select.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/syslog.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/termios.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/unicodedata.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxlimited.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxlimited_35.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxsubtype.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/zlib.cpython-313-x86_64-linux-gnu.so`, `build/scripts-3.13/idle3.13`, `build/scripts-3.13/pydoc3.13`, `config.log`, `config.status`, `libpython3.13.a`, `platform`, `pybuilddir.txt`, `pyconfig.h`, `python`, `python-config`, `python-config.py`, `python-gdb.py`.
2. Listed in `## Git Add Paths` but not actually changed: `None`.

## Refinement Pass 1

Subject: No patch: keep supervisord diagnosis clean

## Commit Message
No source change. The review found that the previous validation run left generated build and bytecode artifacts in the workspace. I removed those artifacts so the no-patch diagnosis is represented by an empty source diff.

## Evidence Confidence
inferred

## Issue Connection
Fixer collected a perf/strace `/proc` signal for `/usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf`: repeated `wait4(-1, ..., WNOHANG) = -1 ECHILD` followed by `poll(..., 1000) = 0`, while `/proc` showed the process sleeping in `poll_schedule_timeout.constprop.0`.

The cautious inference is unchanged: this looks like `supervisord` waking once per second to check child processes, not a demonstrated CPython runtime defect. I rechecked the local conventions in the relevant CPython wrappers: `Modules/posixmodule.c` uses `Py_BEGIN_ALLOW_THREADS`, `Py_END_ALLOW_THREADS`, `PyErr_CheckSignals()`, `posix_error()`, and `wait_helper()`, while `Modules/selectmodule.c` uses `_PyDeadline_*` timeout handling. I also checked project guidance; `README.rst` points contributors to the CPython Developer Guide, and no repo-root `CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, or `dev-docs/` guidance was present.

The specific refinement change was cleanup only: I removed the generated build outputs and `__pycache__` files left by validation, addressing the review’s metadata-drift finding. The expected effect is that the final proposal remains a no-patch diagnosis with no generated artifacts or source files staged for an upstream CPython patch.

## Git Add Paths
None

## Validation
Review finding addressed with `make distclean`, then verified cleanup with `git status --short` and `git diff --name-status`; both produced no output.

I did not rerun `./configure && make` after cleanup because no source files changed in this refinement and rerunning it would recreate the generated artifacts the review asked to remove. The prior project-level validation in this workspace was `./configure && make`, which completed with exit code 0 but reported optional module issues: `_dbm`, `_gdbm`, and `_tkinter` missing, and `_ssl` removed after import failed with `undefined symbol: TLSv1_method`.

The prior bounded reproduction attempt, `timeout 6s strace -f -tt -e poll,wait4,waitpid /usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf`, did not reproduce because ptrace was blocked with `Operation not permitted`; `/usr/bin/supervisord` was also absent in this workspace.

## Review Pass 2

RESULT: ok

Workspace is clean after refinement: `git status --short`, `git diff --stat`, and `git diff --name-status` produce no output. The response now matches `## Git Add Paths: None`.

The no-patch diagnosis is appropriate for the evidence level. The author does not leave a speculative CPython source diff from indirect profiler/strace evidence, keeps `## Evidence Confidence` valid as `inferred`, and explains the likely `supervisord` event-loop interpretation without inventing a reproducer.

Validation is acceptable for a no-source-change cleanup refinement: the earlier project-level `./configure && make` result is reported, the ptrace blocker for the bounded reproduction attempt is named, and the cleanup itself was verified without regenerating build artifacts.

Technical snapshot

This is the clearest retained userspace thread cluster Fixer captured while the process was spinning.

Representative thread backtrace

  • Command: /usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf
  • Why Fixer classified it this way: The trace repeatedly returns to a poll-family syscall without meaningful blocking, which suggests a busy event-loop wakeup.
  • Thread summary: thread backtraces show 1 thread(s) around 0x00007f1c6e7efe92 in pthread_attr_destroy () from target:<path>
  • Contention signals: gdb-stderr: gdb: warning: Couldn't determine a path for the index cache directory.
  • Repeated loop: poll -> wait4 -> poll
  • Top syscalls: poll x5, wait4 x5, restart_syscall x1
  • Package: python3.13-minimal 3.13.12-1
  • Kernel: 6.17.10+deb14-amd64
  • Distribution: debian
0x00007f1c6e7efe92 in pthread_attr_destroy () from target:<path>
0x0000000000ba1ffc in ?? ()
0x000000001257d562 in ?? ()
0x0000000000a56c88 in _PyRuntime ()
0x00007f1c6e7efead in ?? () from target:<path>
0x0000000000000007 in ?? ()
0x000000000054aeb0 in PyMem_Realloc ()
0x000000000067ca5b in ?? ()

Possible duplicates

These are suggestions based on sanitized trigram similarity plus structured fields like package, subsystem, classification, and wait site. They are not auto-merged.

python3.13 is stuck in a likely busy poll loop: 20.18% of sampled CPU passed through unresolved offset, with repeated thread backtraces show 2 thread(s) around 0x00007fa97251bffe in ?? () from target:<path> and 1 thread(s) around 0x00007fa970081594 in ?? () from target:<path>.

highpackage: python3.13-minimalsource: python3.13score: 106reports: 2successful triagesimilarity: 99%

Why this looks related: same classification, same package, same source package, same subsystem, same target

Last seen: 2026-05-19 03:16 UTC. Public page: /issues/019dd98b-0e1d-76e3-9171-f0f72c689536. Public JSON: /v1/issues/019dd98b-0e1d-76e3-9171-f0f72c689536

python3.13 is stuck in a likely busy poll loop: 40.65% of sampled CPU passed through idle_cpu, with repeated thread backtraces show 1 thread(s) around 0x00007f1c6e7efe92 in pthread_attr_destroy () from target:<path>.

highpackage: python3.13-minimalsource: python3.13score: 106reports: 2similarity: 99%

Why this looks related: same classification, same package, same source package, same subsystem, same target, same wait site, very similar public summary

Last seen: 2026-05-19 02:35 UTC. Public page: /issues/019dfead-0293-7062-b24e-c9b04c2f1edb. Public JSON: /v1/issues/019dfead-0293-7062-b24e-c9b04c2f1edb

python3.13 is stuck in a likely busy poll loop: 50.00% of sampled CPU passed through read_tsc, with repeated thread backtraces show 1 thread(s) around 0x00007f1c6e7efe92 in pthread_attr_destroy () from target:<path>.

highpackage: python3.13-minimalsource: python3.13score: 106reports: 2similarity: 99%

Why this looks related: same classification, same package, same source package, same subsystem, same target, same wait site, very similar public summary

Last seen: 2026-05-19 01:01 UTC. Public page: /issues/019da8df-cd0c-7880-ab1e-6dd908d64437. Public JSON: /v1/issues/019da8df-cd0c-7880-ab1e-6dd908d64437

python3.13 is stuck in a likely busy poll loop: 100.00% of sampled CPU passed through PyObject_GC_Del, with repeated thread backtraces show 1 thread(s) around 0x00007f1c6e7efe92 in pthread_attr_destroy () from target:<path>.

highpackage: python3.13-minimalsource: python3.13score: 106reports: 2patch attempt readysimilarity: 99%

Why this looks related: same classification, same package, same source package, same subsystem, same target, same wait site, very similar public summary

Last seen: 2026-05-15 03:34 UTC. Public page: /issues/019dd1e0-1f56-7862-9fd2-d20d576df8c4. Public JSON: /v1/issues/019dd1e0-1f56-7862-9fd2-d20d576df8c4

python3.13 is stuck in a likely busy poll loop: 100.00% of sampled CPU passed through PyUnicode_FromWideChar, with repeated thread backtraces show 1 thread(s) around 0x00007f1c6e7efe92 in pthread_attr_destroy () from target:<path>.

highpackage: python3.13-minimalsource: python3.13score: 106reports: 2patch attempt readysimilarity: 99%

Why this looks related: same classification, same package, same source package, same subsystem, same target, same wait site, very similar public summary

Last seen: 2026-05-13 02:59 UTC. Public page: /issues/019e176a-65b7-7d92-a20c-8c276f7ca31a. Public JSON: /v1/issues/019e176a-65b7-7d92-a20c-8c276f7ca31a

perl is stuck in a likely busy poll loop: 100.00% of sampled CPU passed through unresolved offset, with repeated thread backtraces show 1 thread(s) around 0x00007f25577e97d2 in ?? () from target:<path>.

highpackage: perl-basesource: perlscore: 106reports: 2successful triagesimilarity: 97%

Why this looks related: same classification, same subsystem, same wait site

Last seen: 2026-05-16 03:22 UTC. Public page: /issues/019dc07f-d19d-7cd0-8771-a7f51e5fec2b. Public JSON: /v1/issues/019dc07f-d19d-7cd0-8771-a7f51e5fec2b

Worker outcome summary

This issue has 232 recorded worker attempts. Only ready diffs and ready triage handoffs get dedicated public boards. Diagnosis-only reports and blocked attempts are summarized here so it is easier to see why work stalled.

227 diagnosis-only reports
5 failed patch attempts

No ready patch attempts, ready triage handoffs, explained impossible attempts, or other attempt states.

Most common blockers

  • review (3 attempts)
  • execution (2 attempts)

Showing the 25 most recent attempts below and summarizing 207 older attempts here. Show all published attempts for this issue.

Published attempts

diagnosis-only report

report

python3.13 likely remains stuck in a busy-poll loop. A diagnosis report and patch proposal were created locally.

state: readycreated: 2026-05-19 01:42 UTCvalidation: ready
Published session

Prompt

## Plan Pass

You are planning a fixer patch before any edits happen.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. The original pre-edit snapshot is available at `./source` if you need to inspect it. For interpreter processes, plan from the script/application entrypoint evidence first and include the runtime only as a second investigation target unless the evidence proves a runtime bug.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround. Inspect the relevant code, nearby callers, project contribution docs, and local helper/compat APIs, but do not edit files in this pass.

Return a short markdown plan with these exact sections:

## Problem
## Evidence Confidence
## Proposed Subject
## Patch Plan
## Risks
## Validation

Classify `## Evidence Confidence` as exactly one of `reproduced`, `observed`, or `inferred`. Use `inferred` only for a no-patch diagnosis/report plan unless you can name the extra evidence you will collect before editing; inferred source patches are blocked by Fixer because they are not pull-request-ready. For `observed` source-patch plans, plan to say in the final `## Issue Connection` that the failure was observed by Fixer and not independently reproduced. If the plan touches authentication, authorization, credentials, cryptography, sandboxing, permissions, or timing/throttling behavior, treat it as security-sensitive: do not plan a source patch unless validation can reproduce the behavior and analyze the security impact; otherwise plan a no-patch diagnosis/report. The plan must explain how the proposed code change addresses the observed issue evidence, call out any prior Fixer patch that should be improved or replaced, reject awkward control flow such as avoidable `goto` if there is a cleaner bounded alternative, name any local helper APIs or maintainer conventions the patch should follow, and keep the intended maintainer-facing explanation clear enough that someone unfamiliar with the local complaint wording can still follow the fix. In `## Validation`, name the reproducible configure/build/test entrypoint you will try from the workspace root before any focused leaf compile or smoke check, and include one bounded independent reproduction attempt for the collected failure signal when it is safe and cheap. Do not plan to claim `reproduced` unless that reproduction command or test can actually show the failure.

## Patch Pass

You are working on a bounded fixer proposal.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. Produce the smallest reasonable patch for the target repository, keep the change upstreamable, prefer the clearest control flow available, and do not keep avoidable `goto` when a simpler structure would read better. Before introducing new file, process, allocation, locking, networking, or platform APIs, inspect nearby code and project contribution docs for existing helpers or compatibility wrappers and use those local patterns unless you can explain why they do not fit. Validate from a reproducible workspace-root entrypoint before falling back to focused leaf commands; if a build or test cannot run, report the exact command, the exact blocker, and any narrower check you ran instead. During validation, also try one bounded independent reproduction of the collected failure signal when it is safe and cheap, such as a failing test, smoke command, perf/strace comparison, or before/after runtime check. Only use `reproduced` if that command or test actually reproduced the failure; otherwise keep `observed` and report the reproduction blocker. The final explanation must connect the observed issue evidence to the actual code change, not just paraphrase the diff. Write like a maintainer is going to read the patch mail cold: explain the bug in plain language, define subsystem-specific jargon the first time you need it, and make the causal story obvious. Explicitly classify evidence confidence as `reproduced`, `observed`, or `inferred`: `reproduced` means you reproduced the failure locally; `observed` means Fixer has direct crash/log/trace evidence but you did not independently reproduce it; `inferred` means the source patch is not pull-request-ready, so do not leave a source diff unless you first gather stronger observed/reproduced evidence; otherwise return a no-patch diagnosis/report. For any source-changing `observed` patch, say explicitly in `## Issue Connection` that the failure was observed by Fixer and not independently reproduced. Security-sensitive areas such as authentication, authorization, credentials, cryptography, sandboxing, permissions, and timing/throttling behavior need reproduced evidence plus explicit security-impact analysis before leaving a source diff; otherwise return a no-patch diagnosis/report for human review. If you introduce non-obvious state translation, index remapping, or backend split logic, add a short source comment that explains the invariant being preserved.

Start by explaining the likely root cause from the collected perf, strace, and /proc evidence. If you cannot land a safe patch, leave a diagnosis that is strong enough for an upstream bug report.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround. 

Keep the change narrowly scoped and summarize validation clearly.

In every authoring pass, your final response must start with `Subject: <single-line git commit subject>` and then include these markdown sections exactly:

## Commit Message
A short upstream-friendly explanation of what changed and why. Write it in plain language that a maintainer can follow without local complaint context. If you use subsystem jargon, define it immediately.

## Evidence Confidence
Exactly one word: `reproduced`, `observed`, or `inferred`. Use `reproduced` only when you reproduced the failure locally with a command or test, and include that command/test in `## Validation`. Use `observed` when Fixer has direct crash/log/trace evidence but you did not independently reproduce it. If `## Git Add Paths` lists source files for an `observed` patch, `## Issue Connection` must explicitly say the failure was observed by Fixer and not independently reproduced. Security-sensitive source changes touching authentication, authorization, credentials, cryptography, sandboxing, permissions, or timing/throttling behavior require reproduced evidence and explicit security-impact analysis; otherwise list `None` under `## Git Add Paths` and write a no-patch diagnosis/report. Use `inferred` for profiler/strace/indirect evidence; inferred responses may be no-patch diagnoses or reports, but inferred source patches are not pull-request-ready until stronger evidence is gathered.

## Issue Connection
Write this as maintainer-facing patch mail, not as local Fixer notes. Cover four things explicitly in readable sentences: the user-visible symptom or the exact collected signal, the code-level cause or the cautious inference from evidence, the specific change you made, and the expected effect. Do not invent a reproducer, command line, crash, or user-visible failure that is not present in the evidence bundle. If the evidence is direct-but-not-reproduced, say it was observed by Fixer and not independently reproduced. If the evidence is indirect and you did not gather stronger evidence, do not leave a source diff; write a no-patch diagnosis/report instead. Include an explicit effect sentence such as `The expected effect is ...`, `This should reduce ...`, or `This prevents ...` for source patches. If the logic is non-obvious in code, mention that you added a short explanatory comment.

## Git Add Paths
List the repo-relative paths that belong in the final patch, one per line. Use `None` only when you intentionally made no source changes. Include intentionally new files, and do not list generated build artifacts.

## Validation
List the checks you ran, or say clearly that you could not run them. Include the independent reproduction command/test and result when `## Evidence Confidence` is `reproduced`; if reproduction was attempted but blocked, name the exact blocker and keep confidence at `observed` or `inferred`.

Before editing, read the plan at `./plan-output.txt` and follow it unless the code proves part of it wrong. If you change course, say so explicitly in the final write-up instead of silently drifting from the plan.

## Review Pass 1 (local metadata check)

Local metadata consistency check

## Refinement Pass 1

You are refining a fixer patch after an explicit code review.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. Read the latest author response at `./patch-output.txt`. Read the review report at `./review-1-output.txt`. This is refinement round 1. The original pre-edit snapshot is available at `./source` if you need to compare the current patch against it. Re-read the planning pass at `./plan-output.txt` before editing. The workspace currently changes these repo-relative paths: Lib/__pycache__/__future__.cpython-313.pyc, Lib/__pycache__/_collections_abc.cpython-313.pyc, Lib/__pycache__/_colorize.cpython-313.pyc, Lib/__pycache__/_compat_pickle.cpython-313.pyc, Lib/__pycache__/_compression.cpython-313.pyc, Lib/__pycache__/_opcode_metadata.cpython-313.pyc, Lib/__pycache__/_sitebuiltins.cpython-313.pyc, Lib/__pycache__/_weakrefset.cpython-313.pyc, Lib/__pycache__/abc.cpython-313.pyc, Lib/__pycache__/argparse.cpython-313.pyc, Lib/__pycache__/ast.cpython-313.pyc, Lib/__pycache__/bz2.cpython-313.pyc, Lib/__pycache__/codecs.cpython-313.pyc, Lib/__pycache__/contextlib.cpython-313.pyc, Lib/__pycache__/contextvars.cpython-313.pyc, Lib/__pycache__/copy.cpython-313.pyc, Lib/__pycache__/copyreg.cpython-313.pyc, Lib/__pycache__/datetime.cpython-313.pyc, Lib/__pycache__/dis.cpython-313.pyc, Lib/__pycache__/enum.cpython-313.pyc, Lib/__pycache__/fnmatch.cpython-313.pyc, Lib/__pycache__/functools.cpython-313.pyc, Lib/__pycache__/genericpath.cpython-313.pyc, Lib/__pycache__/gettext.cpython-313.pyc, Lib/__pycache__/glob.cpython-313.pyc, Lib/__pycache__/heapq.cpython-313.pyc, Lib/__pycache__/inspect.cpython-313.pyc, Lib/__pycache__/io.cpython-313.pyc, Lib/__pycache__/keyword.cpython-313.pyc, Lib/__pycache__/linecache.cpython-313.pyc, Lib/__pycache__/locale.cpython-313.pyc, Lib/__pycache__/lzma.cpython-313.pyc, Lib/__pycache__/numbers.cpython-313.pyc, Lib/__pycache__/opcode.cpython-313.pyc, Lib/__pycache__/operator.cpython-313.pyc, Lib/__pycache__/os.cpython-313.pyc, Lib/__pycache__/posixpath.cpython-313.pyc, Lib/__pycache__/reprlib.cpython-313.pyc, Lib/__pycache__/selectors.cpython-313.pyc, Lib/__pycache__/shutil.cpython-313.pyc, Lib/__pycache__/signal.cpython-313.pyc, Lib/__pycache__/site.cpython-313.pyc, Lib/__pycache__/socket.cpython-313.pyc, Lib/__pycache__/ssl.cpython-313.pyc, Lib/__pycache__/stat.cpython-313.pyc, Lib/__pycache__/string.cpython-313.pyc, Lib/__pycache__/struct.cpython-313.pyc, Lib/__pycache__/subprocess.cpython-313.pyc, Lib/__pycache__/textwrap.cpython-313.pyc, Lib/__pycache__/threading.cpython-313.pyc, Lib/__pycache__/token.cpython-313.pyc, Lib/__pycache__/tokenize.cpython-313.pyc, Lib/__pycache__/traceback.cpython-313.pyc, Lib/__pycache__/types.cpython-313.pyc, Lib/__pycache__/typing.cpython-313.pyc, Lib/__pycache__/warnings.cpython-313.pyc, Lib/__pycache__/weakref.cpython-313.pyc, Lib/asyncio/__pycache__/__init__.cpython-313.pyc, Lib/asyncio/__pycache__/base_events.cpython-313.pyc, Lib/asyncio/__pycache__/base_futures.cpython-313.pyc, Lib/asyncio/__pycache__/base_subprocess.cpython-313.pyc, Lib/asyncio/__pycache__/base_tasks.cpython-313.pyc, Lib/asyncio/__pycache__/constants.cpython-313.pyc, Lib/asyncio/__pycache__/coroutines.cpython-313.pyc, Lib/asyncio/__pycache__/events.cpython-313.pyc, Lib/asyncio/__pycache__/exceptions.cpython-313.pyc, Lib/asyncio/__pycache__/format_helpers.cpython-313.pyc, Lib/asyncio/__pycache__/futures.cpython-313.pyc, Lib/asyncio/__pycache__/locks.cpython-313.pyc, Lib/asyncio/__pycache__/log.cpython-313.pyc, Lib/asyncio/__pycache__/mixins.cpython-313.pyc, Lib/asyncio/__pycache__/protocols.cpython-313.pyc, Lib/asyncio/__pycache__/queues.cpython-313.pyc, Lib/asyncio/__pycache__/runners.cpython-313.pyc, Lib/asyncio/__pycache__/selector_events.cpython-313.pyc, Lib/asyncio/__pycache__/sslproto.cpython-313.pyc, Lib/asyncio/__pycache__/staggered.cpython-313.pyc, Lib/asyncio/__pycache__/streams.cpython-313.pyc, Lib/asyncio/__pycache__/subprocess.cpython-313.pyc, Lib/asyncio/__pycache__/taskgroups.cpython-313.pyc, Lib/asyncio/__pycache__/tasks.cpython-313.pyc, Lib/asyncio/__pycache__/threads.cpython-313.pyc, Lib/asyncio/__pycache__/timeouts.cpython-313.pyc, Lib/asyncio/__pycache__/transports.cpython-313.pyc, Lib/asyncio/__pycache__/trsock.cpython-313.pyc, Lib/asyncio/__pycache__/unix_events.cpython-313.pyc, Lib/collections/__pycache__/__init__.cpython-313.pyc, Lib/concurrent/__pycache__/__init__.cpython-313.pyc, Lib/concurrent/futures/__pycache__/__init__.cpython-313.pyc, Lib/concurrent/futures/__pycache__/_base.cpython-313.pyc, Lib/encodings/__pycache__/__init__.cpython-313.pyc, Lib/encodings/__pycache__/aliases.cpython-313.pyc, Lib/encodings/__pycache__/ascii.cpython-313.pyc, Lib/encodings/__pycache__/utf_8.cpython-313.pyc, Lib/importlib/__pycache__/__init__.cpython-313.pyc, Lib/importlib/__pycache__/_abc.cpython-313.pyc, Lib/logging/__pycache__/__init__.cpython-313.pyc, Lib/pathlib/__pycache__/__init__.cpython-313.pyc, Lib/pathlib/__pycache__/_abc.cpython-313.pyc, Lib/pathlib/__pycache__/_local.cpython-313.pyc, Lib/re/__pycache__/__init__.cpython-313.pyc, Lib/re/__pycache__/_casefix.cpython-313.pyc, Lib/re/__pycache__/_compiler.cpython-313.pyc, Lib/re/__pycache__/_constants.cpyth

[truncated 29270 bytes]

Response

## Plan Pass

## Problem
Fixer observed `/usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf` with repeated `wait4(-1, ..., WNOHANG) = -1 ECHILD` followed by `poll(..., 1000) = 0`. That pattern looks like the `supervisord` event loop checking for children once per second, not a tight CPython runtime loop. The process state was sleeping and `wchan` was `poll_schedule_timeout.constprop.0`; the unresolved `pthread_attr_destroy` frame is not enough to identify a CPython defect.

## Evidence Confidence
observed

## Proposed Subject
No CPython source patch in this pass. Treat this as an upstream-style no-patch diagnosis unless an independent reproduction shows CPython itself spinning or mishandling `waitpid`/`poll`.

## Patch Plan
1. Do not edit CPython based only on the profiler signal.
2. Document that the application entrypoint is `supervisord`, while CPython is only the interpreter process.
3. If later evidence proves a runtime bug, investigate `Modules/posixmodule.c` and `Modules/selectmodule.c`; relevant local conventions/helpers are `Py_BEGIN_ALLOW_THREADS` / `Py_END_ALLOW_THREADS`, `PyErr_CheckSignals()`, `posix_error()`, `wait_helper()`, and `_PyDeadline_*` timeout handling.
4. No prior Fixer patch is present in this workspace (`git status --short` is clean), so there is nothing to improve or replace.
5. No awkward control-flow change, including avoidable `goto`, should be introduced; current wait/poll wrappers are bounded direct syscall wrappers.

## Risks
A source patch here would likely be speculative and could alter stable `os.waitpid`, `select.poll`, or subprocess semantics without a demonstrated CPython bug. The evidence may be a supervisor configuration/workload issue, or a profiler misclassification of a sleeping once-per-second service loop as runaway CPU.

## Validation
Before reporting only a focused check after any future edit, try the project-level entrypoint from the workspace root: `./configure && make`. If it fails due to missing dependencies or generated files, record the exact failure and then run the narrowest relevant compile/test.

For the independent bounded check, try to reproduce the collected signal at the application entrypoint if available: `timeout 6s strace -f -tt -e poll,wait4,waitpid /usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf`. In this workspace `/usr/bin/supervisord` and the raw investigation files are unavailable, so do not claim reproduced unless that command can actually be run and shows the same behavior. A secondary CPython sanity check can confirm `os.waitpid(-1, os.WNOHANG)` raises `ChildProcessError`/`ECHILD` without a runtime loop.

## Patch Pass

Subject: No patch: diagnose supervisord poll trace

## Commit Message
No source change. The collected evidence points to a `supervisord` event loop running under CPython, not to a demonstrated CPython wait or poll bug. CPython’s local wait/poll wrappers already use the expected syscall conventions and signal-handling helpers.

## Evidence Confidence
inferred

## Issue Connection
Fixer collected a perf/strace `/proc` signal for `/usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf`: repeated `wait4(-1, ..., WNOHANG) = -1 ECHILD` followed by `poll(..., 1000) = 0`, with `/proc` showing the process sleeping in `poll_schedule_timeout.constprop.0`.

The cautious code-level inference is that this is `supervisord` waking once per second to check for child processes, not a tight CPython busy loop. The CPython wait wrappers in `Modules/posixmodule.c` use `Py_BEGIN_ALLOW_THREADS`, `Py_END_ALLOW_THREADS`, `PyErr_CheckSignals()`, `posix_error()`, and `wait_helper()`. The poll wrapper in `Modules/selectmodule.c` uses `_PyDeadline_*` timeout handling and signal retry logic. `Lib/subprocess.py` also protects waitpid calls with `_waitpid_lock`. No relevant local helper was missing.

I followed the saved plan and made no source change because the evidence is not pull-request-ready for a CPython runtime patch. The expected effect is to avoid an upstream patch that would change stable wait/poll semantics without a reproduced CPython defect.

## Git Add Paths
None

## Validation
`./configure && make` from the workspace root completed with exit code 0. The build reported optional module issues: `_dbm`, `_gdbm`, and `_tkinter` missing, and `_ssl` was built then removed because importing it failed with `undefined symbol: TLSv1_method`.

Independent reproduction attempt: `timeout 6s strace -f -tt -e poll,wait4,waitpid /usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf` did not reproduce; it was blocked by ptrace restrictions: `PTRACE_TRACEME: Operation not permitted` and `ptrace(PTRACE_SEIZE, 5): Operation not permitted`. `/usr/bin/supervisord` is also absent in this workspace.

Focused CPython sanity check: `./python` running `os.waitpid(-1, os.WNOHANG)` returned `ChildProcessError` errno `10` in about `0.000004s`, with no loop. `git diff --name-only` is empty; no tracked source files were changed.

## Review Pass 1 (local metadata check)

RESULT: fix-needed

## Findings
1. Patch metadata drift: the workspace currently changes `Lib/__pycache__/__future__.cpython-313.pyc`, `Lib/__pycache__/_collections_abc.cpython-313.pyc`, `Lib/__pycache__/_colorize.cpython-313.pyc`, `Lib/__pycache__/_compat_pickle.cpython-313.pyc`, `Lib/__pycache__/_compression.cpython-313.pyc`, `Lib/__pycache__/_opcode_metadata.cpython-313.pyc`, `Lib/__pycache__/_sitebuiltins.cpython-313.pyc`, `Lib/__pycache__/_weakrefset.cpython-313.pyc`, `Lib/__pycache__/abc.cpython-313.pyc`, `Lib/__pycache__/argparse.cpython-313.pyc`, `Lib/__pycache__/ast.cpython-313.pyc`, `Lib/__pycache__/bz2.cpython-313.pyc`, `Lib/__pycache__/codecs.cpython-313.pyc`, `Lib/__pycache__/contextlib.cpython-313.pyc`, `Lib/__pycache__/contextvars.cpython-313.pyc`, `Lib/__pycache__/copy.cpython-313.pyc`, `Lib/__pycache__/copyreg.cpython-313.pyc`, `Lib/__pycache__/datetime.cpython-313.pyc`, `Lib/__pycache__/dis.cpython-313.pyc`, `Lib/__pycache__/enum.cpython-313.pyc`, `Lib/__pycache__/fnmatch.cpython-313.pyc`, `Lib/__pycache__/functools.cpython-313.pyc`, `Lib/__pycache__/genericpath.cpython-313.pyc`, `Lib/__pycache__/gettext.cpython-313.pyc`, `Lib/__pycache__/glob.cpython-313.pyc`, `Lib/__pycache__/heapq.cpython-313.pyc`, `Lib/__pycache__/inspect.cpython-313.pyc`, `Lib/__pycache__/io.cpython-313.pyc`, `Lib/__pycache__/keyword.cpython-313.pyc`, `Lib/__pycache__/linecache.cpython-313.pyc`, `Lib/__pycache__/locale.cpython-313.pyc`, `Lib/__pycache__/lzma.cpython-313.pyc`, `Lib/__pycache__/numbers.cpython-313.pyc`, `Lib/__pycache__/opcode.cpython-313.pyc`, `Lib/__pycache__/operator.cpython-313.pyc`, `Lib/__pycache__/os.cpython-313.pyc`, `Lib/__pycache__/posixpath.cpython-313.pyc`, `Lib/__pycache__/reprlib.cpython-313.pyc`, `Lib/__pycache__/selectors.cpython-313.pyc`, `Lib/__pycache__/shutil.cpython-313.pyc`, `Lib/__pycache__/signal.cpython-313.pyc`, `Lib/__pycache__/site.cpython-313.pyc`, `Lib/__pycache__/socket.cpython-313.pyc`, `Lib/__pycache__/ssl.cpython-313.pyc`, `Lib/__pycache__/stat.cpython-313.pyc`, `Lib/__pycache__/string.cpython-313.pyc`, `Lib/__pycache__/struct.cpython-313.pyc`, `Lib/__pycache__/subprocess.cpython-313.pyc`, `Lib/__pycache__/textwrap.cpython-313.pyc`, `Lib/__pycache__/threading.cpython-313.pyc`, `Lib/__pycache__/token.cpython-313.pyc`, `Lib/__pycache__/tokenize.cpython-313.pyc`, `Lib/__pycache__/traceback.cpython-313.pyc`, `Lib/__pycache__/types.cpython-313.pyc`, `Lib/__pycache__/typing.cpython-313.pyc`, `Lib/__pycache__/warnings.cpython-313.pyc`, `Lib/__pycache__/weakref.cpython-313.pyc`, `Lib/asyncio/__pycache__/__init__.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_events.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_futures.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_subprocess.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_tasks.cpython-313.pyc`, `Lib/asyncio/__pycache__/constants.cpython-313.pyc`, `Lib/asyncio/__pycache__/coroutines.cpython-313.pyc`, `Lib/asyncio/__pycache__/events.cpython-313.pyc`, `Lib/asyncio/__pycache__/exceptions.cpython-313.pyc`, `Lib/asyncio/__pycache__/format_helpers.cpython-313.pyc`, `Lib/asyncio/__pycache__/futures.cpython-313.pyc`, `Lib/asyncio/__pycache__/locks.cpython-313.pyc`, `Lib/asyncio/__pycache__/log.cpython-313.pyc`, `Lib/asyncio/__pycache__/mixins.cpython-313.pyc`, `Lib/asyncio/__pycache__/protocols.cpython-313.pyc`, `Lib/asyncio/__pycache__/queues.cpython-313.pyc`, `Lib/asyncio/__pycache__/runners.cpython-313.pyc`, `Lib/asyncio/__pycache__/selector_events.cpython-313.pyc`, `Lib/asyncio/__pycache__/sslproto.cpython-313.pyc`, `Lib/asyncio/__pycache__/staggered.cpython-313.pyc`, `Lib/asyncio/__pycache__/streams.cpython-313.pyc`, `Lib/asyncio/__pycache__/subprocess.cpython-313.pyc`, `Lib/asyncio/__pycache__/taskgroups.cpython-313.pyc`, `Lib/asyncio/__pycache__/tasks.cpython-313.pyc`, `Lib/asyncio/__pycache__/threads.cpython-313.pyc`, `Lib/asyncio/__pycache__/timeouts.cpython-313.pyc`, `Lib/asyncio/__pycache__/transports.cpython-313.pyc`, `Lib/asyncio/__pycache__/trsock.cpython-313.pyc`, `Lib/asyncio/__pycache__/unix_events.cpython-313.pyc`, `Lib/collections/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/futures/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/futures/__pycache__/_base.cpython-313.pyc`, `Lib/encodings/__pycache__/__init__.cpython-313.pyc`, `Lib/encodings/__pycache__/aliases.cpython-313.pyc`, `Lib/encodings/__pycache__/ascii.cpython-313.pyc`, `Lib/encodings/__pycache__/utf_8.cpython-313.pyc`, `Lib/importlib/__pycache__/__init__.cpython-313.pyc`, `Lib/importlib/__pycache__/_abc.cpython-313.pyc`, `Lib/logging/__pycache__/__init__.cpython-313.pyc`, `Lib/pathlib/__pycache__/__init__.cpython-313.pyc`, `Lib/pathlib/__pycache__/_abc.cpython-313.pyc`, `Lib/pathlib/__pycache__/_local.cpython-313.pyc`, `Lib/re/__pycache__/__init__.cpython-313.pyc`, `Lib/re/__pycache__/_casefix.cpython-313.pyc`, `Lib/re/__pycache__/_compiler.cpython-313.pyc`, `Lib/re/__pycache__/_constants.cpython-313.pyc`, `Lib/re/__pycache__/_parser.cpython-313.pyc`, `Lib/sysconfig/__pycache__/__init__.cpython-313.pyc`, `Lib/sysconfig/__pycache__/__main__.cpython-313.pyc`, `Lib/xml/__pycache__/__init__.cpython-313.pyc`, `Lib/xml/etree/__pycache__/ElementPath.cpython-313.pyc`, `Lib/xml/etree/__pycache__/__init__.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/__init__.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/_common.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/_tzpath.cpython-313.pyc`, `Makefile`, `Makefile.pre`, `Misc/python-config.sh`, `Misc/python-embed.pc`, `Misc/python.pc`, `Modules/Setup.bootstrap`, `Modules/Setup.local`, `Modules/Setup.stdlib`, `Modules/_abc.o`, `Modules/_asyncio.cpython-313-x86_64-linux-gnu.so`, `Modules/_asynciomodule.o`, `Modules/_bisect.cpython-313-x86_64-linux-gnu.so`, `Modules/_bisectmodule.o`, `Modules/_blake2.cpython-313-x86_64-linux-gnu.so`, `Modules/_blake2/blake2b_impl.o`, `Modules/_blake2/blake2module.o`, `Modules/_blake2/blake2s_impl.o`, `Modules/_bz2.cpython-313-x86_64-linux-gnu.so`, `Modules/_bz2module.o`, `Modules/_codecs_cn.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_hk.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_iso2022.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_jp.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_kr.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_tw.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecsmodule.o`, `Modules/_collectionsmodule.o`, `Modules/_contextvars.cpython-313-x86_64-linux-gnu.so`, `Modules/_contextvarsmodule.o`, `Modules/_csv.cpython-313-x86_64-linux-gnu.so`, `Modules/_csv.o`, `Modules/_ctypes.cpython-313-x86_64-linux-gnu.so`, `Modules/_ctypes/_ctypes.o`, `Modules/_ctypes/_ctypes_test.o`, `Modules/_ctypes/callbacks.o`, `Modules/_ctypes/callproc.o`, `Modules/_ctypes/cfield.o`, `Modules/_ctypes/stgdict.o`, `Modules/_ctypes_test.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses_panel.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses_panel.o`, `Modules/_cursesmodule.o`, `Modules/_datetime.cpython-313-x86_64-linux-gnu.so`, `Modules/_datetimemodule.o`, `Modules/_decimal.cpython-313-x86_64-linux-gnu.so`, `Modules/_decimal/_decimal.o`, `Modules/_decimal/libmpdec/basearith.o`, `Modules/_decimal/libmpdec/constants.o`, `Modules/_decimal/libmpdec/context.o`, `Modules/_decimal/libmpdec/convolute.o`, `Modules/_decimal/libmpdec/crt.o`, `Modules/_decimal/libmpdec/difradix2.o`, `Modules/_decimal/libmpdec/fnt.o`, `Modules/_decimal/libmpdec/fourstep.o`, `Modules/_decimal/libmpdec/io.o`, `Modules/_decimal/libmpdec/libmpdec.a`, `Modules/_decimal/libmpdec/mpalloc.o`, `Modules/_decimal/libmpdec/mpdecimal.o`, `Modules/_decimal/libmpdec/numbertheory.o`, `Modules/_decimal/libmpdec/sixstep.o`, `Modules/_decimal/libmpdec/transpose.o`, `Modules/_elementtree.cpython-313-x86_64-linux-gnu.so`, `Modules/_elementtree.o`, `Modules/_functoolsmodule.o`, `Modules/_hacl/Hacl_Hash_MD5.o`, `Modules/_hacl/Hacl_Hash_SHA1.o`, `Modules/_hacl/Hacl_Hash_SHA2.o`, `Modules/_hacl/Hacl_Hash_SHA3.o`, `Modules/_hacl/libHacl_Hash_SHA2.a`, `Modules/_hashlib.cpython-313-x86_64-linux-gnu.so`, `Modules/_hashopenssl.o`, `Modules/_heapq.cpython-313-x86_64-linux-gnu.so`, `Modules/_heapqmodule.o`, `Modules/_interpchannels.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpchannelsmodule.o`, `Modules/_interpqueues.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpqueuesmodule.o`, `Modules/_interpreters.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpretersmodule.o`, `Modules/_io/_iomodule.o`, `Modules/_io/bufferedio.o`, `Modules/_io/bytesio.o`, `Modules/_io/fileio.o`, `Modules/_io/iobase.o`, `Modules/_io/stringio.o`, `Modules/_io/textio.o`, `Modules/_json.cpython-313-x86_64-linux-gnu.so`, `Modules/_json.o`, `Modules/_localemodule.o`, `Modules/_lsprof.cpython-313-x86_64-linux-gnu.so`, `Modules/_lsprof.o`, `Modules/_lzma.cpython-313-x86_64-linux-gnu.so`, `Modules/_lzmamodule.o`, `Modules/_md5.cpython-313-x86_64-linux-gnu.so`, `Modules/_multibytecodec.cpython-313-x86_64-linux-gnu.so`, `Modules/_multiprocessing.cpython-313-x86_64-linux-gnu.so`, `Modules/_multiprocessing/multiprocessing.o`, `Modules/_multiprocessing/posixshmem.o`, `Modules/_multiprocessing/semaphore.o`, `Modules/_opcode.cpython-313-x86_64-linux-gnu.so`, `Modules/_opcode.o`, `Modules/_operator.o`, `Modules/_pickle.cpython-313-x86_64-linux-gnu.so`, `Modules/_pickle.o`, `Modules/_posixshmem.cpython-313-x86_64-linux-gnu.so`, `Modules/_posixsubprocess.cpython-313-x86_64-linux-gnu.so`, `Modules/_posixsubprocess.o`, `Modules/_queue.cpython-313-x86_64-linux-gnu.so`, `Modules/_queuemodule.o`, `Modules/_random.cpython-313-x86_64-linux-gnu.so`, `Modules/_randommodule.o`, `Modules/_sha1.cpython-313-x86_64-linux-gnu.so`, `Modules/_sha2.cpython-313-x86_64-linux-gnu.so`, `Modules/_sha3.cpython-313-x86_64-linux-gnu.so`, `Modules/_socket.cpython-313-x86_64-linux-gnu.so`, `Modules/_sqlite/blob.o`, `Modules/_sqlite/connection.o`, `Modules/_sqlite/cursor.o`, `Modules/_sqlite/microprotocols.o`, `Modules/_sqlite/module.o`, `Modules/_sqlite/prepare_protocol.o`, `Modules/_sqlite/row.o`, `Modules/_sqlite/statement.o`, `Modules/_sqlite/util.o`, `Modules/_sqlite3.cpython-313-x86_64-linux-gnu.so`, `Modules/_sre/sre.o`, `Modules/_ssl.o`, `Modules/_ssl_failed.cpython-313-x86_64-linux-gnu.so`, `Modules/_stat.o`, `Modules/_statistics.cpython-313-x86_64-linux-gnu.so`, `Modules/_statisticsmodule.o`, `Modules/_struct.cpython-313-x86_64-linux-gnu.so`, `Modules/_struct.o`, `Modules/_suggestions.o`, `Modules/_sysconfig.o`, `Modules/_testbuffer.cpython-313-x86_64-linux-gnu.so`, `Modules/_testbuffer.o`, `Modules/_testcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testcapi/abstract.o`, `Modules/_testcapi/buffer.o`, `Modules/_testcapi/bytes.o`, `Modules/_testcapi/code.o`, `Modules/_testcapi/codec.o`, `Modules/_testcapi/complex.o`, `Modules/_testcapi/datetime.o`, `Modules/_testcapi/dict.o`, `Modules/_testcapi/docstring.o`, `Modules/_testcapi/exceptions.o`, `Modules/_testcapi/file.o`, `Modules/_testcapi/float.o`, `Modules/_testcapi/gc.o`, `Modules/_testcapi/getargs.o`, `Modules/_testcapi/hash.o`, `Modules/_testcapi/heaptype.o`, `Modules/_testcapi/immortal.o`, `Modules/_testcapi/list.o`, `Modules/_testcapi/long.o`, `Modules/_testcapi/mem.o`, `Modules/_testcapi/monitoring.o`, `Modules/_testcapi/numbers.o`, `Modules/_testcapi/object.o`, `Modules/_testcapi/pyatomic.o`, `Modules/_testcapi/run.o`, `Modules/_testcapi/set.o`, `Modules/_testcapi/structmember.o`, `Modules/_testcapi/time.o`, `Modules/_testcapi/tuple.o`, `Modules/_testcapi/unicode.o`, `Modules/_testcapi/vectorcall.o`, `Modules/_testcapi/watchers.o`, `Modules/_testcapimodule.o`, `Modules/_testclinic.cpython-313-x86_64-linux-gnu.so`, `Modules/_testclinic.o`, `Modules/_testclinic_limited.cpython-313-x86_64-linux-gnu.so`, `Modules/_testclinic_limited.o`, `Modules/_testexternalinspection.cpython-313-x86_64-linux-gnu.so`, `Modules/_testexternalinspection.o`, `Modules/_testimportmultiple.cpython-313-x86_64-linux-gnu.so`, `Modules/_testimportmultiple.o`, `Modules/_testinternalcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testinternalcapi.o`, `Modules/_testinternalcapi/pytime.o`, `Modules/_testinternalcapi/set.o`, `Modules/_testinternalcapi/test_critical_sections.o`, `Modules/_testinternalcapi/test_lock.o`, `Modules/_testlimitedcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testlimitedcapi.o`, `Modules/_testlimitedcapi/abstract.o`, `Modules/_testlimitedcapi/bytearray.o`, `Modules/_testlimitedcapi/bytes.o`, `Modules/_testlimitedcapi/complex.o`, `Modules/_testlimitedcapi/dict.o`, `Modules/_testlimitedcapi/eval.o`, `Modules/_testlimitedcapi/file.o`, `Modules/_testlimitedcapi/float.o`, `Modules/_testlimitedcapi/heaptype_relative.o`, `Modules/_testlimitedcapi/import.o`, `Modules/_testlimitedcapi/list.o`, `Modules/_testlimitedcapi/long.o`, `Modules/_testlimitedcapi/object.o`, `Modules/_testlimitedcapi/pyos.o`, `Modules/_testlimitedcapi/set.o`, `Modules/_testlimitedcapi/sys.o`, `Modules/_testlimitedcapi/tuple.o`, `Modules/_testlimitedcapi/unicode.o`, `Modules/_testlimitedcapi/vectorcall_limited.o`, `Modules/_testmultiphase.cpython-313-x86_64-linux-gnu.so`, `Modules/_testmultiphase.o`, `Modules/_testsinglephase.cpython-313-x86_64-linux-gnu.so`, `Modules/_testsinglephase.o`, `Modules/_threadmodule.o`, `Modules/_tracemalloc.o`, `Modules/_typingmodule.o`, `Modules/_uuid.cpython-313-x86_64-linux-gnu.so`, `Modules/_uuidmodule.o`, `Modules/_weakref.o`, `Modules/_xxtestfuzz.cpython-313-x86_64-linux-gnu.so`, `Modules/_xxtestfuzz/_xxtestfuzz.o`, `Modules/_xxtestfuzz/fuzzer.o`, `Modules/_zoneinfo.cpython-313-x86_64-linux-gnu.so`, `Modules/_zoneinfo.o`, `Modules/array.cpython-313-x86_64-linux-gnu.so`, `Modules/arraymodule.o`, `Modules/atexitmodule.o`, `Modules/binascii.cpython-313-x86_64-linux-gnu.so`, `Modules/binascii.o`, `Modules/cjkcodecs/_codecs_cn.o`, `Modules/cjkcodecs/_codecs_hk.o`, `Modules/cjkcodecs/_codecs_iso2022.o`, `Modules/cjkcodecs/_codecs_jp.o`, `Modules/cjkcodecs/_codecs_kr.o`, `Modules/cjkcodecs/_codecs_tw.o`, `Modules/cjkcodecs/multibytecodec.o`, `Modules/cmath.cpython-313-x86_64-linux-gnu.so`, `Modules/cmathmodule.o`, `Modules/config.c`, `Modules/config.o`, `Modules/errnomodule.o`, `Modules/expat/libexpat.a`, `Modules/expat/xmlparse.o`, `Modules/expat/xmlrole.o`, `Modules/expat/xmltok.o`, `Modules/faulthandler.o`, `Modules/fcntl.cpython-313-x86_64-linux-gnu.so`, `Modules/fcntlmodule.o`, `Modules/gcmodule.o`, `Modules/getbuildinfo.o`, `Modules/getpath.o`, `Modules/getpath_noop.o`, `Modules/grp.cpython-313-x86_64-linux-gnu.so`, `Modules/grpmodule.o`, `Modules/itertoolsmodule.o`, `Modules/ld_so_aix`, `Modules/main.o`, `Modules/math.cpython-313-x86_64-linux-gnu.so`, `Modules/mathmodule.o`, `Modules/md5module.o`, `Modules/mmap.cpython-313-x86_64-linux-gnu.so`, `Modules/mmapmodule.o`, `Modules/posixmodule.o`, `Modules/pwdmodule.o`, `Modules/pyexpat.cpython-313-x86_64-linux-gnu.so`, `Modules/pyexpat.o`, `Modules/readline.cpython-313-x86_64-linux-gnu.so`, `Modules/readline.o`, `Modules/resource.cpython-313-x86_64-linux-gnu.so`, `Modules/resource.o`, `Modules/rotatingtree.o`, `Modules/select.cpython-313-x86_64-linux-gnu.so`, `Modules/selectmodule.o`, `Modules/sha1module.o`, `Modules/sha2module.o`, `Modules/sha3module.o`, `Modules/signalmodule.o`, `Modules/socketmodule.o`, `Modules/symtablemodule.o`, `Modules/syslog.cpython-313-x86_64-linux-gnu.so`, `Modules/syslogmodule.o`, `Modules/termios.cpython-313-x86_64-linux-gnu.so`, `Modules/termios.o`, `Modules/timemodule.o`, `Modules/unicodedata.cpython-313-x86_64-linux-gnu.so`, `Modules/unicodedata.o`, `Modules/xxlimited.cpython-313-x86_64-linux-gnu.so`, `Modules/xxlimited.o`, `Modules/xxlimited_35.cpython-313-x86_64-linux-gnu.so`, `Modules/xxlimited_35.o`, `Modules/xxsubtype.cpython-313-x86_64-linux-gnu.so`, `Modules/xxsubtype.o`, `Modules/zlib.cpython-313-x86_64-linux-gnu.so`, `Modules/zlibmodule.o`, `Objects/abstract.o`, `Objects/boolobject.o`, `Objects/bytearrayobject.o`, `Objects/bytes_methods.o`, `Objects/bytesobject.o`, `Objects/call.o`, `Objects/capsule.o`, `Objects/cellobject.o`, `Objects/classobject.o`, `Objects/codeobject.o`, `Objects/complexobject.o`, `Objects/descrobject.o`, `Objects/dictobject.o`, `Objects/enumobject.o`, `Objects/exceptions.o`, `Objects/fileobject.o`, `Objects/floatobject.o`, `Objects/frameobject.o`, `Objects/funcobject.o`, `Objects/genericaliasobject.o`, `Objects/genobject.o`, `Objects/iterobject.o`, `Objects/listobject.o`, `Objects/longobject.o`, `Objects/memoryobject.o`, `Objects/methodobject.o`, `Objects/moduleobject.o`, `Objects/namespaceobject.o`, `Objects/object.o`, `Objects/obmalloc.o`, `Objects/odictobject.o`, `Objects/picklebufobject.o`, `Objects/rangeobject.o`, `Objects/setobject.o`, `Objects/sliceobject.o`, `Objects/structseq.o`, `Objects/tupleobject.o`, `Objects/typeobject.o`, `Objects/typevarobject.o`, `Objects/unicodectype.o`, `Objects/unicodeobject.o`, `Objects/unionobject.o`, `Objects/weakrefobject.o`, `Parser/action_helpers.o`, `Parser/lexer/buffer.o`, `Parser/lexer/lexer.o`, `Parser/lexer/state.o`, `Parser/myreadline.o`, `Parser/parser.o`, `Parser/peg_api.o`, `Parser/pegen.o`, `Parser/pegen_errors.o`, `Parser/string_parser.o`, `Parser/token.o`, `Parser/tokenizer/file_tokenizer.o`, `Parser/tokenizer/helpers.o`, `Parser/tokenizer/readline_tokenizer.o`, `Parser/tokenizer/string_tokenizer.o`, `Parser/tokenizer/utf8_tokenizer.o`, `Programs/_bootstrap_python.o`, `Programs/_freeze_module`, `Programs/_freeze_module.o`, `Programs/_testembed`, `Programs/_testembed.o`, `Programs/python.o`, `Python/Python-ast.o`, `Python/Python-tokenize.o`, `Python/_warnings.o`, `Python/asdl.o`, `Python/asm_trampoline.o`, `Python/assemble.o`, `Python/ast.o`, `Python/ast_opt.o`, `Python/ast_unparse.o`, `Python/bltinmodule.o`, `Python/bootstrap_hash.o`, `Python/brc.o`, `Python/ceval.o`, `Python/ceval_gil.o`, `Python/codecs.o`, `Python/compile.o`, `Python/context.o`, `Python/critical_section.o`, `Python/crossinterp.o`, `Python/dtoa.o`, `Python/dynamic_annotations.o`, `Python/dynload_shlib.o`, `Python/errors.o`, `Python/fileutils.o`, `Python/flowgraph.o`, `Python/formatter_unicode.o`, `Python/frame.o`, `Python/frozen.o`, `Python/frozen_modules/__hello__.h`, `Python/frozen_modules/__phello__.h`, `Python/frozen_modules/__phello__.ham.eggs.h`, `Python/frozen_modules/__phello__.ham.h`, `Python/frozen_modules/__phello__.spam.h`, `Python/frozen_modules/_collections_abc.h`, `Python/frozen_modules/_sitebuiltins.h`, `Python/frozen_modules/abc.h`, `Python/frozen_modules/codecs.h`, `Python/frozen_modules/frozen_only.h`, `Python/frozen_modules/genericpath.h`, `Python/frozen_modules/getpath.h`, `Python/frozen_modules/importlib._bootstrap.h`, `Python/frozen_modules/importlib._bootstrap_external.h`, `Python/frozen_modules/importlib.machinery.h`, `Python/frozen_modules/importlib.util.h`, `Python/frozen_modules/io.h`, `Python/frozen_modules/ntpath.h`, `Python/frozen_modules/os.h`, `Python/frozen_modules/posixpath.h`, `Python/frozen_modules/runpy.h`, `Python/frozen_modules/site.h`, `Python/frozen_modules/stat.h`, `Python/frozen_modules/zipimport.h`, `Python/frozenmain.o`, `Python/future.o`, `Python/gc.o`, `Python/gc_free_threading.o`, `Python/gc_gil.o`, `Python/getargs.o`, `Python/getcompiler.o`, `Python/getcopyright.o`, `Python/getopt.o`, `Python/getplatform.o`, `Python/getversion.o`, `Python/hamt.o`, `Python/hashtable.o`, `Python/import.o`, `Python/importdl.o`, `Python/initconfig.o`, `Python/instruction_sequence.o`, `Python/instrumentation.o`, `Python/interpconfig.o`, `Python/intrinsics.o`, `Python/jit.o`, `Python/legacy_tracing.o`, `Python/lock.o`, `Python/marshal.o`, `Python/modsupport.o`, `Python/mysnprintf.o`, `Python/mystrtoul.o`, `Python/object_stack.o`, `Python/optimizer.o`, `Python/optimizer_analysis.o`, `Python/optimizer_symbols.o`, `Python/parking_lot.o`, `Python/pathconfig.o`, `Python/perf_jit_trampoline.o`, `Python/perf_trampoline.o`, `Python/preconfig.o`, `Python/pyarena.o`, `Python/pyctype.o`, `Python/pyfpe.o`, `Python/pyhash.o`, `Python/pylifecycle.o`, `Python/pymath.o`, `Python/pystate.o`, `Python/pystrcmp.o`, `Python/pystrhex.o`, `Python/pystrtod.o`, `Python/pythonrun.o`, `Python/pytime.o`, `Python/qsbr.o`, `Python/specialize.o`, `Python/structmember.o`, `Python/suggestions.o`, `Python/symtable.o`, `Python/sysmodule.o`, `Python/thread.o`, `Python/traceback.o`, `Python/tracemalloc.o`, `_bootstrap_python`, `build/lib.linux-x86_64-3.13/__pycache__/_sysconfigdata__linux_x86_64-linux-gnu.cpython-313.pyc`, `build/lib.linux-x86_64-3.13/_asyncio.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_bisect.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_blake2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_bz2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_cn.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_hk.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_iso2022.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_jp.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_kr.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_tw.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_contextvars.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_csv.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_ctypes.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_ctypes_test.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_curses.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_curses_panel.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_datetime.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_decimal.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_elementtree.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_hashlib.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_heapq.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpchannels.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpqueues.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpreters.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_json.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_lsprof.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_lzma.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_md5.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_multibytecodec.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_multiprocessing.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_opcode.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_pickle.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_posixshmem.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_posixsubprocess.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_queue.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_random.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha1.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha3.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_socket.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sqlite3.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_statistics.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_struct.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sysconfigdata__linux_x86_64-linux-gnu.py`, `build/lib.linux-x86_64-3.13/_testbuffer.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testclinic.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testclinic_limited.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testexternalinspection.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testimportmultiple.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testinternalcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testlimitedcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testmultiphase.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testsinglephase.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_uuid.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_xxtestfuzz.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_zoneinfo.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/array.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/binascii.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/cmath.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/fcntl.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/grp.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/math.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/mmap.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/pyexpat.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/readline.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/resource.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/select.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/syslog.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/termios.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/unicodedata.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxlimited.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxlimited_35.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxsubtype.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/zlib.cpython-313-x86_64-linux-gnu.so`, `build/scripts-3.13/idle3.13`, `build/scripts-3.13/pydoc3.13`, `config.log`, `config.status`, `libpython3.13.a`, `platform`, `pybuilddir.txt`, `pyconfig.h`, `python`, `python-config`, `python-config.py`, `python-gdb.py`, but `## Git Add Paths` lists `None`. Update `## Git Add Paths` to match the real shipped file set exactly, and make sure `## Issue Connection` explains every functional file that remains in the patch.
2. Missing from `## Git Add Paths`: `Lib/__pycache__/__future__.cpython-313.pyc`, `Lib/__pycache__/_collections_abc.cpython-313.pyc`, `Lib/__pycache__/_colorize.cpython-313.pyc`, `Lib/__pycache__/_compat_pickle.cpython-313.pyc`, `Lib/__pycache__/_compression.cpython-313.pyc`, `Lib/__pycache__/_opcode_metadata.cpython-313.pyc`, `Lib/__pycache__/_sitebuiltins.cpython-313.pyc`, `Lib/__pycache__/_weakrefset.cpython-313.pyc`, `Lib/__pycache__/abc.cpython-313.pyc`, `Lib/__pycache__/argparse.cpython-313.pyc`, `Lib/__pycache__/ast.cpython-313.pyc`, `Lib/__pycache__/bz2.cpython-313.pyc`, `Lib/__pycache__/codecs.cpython-313.pyc`, `Lib/__pycache__/contextlib.cpython-313.pyc`, `Lib/__pycache__/contextvars.cpython-313.pyc`, `Lib/__pycache__/copy.cpython-313.pyc`, `Lib/__pycache__/copyreg.cpython-313.pyc`, `Lib/__pycache__/datetime.cpython-313.pyc`, `Lib/__pycache__/dis.cpython-313.pyc`, `Lib/__pycache__/enum.cpython-313.pyc`, `Lib/__pycache__/fnmatch.cpython-313.pyc`, `Lib/__pycache__/functools.cpython-313.pyc`, `Lib/__pycache__/genericpath.cpython-313.pyc`, `Lib/__pycache__/gettext.cpython-313.pyc`, `Lib/__pycache__/glob.cpython-313.pyc`, `Lib/__pycache__/heapq.cpython-313.pyc`, `Lib/__pycache__/inspect.cpython-313.pyc`, `Lib/__pycache__/io.cpython-313.pyc`, `Lib/__pycache__/keyword.cpython-313.pyc`, `Lib/__pycache__/linecache.cpython-313.pyc`, `Lib/__pycache__/locale.cpython-313.pyc`, `Lib/__pycache__/lzma.cpython-313.pyc`, `Lib/__pycache__/numbers.cpython-313.pyc`, `Lib/__pycache__/opcode.cpython-313.pyc`, `Lib/__pycache__/operator.cpython-313.pyc`, `Lib/__pycache__/os.cpython-313.pyc`, `Lib/__pycache__/posixpath.cpython-313.pyc`, `Lib/__pycache__/reprlib.cpython-313.pyc`, `Lib/__pycache__/selectors.cpython-313.pyc`, `Lib/__pycache__/shutil.cpython-313.pyc`, `Lib/__pycache__/signal.cpython-313.pyc`, `Lib/__pycache__/site.cpython-313.pyc`, `Lib/__pycache__/socket.cpython-313.pyc`, `Lib/__pycache__/ssl.cpython-313.pyc`, `Lib/__pycache__/stat.cpython-313.pyc`, `Lib/__pycache__/string.cpython-313.pyc`, `Lib/__pycache__/struct.cpython-313.pyc`, `Lib/__pycache__/subprocess.cpython-313.pyc`, `Lib/__pycache__/textwrap.cpython-313.pyc`, `Lib/__pycache__/threading.cpython-313.pyc`, `Lib/__pycache__/token.cpython-313.pyc`, `Lib/__pycache__/tokenize.cpython-313.pyc`, `Lib/__pycache__/traceback.cpython-313.pyc`, `Lib/__pycache__/types.cpython-313.pyc`, `Lib/__pycache__/typing.cpython-313.pyc`, `Lib/__pycache__/warnings.cpython-313.pyc`, `Lib/__pycache__/weakref.cpython-313.pyc`, `Lib/asyncio/__pycache__/__init__.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_events.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_futures.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_subprocess.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_tasks.cpython-313.pyc`, `Lib/asyncio/__pycache__/constants.cpython-313.pyc`, `Lib/asyncio/__pycache__/coroutines.cpython-313.pyc`, `Lib/asyncio/__pycache__/events.cpython-313.pyc`, `Lib/asyncio/__pycache__/exceptions.cpython-313.pyc`, `Lib/asyncio/__pycache__/format_helpers.cpython-313.pyc`, `Lib/asyncio/__pycache__/futures.cpython-313.pyc`, `Lib/asyncio/__pycache__/locks.cpython-313.pyc`, `Lib/asyncio/__pycache__/log.cpython-313.pyc`, `Lib/asyncio/__pycache__/mixins.cpython-313.pyc`, `Lib/asyncio/__pycache__/protocols.cpython-313.pyc`, `Lib/asyncio/__pycache__/queues.cpython-313.pyc`, `Lib/asyncio/__pycache__/runners.cpython-313.pyc`, `Lib/asyncio/__pycache__/selector_events.cpython-313.pyc`, `Lib/asyncio/__pycache__/sslproto.cpython-313.pyc`, `Lib/asyncio/__pycache__/staggered.cpython-313.pyc`, `Lib/asyncio/__pycache__/streams.cpython-313.pyc`, `Lib/asyncio/__pycache__/subprocess.cpython-313.pyc`, `Lib/asyncio/__pycache__/taskgroups.cpython-313.pyc`, `Lib/asyncio/__pycache__/tasks.cpython-313.pyc`, `Lib/asyncio/__pycache__/threads.cpython-313.pyc`, `Lib/asyncio/__pycache__/timeouts.cpython-313.pyc`, `Lib/asyncio/__pycache__/transports.cpython-313.pyc`, `Lib/asyncio/__pycache__/trsock.cpython-313.pyc`, `Lib/asyncio/__pycache__/unix_events.cpython-313.pyc`, `Lib/collections/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/futures/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/futures/__pycache__/_base.cpython-313.pyc`, `Lib/encodings/__pycache__/__init__.cpython-313.pyc`, `Lib/encodings/__pycache__/aliases.cpython-313.pyc`, `Lib/encodings/__pycache__/ascii.cpython-313.pyc`, `Lib/encodings/__pycache__/utf_8.cpython-313.pyc`, `Lib/importlib/__pycache__/__init__.cpython-313.pyc`, `Lib/importlib/__pycache__/_abc.cpython-313.pyc`, `Lib/logging/__pycache__/__init__.cpython-313.pyc`, `Lib/pathlib/__pycache__/__init__.cpython-313.pyc`, `Lib/pathlib/__pycache__/_abc.cpython-313.pyc`, `Lib/pathlib/__pycache__/_local.cpython-313.pyc`, `Lib/re/__pycache__/__init__.cpython-313.pyc`, `Lib/re/__pycache__/_casefix.cpython-313.pyc`, `Lib/re/__pycache__/_compiler.cpython-313.pyc`, `Lib/re/__pycache__/_constants.cpython-313.pyc`, `Lib/re/__pycache__/_parser.cpython-313.pyc`, `Lib/sysconfig/__pycache__/__init__.cpython-313.pyc`, `Lib/sysconfig/__pycache__/__main__.cpython-313.pyc`, `Lib/xml/__pycache__/__init__.cpython-313.pyc`, `Lib/xml/etree/__pycache__/ElementPath.cpython-313.pyc`, `Lib/xml/etree/__pycache__/__init__.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/__init__.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/_common.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/_tzpath.cpython-313.pyc`, `Makefile`, `Makefile.pre`, `Misc/python-config.sh`, `Misc/python-embed.pc`, `Misc/python.pc`, `Modules/Setup.bootstrap`, `Modules/Setup.local`, `Modules/Setup.stdlib`, `Modules/_abc.o`, `Modules/_asyncio.cpython-313-x86_64-linux-gnu.so`, `Modules/_asynciomodule.o`, `Modules/_bisect.cpython-313-x86_64-linux-gnu.so`, `Modules/_bisectmodule.o`, `Modules/_blake2.cpython-313-x86_64-linux-gnu.so`, `Modules/_blake2/blake2b_impl.o`, `Modules/_blake2/blake2module.o`, `Modules/_blake2/blake2s_impl.o`, `Modules/_bz2.cpython-313-x86_64-linux-gnu.so`, `Modules/_bz2module.o`, `Modules/_codecs_cn.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_hk.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_iso2022.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_jp.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_kr.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_tw.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecsmodule.o`, `Modules/_collectionsmodule.o`, `Modules/_contextvars.cpython-313-x86_64-linux-gnu.so`, `Modules/_contextvarsmodule.o`, `Modules/_csv.cpython-313-x86_64-linux-gnu.so`, `Modules/_csv.o`, `Modules/_ctypes.cpython-313-x86_64-linux-gnu.so`, `Modules/_ctypes/_ctypes.o`, `Modules/_ctypes/_ctypes_test.o`, `Modules/_ctypes/callbacks.o`, `Modules/_ctypes/callproc.o`, `Modules/_ctypes/cfield.o`, `Modules/_ctypes/stgdict.o`, `Modules/_ctypes_test.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses_panel.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses_panel.o`, `Modules/_cursesmodule.o`, `Modules/_datetime.cpython-313-x86_64-linux-gnu.so`, `Modules/_datetimemodule.o`, `Modules/_decimal.cpython-313-x86_64-linux-gnu.so`, `Modules/_decimal/_decimal.o`, `Modules/_decimal/libmpdec/basearith.o`, `Modules/_decimal/libmpdec/constants.o`, `Modules/_decimal/libmpdec/context.o`, `Modules/_decimal/libmpdec/convolute.o`, `Modules/_decimal/libmpdec/crt.o`, `Modules/_decimal/libmpdec/difradix2.o`, `Modules/_decimal/libmpdec/fnt.o`, `Modules/_decimal/libmpdec/fourstep.o`, `Modules/_decimal/libmpdec/io.o`, `Modules/_decimal/libmpdec/libmpdec.a`, `Modules/_decimal/libmpdec/mpalloc.o`, `Modules/_decimal/libmpdec/mpdecimal.o`, `Modules/_decimal/libmpdec/numbertheory.o`, `Modules/_decimal/libmpdec/sixstep.o`, `Modules/_decimal/libmpdec/transpose.o`, `Modules/_elementtree.cpython-313-x86_64-linux-gnu.so`, `Modules/_elementtree.o`, `Modules/_functoolsmodule.o`, `Modules/_hacl/Hacl_Hash_MD5.o`, `Modules/_hacl/Hacl_Hash_SHA1.o`, `Modules/_hacl/Hacl_Hash_SHA2.o`, `Modules/_hacl/Hacl_Hash_SHA3.o`, `Modules/_hacl/libHacl_Hash_SHA2.a`, `Modules/_hashlib.cpython-313-x86_64-linux-gnu.so`, `Modules/_hashopenssl.o`, `Modules/_heapq.cpython-313-x86_64-linux-gnu.so`, `Modules/_heapqmodule.o`, `Modules/_interpchannels.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpchannelsmodule.o`, `Modules/_interpqueues.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpqueuesmodule.o`, `Modules/_interpreters.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpretersmodule.o`, `Modules/_io/_iomodule.o`, `Modules/_io/bufferedio.o`, `Modules/_io/bytesio.o`, `Modules/_io/fileio.o`, `Modules/_io/iobase.o`, `Modules/_io/stringio.o`, `Modules/_io/textio.o`, `Modules/_json.cpython-313-x86_64-linux-gnu.so`, `Modules/_json.o`, `Modules/_localemodule.o`, `Modules/_lsprof.cpython-313-x86_64-linux-gnu.so`, `Modules/_lsprof.o`, `Modules/_lzma.cpython-313-x86_64-linux-gnu.so`, `Modules/_lzmamodule.o`, `Modules/_md5.cpython-313-x86_64-linux-gnu.so`, `Modules/_multibytecodec.cpython-313-x86_64-linux-gnu.so`, `Modules/_multiprocessing.cpython-313-x86_64-linux-gnu.so`, `Modules/_multiprocessing/multiprocessing.o`, `Modules/_multiprocessing/posixshmem.o`, `Modules/_multiprocessing/semaphore.o`, `Modules/_opcode.cpython-313-x86_64-linux-gnu.so`, `Modules/_opcode.o`, `Modules/_operator.o`, `Modules/_pickle.cpython-313-x86_64-linux-gnu.so`, `Modules/_pickle.o`, `Modules/_posixshmem.cpython-313-x86_64-linux-gnu.so`, `Modules/_posixsubprocess.cpython-313-x86_64-linux-gnu.so`, `Modules/_posixsubprocess.o`, `Modules/_queue.cpython-313-x86_64-linux-gnu.so`, `Modules/_queuemodule.o`, `Modules/_random.cpython-313-x86_64-linux-gnu.so`, `Modules/_randommodule.o`, `Modules/_sha1.cpython-313-x86_64-linux-gnu.so`, `Modules/_sha2.cpython-313-x86_64-linux-gnu.so`, `Modules/_sha3.cpython-313-x86_64-linux-gnu.so`, `Modules/_socket.cpython-313-x86_64-linux-gnu.so`, `Modules/_sqlite/blob.o`, `Modules/_sqlite/connection.o`, `Modules/_sqlite/cursor.o`, `Modules/_sqlite/microprotocols.o`, `Modules/_sqlite/module.o`, `Modules/_sqlite/prepare_protocol.o`, `Modules/_sqlite/row.o`, `Modules/_sqlite/statement.o`, `Modules/_sqlite/util.o`, `Modules/_sqlite3.cpython-313-x86_64-linux-gnu.so`, `Modules/_sre/sre.o`, `Modules/_ssl.o`, `Modules/_ssl_failed.cpython-313-x86_64-linux-gnu.so`, `Modules/_stat.o`, `Modules/_statistics.cpython-313-x86_64-linux-gnu.so`, `Modules/_statisticsmodule.o`, `Modules/_struct.cpython-313-x86_64-linux-gnu.so`, `Modules/_struct.o`, `Modules/_suggestions.o`, `Modules/_sysconfig.o`, `Modules/_testbuffer.cpython-313-x86_64-linux-gnu.so`, `Modules/_testbuffer.o`, `Modules/_testcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testcapi/abstract.o`, `Modules/_testcapi/buffer.o`, `Modules/_testcapi/bytes.o`, `Modules/_testcapi/code.o`, `Modules/_testcapi/codec.o`, `Modules/_testcapi/complex.o`, `Modules/_testcapi/datetime.o`, `Modules/_testcapi/dict.o`, `Modules/_testcapi/docstring.o`, `Modules/_testcapi/exceptions.o`, `Modules/_testcapi/file.o`, `Modules/_testcapi/float.o`, `Modules/_testcapi/gc.o`, `Modules/_testcapi/getargs.o`, `Modules/_testcapi/hash.o`, `Modules/_testcapi/heaptype.o`, `Modules/_testcapi/immortal.o`, `Modules/_testcapi/list.o`, `Modules/_testcapi/long.o`, `Modules/_testcapi/mem.o`, `Modules/_testcapi/monitoring.o`, `Modules/_testcapi/numbers.o`, `Modules/_testcapi/object.o`, `Modules/_testcapi/pyatomic.o`, `Modules/_testcapi/run.o`, `Modules/_testcapi/set.o`, `Modules/_testcapi/structmember.o`, `Modules/_testcapi/time.o`, `Modules/_testcapi/tuple.o`, `Modules/_testcapi/unicode.o`, `Modules/_testcapi/vectorcall.o`, `Modules/_testcapi/watchers.o`, `Modules/_testcapimodule.o`, `Modules/_testclinic.cpython-313-x86_64-linux-gnu.so`, `Modules/_testclinic.o`, `Modules/_testclinic_limited.cpython-313-x86_64-linux-gnu.so`, `Modules/_testclinic_limited.o`, `Modules/_testexternalinspection.cpython-313-x86_64-linux-gnu.so`, `Modules/_testexternalinspection.o`, `Modules/_testimportmultiple.cpython-313-x86_64-linux-gnu.so`, `Modules/_testimportmultiple.o`, `Modules/_testinternalcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testinternalcapi.o`, `Modules/_testinternalcapi/pytime.o`, `Modules/_testinternalcapi/set.o`, `Modules/_testinternalcapi/test_critical_sections.o`, `Modules/_testinternalcapi/test_lock.o`, `Modules/_testlimitedcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testlimitedcapi.o`, `Modules/_testlimitedcapi/abstract.o`, `Modules/_testlimitedcapi/bytearray.o`, `Modules/_testlimitedcapi/bytes.o`, `Modules/_testlimitedcapi/complex.o`, `Modules/_testlimitedcapi/dict.o`, `Modules/_testlimitedcapi/eval.o`, `Modules/_testlimitedcapi/file.o`, `Modules/_testlimitedcapi/float.o`, `Modules/_testlimitedcapi/heaptype_relative.o`, `Modules/_testlimitedcapi/import.o`, `Modules/_testlimitedcapi/list.o`, `Modules/_testlimitedcapi/long.o`, `Modules/_testlimitedcapi/object.o`, `Modules/_testlimitedcapi/pyos.o`, `Modules/_testlimitedcapi/set.o`, `Modules/_testlimitedcapi/sys.o`, `Modules/_testlimitedcapi/tuple.o`, `Modules/_testlimitedcapi/unicode.o`, `Modules/_testlimitedcapi/vectorcall_limited.o`, `Modules/_testmultiphase.cpython-313-x86_64-linux-gnu.so`, `Modules/_testmultiphase.o`, `Modules/_testsinglephase.cpython-313-x86_64-linux-gnu.so`, `Modules/_testsinglephase.o`, `Modules/_threadmodule.o`, `Modules/_tracemalloc.o`, `Modules/_typingmodule.o`, `Modules/_uuid.cpython-313-x86_64-linux-gnu.so`, `Modules/_uuidmodule.o`, `Modules/_weakref.o`, `Modules/_xxtestfuzz.cpython-313-x86_64-linux-gnu.so`, `Modules/_xxtestfuzz/_xxtestfuzz.o`, `Modules/_xxtestfuzz/fuzzer.o`, `Modules/_zoneinfo.cpython-313-x86_64-linux-gnu.so`, `Modules/_zoneinfo.o`, `Modules/array.cpython-313-x86_64-linux-gnu.so`, `Modules/arraymodule.o`, `Modules/atexitmodule.o`, `Modules/binascii.cpython-313-x86_64-linux-gnu.so`, `Modules/binascii.o`, `Modules/cjkcodecs/_codecs_cn.o`, `Modules/cjkcodecs/_codecs_hk.o`, `Modules/cjkcodecs/_codecs_iso2022.o`, `Modules/cjkcodecs/_codecs_jp.o`, `Modules/cjkcodecs/_codecs_kr.o`, `Modules/cjkcodecs/_codecs_tw.o`, `Modules/cjkcodecs/multibytecodec.o`, `Modules/cmath.cpython-313-x86_64-linux-gnu.so`, `Modules/cmathmodule.o`, `Modules/config.c`, `Modules/config.o`, `Modules/errnomodule.o`, `Modules/expat/libexpat.a`, `Modules/expat/xmlparse.o`, `Modules/expat/xmlrole.o`, `Modules/expat/xmltok.o`, `Modules/faulthandler.o`, `Modules/fcntl.cpython-313-x86_64-linux-gnu.so`, `Modules/fcntlmodule.o`, `Modules/gcmodule.o`, `Modules/getbuildinfo.o`, `Modules/getpath.o`, `Modules/getpath_noop.o`, `Modules/grp.cpython-313-x86_64-linux-gnu.so`, `Modules/grpmodule.o`, `Modules/itertoolsmodule.o`, `Modules/ld_so_aix`, `Modules/main.o`, `Modules/math.cpython-313-x86_64-linux-gnu.so`, `Modules/mathmodule.o`, `Modules/md5module.o`, `Modules/mmap.cpython-313-x86_64-linux-gnu.so`, `Modules/mmapmodule.o`, `Modules/posixmodule.o`, `Modules/pwdmodule.o`, `Modules/pyexpat.cpython-313-x86_64-linux-gnu.so`, `Modules/pyexpat.o`, `Modules/readline.cpython-313-x86_64-linux-gnu.so`, `Modules/readline.o`, `Modules/resource.cpython-313-x86_64-linux-gnu.so`, `Modules/resource.o`, `Modules/rotatingtree.o`, `Modules/select.cpython-313-x86_64-linux-gnu.so`, `Modules/selectmodule.o`, `Modules/sha1module.o`, `Modules/sha2module.o`, `Modules/sha3module.o`, `Modules/signalmodule.o`, `Modules/socketmodule.o`, `Modules/symtablemodule.o`, `Modules/syslog.cpython-313-x86_64-linux-gnu.so`, `Modules/syslogmodule.o`, `Modules/termios.cpython-313-x86_64-linux-gnu.so`, `Modules/termios.o`, `Modules/timemodule.o`, `Modules/unicodedata.cpython-313-x86_64-linux-gnu.so`, `Modules/unicodedata.o`, `Modules/xxlimited.cpython-313-x86_64-linux-gnu.so`, `Modules/xxlimited.o`, `Modules/xxlimited_35.cpython-313-x86_64-linux-gnu.so`, `Modules/xxlimited_35.o`, `Modules/xxsubtype.cpython-313-x86_64-linux-gnu.so`, `Modules/xxsubtype.o`, `Modules/zlib.cpython-313-x86_64-linux-gnu.so`, `Modules/zlibmodule.o`, `Objects/abstract.o`, `Objects/boolobject.o`, `Objects/bytearrayobject.o`, `Objects/bytes_methods.o`, `Objects/bytesobject.o`, `Objects/call.o`, `Objects/capsule.o`, `Objects/cellobject.o`, `Objects/classobject.o`, `Objects/codeobject.o`, `Objects/complexobject.o`, `Objects/descrobject.o`, `Objects/dictobject.o`, `Objects/enumobject.o`, `Objects/exceptions.o`, `Objects/fileobject.o`, `Objects/floatobject.o`, `Objects/frameobject.o`, `Objects/funcobject.o`, `Objects/genericaliasobject.o`, `Objects/genobject.o`, `Objects/iterobject.o`, `Objects/listobject.o`, `Objects/longobject.o`, `Objects/memoryobject.o`, `Objects/methodobject.o`, `Objects/moduleobject.o`, `Objects/namespaceobject.o`, `Objects/object.o`, `Objects/obmalloc.o`, `Objects/odictobject.o`, `Objects/picklebufobject.o`, `Objects/rangeobject.o`, `Objects/setobject.o`, `Objects/sliceobject.o`, `Objects/structseq.o`, `Objects/tupleobject.o`, `Objects/typeobject.o`, `Objects/typevarobject.o`, `Objects/unicodectype.o`, `Objects/unicodeobject.o`, `Objects/unionobject.o`, `Objects/weakrefobject.o`, `Parser/action_helpers.o`, `Parser/lexer/buffer.o`, `Parser/lexer/lexer.o`, `Parser/lexer/state.o`, `Parser/myreadline.o`, `Parser/parser.o`, `Parser/peg_api.o`, `Parser/pegen.o`, `Parser/pegen_errors.o`, `Parser/string_parser.o`, `Parser/token.o`, `Parser/tokenizer/file_tokenizer.o`, `Parser/tokenizer/helpers.o`, `Parser/tokenizer/readline_tokenizer.o`, `Parser/tokenizer/string_tokenizer.o`, `Parser/tokenizer/utf8_tokenizer.o`, `Programs/_bootstrap_python.o`, `Programs/_freeze_module`, `Programs/_freeze_module.o`, `Programs/_testembed`, `Programs/_testembed.o`, `Programs/python.o`, `Python/Python-ast.o`, `Python/Python-tokenize.o`, `Python/_warnings.o`, `Python/asdl.o`, `Python/asm_trampoline.o`, `Python/assemble.o`, `Python/ast.o`, `Python/ast_opt.o`, `Python/ast_unparse.o`, `Python/bltinmodule.o`, `Python/bootstrap_hash.o`, `Python/brc.o`, `Python/ceval.o`, `Python/ceval_gil.o`, `Python/codecs.o`, `Python/compile.o`, `Python/context.o`, `Python/critical_section.o`, `Python/crossinterp.o`, `Python/dtoa.o`, `Python/dynamic_annotations.o`, `Python/dynload_shlib.o`, `Python/errors.o`, `Python/fileutils.o`, `Python/flowgraph.o`, `Python/formatter_unicode.o`, `Python/frame.o`, `Python/frozen.o`, `Python/frozen_modules/__hello__.h`, `Python/frozen_modules/__phello__.h`, `Python/frozen_modules/__phello__.ham.eggs.h`, `Python/frozen_modules/__phello__.ham.h`, `Python/frozen_modules/__phello__.spam.h`, `Python/frozen_modules/_collections_abc.h`, `Python/frozen_modules/_sitebuiltins.h`, `Python/frozen_modules/abc.h`, `Python/frozen_modules/codecs.h`, `Python/frozen_modules/frozen_only.h`, `Python/frozen_modules/genericpath.h`, `Python/frozen_modules/getpath.h`, `Python/frozen_modules/importlib._bootstrap.h`, `Python/frozen_modules/importlib._bootstrap_external.h`, `Python/frozen_modules/importlib.machinery.h`, `Python/frozen_modules/importlib.util.h`, `Python/frozen_modules/io.h`, `Python/frozen_modules/ntpath.h`, `Python/frozen_modules/os.h`, `Python/frozen_modules/posixpath.h`, `Python/frozen_modules/runpy.h`, `Python/frozen_modules/site.h`, `Python/frozen_modules/stat.h`, `Python/frozen_modules/zipimport.h`, `Python/frozenmain.o`, `Python/future.o`, `Python/gc.o`, `Python/gc_free_threading.o`, `Python/gc_gil.o`, `Python/getargs.o`, `Python/getcompiler.o`, `Python/getcopyright.o`, `Python/getopt.o`, `Python/getplatform.o`, `Python/getversion.o`, `Python/hamt.o`, `Python/hashtable.o`, `Python/import.o`, `Python/importdl.o`, `Python/initconfig.o`, `Python/instruction_sequence.o`, `Python/instrumentation.o`, `Python/interpconfig.o`, `Python/intrinsics.o`, `Python/jit.o`, `Python/legacy_tracing.o`, `Python/lock.o`, `Python/marshal.o`, `Python/modsupport.o`, `Python/mysnprintf.o`, `Python/mystrtoul.o`, `Python/object_stack.o`, `Python/optimizer.o`, `Python/optimizer_analysis.o`, `Python/optimizer_symbols.o`, `Python/parking_lot.o`, `Python/pathconfig.o`, `Python/perf_jit_trampoline.o`, `Python/perf_trampoline.o`, `Python/preconfig.o`, `Python/pyarena.o`, `Python/pyctype.o`, `Python/pyfpe.o`, `Python/pyhash.o`, `Python/pylifecycle.o`, `Python/pymath.o`, `Python/pystate.o`, `Python/pystrcmp.o`, `Python/pystrhex.o`, `Python/pystrtod.o`, `Python/pythonrun.o`, `Python/pytime.o`, `Python/qsbr.o`, `Python/specialize.o`, `Python/structmember.o`, `Python/suggestions.o`, `Python/symtable.o`, `Python/sysmodule.o`, `Python/thread.o`, `Python/traceback.o`, `Python/tracemalloc.o`, `_bootstrap_python`, `build/lib.linux-x86_64-3.13/__pycache__/_sysconfigdata__linux_x86_64-linux-gnu.cpython-313.pyc`, `build/lib.linux-x86_64-3.13/_asyncio.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_bisect.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_blake2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_bz2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_cn.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_hk.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_iso2022.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_jp.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_kr.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_tw.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_contextvars.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_csv.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_ctypes.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_ctypes_test.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_curses.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_curses_panel.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_datetime.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_decimal.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_elementtree.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_hashlib.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_heapq.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpchannels.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpqueues.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpreters.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_json.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_lsprof.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_lzma.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_md5.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_multibytecodec.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_multiprocessing.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_opcode.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_pickle.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_posixshmem.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_posixsubprocess.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_queue.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_random.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha1.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha3.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_socket.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sqlite3.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_statistics.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_struct.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sysconfigdata__linux_x86_64-linux-gnu.py`, `build/lib.linux-x86_64-3.13/_testbuffer.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testclinic.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testclinic_limited.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testexternalinspection.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testimportmultiple.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testinternalcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testlimitedcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testmultiphase.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testsinglephase.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_uuid.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_xxtestfuzz.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_zoneinfo.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/array.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/binascii.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/cmath.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/fcntl.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/grp.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/math.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/mmap.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/pyexpat.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/readline.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/resource.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/select.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/syslog.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/termios.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/unicodedata.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxlimited.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxlimited_35.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxsubtype.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/zlib.cpython-313-x86_64-linux-gnu.so`, `build/scripts-3.13/idle3.13`, `build/scripts-3.13/pydoc3.13`, `config.log`, `config.status`, `libpython3.13.a`, `platform`, `pybuilddir.txt`, `pyconfig.h`, `python`, `python-config`, `python-config.py`, `python-gdb.py`.
2. Listed in `## Git Add Paths` but not actually changed: `None`.

## Refinement Pass 1

Subject: No patch: keep supervisord diagnosis clean

## Commit Message
No source change. The review found that the previous validation run left generated build and bytecode artifacts in the workspace. I removed those artifacts so the no-patch diagnosis is represented by an empty source diff.

## Evidence Confidence
inferred

## Issue Connection
Fixer collected a perf/strace `/proc` signal for `/usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf`: repeated `wait4(-1, ..., WNOHANG) = -1 ECHILD` followed by `poll(..., 1000) = 0`, while `/proc` showed the process sleeping in `poll_schedule_timeout.constprop.0`.

The cautious inference is unchanged: this looks like `supervisord` waking once per second to check child processes, not a demonstrated CPython runtime defect. I rechecked the local conventions in the relevant CPython wrappers: `Modules/posixmodule.c` uses `Py_BEGIN_ALLOW_THREADS`, `Py_END_ALLOW_THREADS`, `PyErr_CheckSignals()`, `posix_error()`, and `wait_helper()`, while `Modules/selectmodule.c` uses `_PyDeadline_*` timeout handling. I also checked project guidance; `README.rst` points contributors to the CPython Developer Guide, and no repo-root `CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, or `dev-docs/` guidance was present.

The specific refinement change was cleanup only: I removed the generated build outputs and `__pycache__` files left by validation, addressing the review’s metadata-drift finding. The expected effect is that the final proposal remains a no-patch diagnosis with no generated artifacts or source files staged for an upstream CPython patch.

## Git Add Paths
None

## Validation
Review finding addressed with `make distclean`, then verified cleanup with `git status --short` and `git diff --name-status`; both produced no output.

I did not rerun `./configure && make` after cleanup because no source files changed in this refinement and rerunning it would recreate the generated artifacts the review asked to remove. The prior project-level validation in this workspace was `./configure && make`, which completed with exit code 0 but reported optional module issues: `_dbm`, `_gdbm`, and `_tkinter` missing, and `_ssl` removed after import failed with `undefined symbol: TLSv1_method`.

The prior bounded reproduction attempt, `timeout 6s strace -f -tt -e poll,wait4,waitpid /usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf`, did not reproduce because ptrace was blocked with `Operation not permitted`; `/usr/bin/supervisord` was also absent in this workspace.

## Review Pass 2

RESULT: ok

Workspace is clean after refinement: `git status --short`, `git diff --stat`, and `git diff --name-status` produce no output. The response now matches `## Git Add Paths: None`.

The no-patch diagnosis is appropriate for the evidence level. The author does not leave a speculative CPython source diff from indirect profiler/strace evidence, keeps `## Evidence Confidence` valid as `inferred`, and explains the likely `supervisord` event-loop interpretation without inventing a reproducer.

Validation is acceptable for a no-source-change cleanup refinement: the earlier project-level `./configure && make` result is reported, the ptrace blocker for the bounded reproduction attempt is named, and the cleanup itself was verified without regenerating build artifacts.

diagnosis-only report

report

python3.13 likely remains stuck in a busy-poll loop. A diagnosis report and patch proposal were created locally.

state: readycreated: 2026-05-19 01:42 UTCvalidation: ready
Published session

Prompt

## Plan Pass

You are planning a fixer patch before any edits happen.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. The original pre-edit snapshot is available at `./source` if you need to inspect it. For interpreter processes, plan from the script/application entrypoint evidence first and include the runtime only as a second investigation target unless the evidence proves a runtime bug.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround. Inspect the relevant code, nearby callers, project contribution docs, and local helper/compat APIs, but do not edit files in this pass.

Return a short markdown plan with these exact sections:

## Problem
## Evidence Confidence
## Proposed Subject
## Patch Plan
## Risks
## Validation

Classify `## Evidence Confidence` as exactly one of `reproduced`, `observed`, or `inferred`. Use `inferred` only for a no-patch diagnosis/report plan unless you can name the extra evidence you will collect before editing; inferred source patches are blocked by Fixer because they are not pull-request-ready. For `observed` source-patch plans, plan to say in the final `## Issue Connection` that the failure was observed by Fixer and not independently reproduced. If the plan touches authentication, authorization, credentials, cryptography, sandboxing, permissions, or timing/throttling behavior, treat it as security-sensitive: do not plan a source patch unless validation can reproduce the behavior and analyze the security impact; otherwise plan a no-patch diagnosis/report. The plan must explain how the proposed code change addresses the observed issue evidence, call out any prior Fixer patch that should be improved or replaced, reject awkward control flow such as avoidable `goto` if there is a cleaner bounded alternative, name any local helper APIs or maintainer conventions the patch should follow, and keep the intended maintainer-facing explanation clear enough that someone unfamiliar with the local complaint wording can still follow the fix. In `## Validation`, name the reproducible configure/build/test entrypoint you will try from the workspace root before any focused leaf compile or smoke check, and include one bounded independent reproduction attempt for the collected failure signal when it is safe and cheap. Do not plan to claim `reproduced` unless that reproduction command or test can actually show the failure.

## Patch Pass

You are working on a bounded fixer proposal.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. Produce the smallest reasonable patch for the target repository, keep the change upstreamable, prefer the clearest control flow available, and do not keep avoidable `goto` when a simpler structure would read better. Before introducing new file, process, allocation, locking, networking, or platform APIs, inspect nearby code and project contribution docs for existing helpers or compatibility wrappers and use those local patterns unless you can explain why they do not fit. Validate from a reproducible workspace-root entrypoint before falling back to focused leaf commands; if a build or test cannot run, report the exact command, the exact blocker, and any narrower check you ran instead. During validation, also try one bounded independent reproduction of the collected failure signal when it is safe and cheap, such as a failing test, smoke command, perf/strace comparison, or before/after runtime check. Only use `reproduced` if that command or test actually reproduced the failure; otherwise keep `observed` and report the reproduction blocker. The final explanation must connect the observed issue evidence to the actual code change, not just paraphrase the diff. Write like a maintainer is going to read the patch mail cold: explain the bug in plain language, define subsystem-specific jargon the first time you need it, and make the causal story obvious. Explicitly classify evidence confidence as `reproduced`, `observed`, or `inferred`: `reproduced` means you reproduced the failure locally; `observed` means Fixer has direct crash/log/trace evidence but you did not independently reproduce it; `inferred` means the source patch is not pull-request-ready, so do not leave a source diff unless you first gather stronger observed/reproduced evidence; otherwise return a no-patch diagnosis/report. For any source-changing `observed` patch, say explicitly in `## Issue Connection` that the failure was observed by Fixer and not independently reproduced. Security-sensitive areas such as authentication, authorization, credentials, cryptography, sandboxing, permissions, and timing/throttling behavior need reproduced evidence plus explicit security-impact analysis before leaving a source diff; otherwise return a no-patch diagnosis/report for human review. If you introduce non-obvious state translation, index remapping, or backend split logic, add a short source comment that explains the invariant being preserved.

Start by explaining the likely root cause from the collected perf, strace, and /proc evidence. If you cannot land a safe patch, leave a diagnosis that is strong enough for an upstream bug report.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround. 

Keep the change narrowly scoped and summarize validation clearly.

In every authoring pass, your final response must start with `Subject: <single-line git commit subject>` and then include these markdown sections exactly:

## Commit Message
A short upstream-friendly explanation of what changed and why. Write it in plain language that a maintainer can follow without local complaint context. If you use subsystem jargon, define it immediately.

## Evidence Confidence
Exactly one word: `reproduced`, `observed`, or `inferred`. Use `reproduced` only when you reproduced the failure locally with a command or test, and include that command/test in `## Validation`. Use `observed` when Fixer has direct crash/log/trace evidence but you did not independently reproduce it. If `## Git Add Paths` lists source files for an `observed` patch, `## Issue Connection` must explicitly say the failure was observed by Fixer and not independently reproduced. Security-sensitive source changes touching authentication, authorization, credentials, cryptography, sandboxing, permissions, or timing/throttling behavior require reproduced evidence and explicit security-impact analysis; otherwise list `None` under `## Git Add Paths` and write a no-patch diagnosis/report. Use `inferred` for profiler/strace/indirect evidence; inferred responses may be no-patch diagnoses or reports, but inferred source patches are not pull-request-ready until stronger evidence is gathered.

## Issue Connection
Write this as maintainer-facing patch mail, not as local Fixer notes. Cover four things explicitly in readable sentences: the user-visible symptom or the exact collected signal, the code-level cause or the cautious inference from evidence, the specific change you made, and the expected effect. Do not invent a reproducer, command line, crash, or user-visible failure that is not present in the evidence bundle. If the evidence is direct-but-not-reproduced, say it was observed by Fixer and not independently reproduced. If the evidence is indirect and you did not gather stronger evidence, do not leave a source diff; write a no-patch diagnosis/report instead. Include an explicit effect sentence such as `The expected effect is ...`, `This should reduce ...`, or `This prevents ...` for source patches. If the logic is non-obvious in code, mention that you added a short explanatory comment.

## Git Add Paths
List the repo-relative paths that belong in the final patch, one per line. Use `None` only when you intentionally made no source changes. Include intentionally new files, and do not list generated build artifacts.

## Validation
List the checks you ran, or say clearly that you could not run them. Include the independent reproduction command/test and result when `## Evidence Confidence` is `reproduced`; if reproduction was attempted but blocked, name the exact blocker and keep confidence at `observed` or `inferred`.

Before editing, read the plan at `./plan-output.txt` and follow it unless the code proves part of it wrong. If you change course, say so explicitly in the final write-up instead of silently drifting from the plan.

## Review Pass 1 (local metadata check)

Local metadata consistency check

## Refinement Pass 1

You are refining a fixer patch after an explicit code review.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. Read the latest author response at `./patch-output.txt`. Read the review report at `./review-1-output.txt`. This is refinement round 1. The original pre-edit snapshot is available at `./source` if you need to compare the current patch against it. Re-read the planning pass at `./plan-output.txt` before editing. The workspace currently changes these repo-relative paths: Lib/__pycache__/__future__.cpython-313.pyc, Lib/__pycache__/_collections_abc.cpython-313.pyc, Lib/__pycache__/_colorize.cpython-313.pyc, Lib/__pycache__/_compat_pickle.cpython-313.pyc, Lib/__pycache__/_compression.cpython-313.pyc, Lib/__pycache__/_opcode_metadata.cpython-313.pyc, Lib/__pycache__/_sitebuiltins.cpython-313.pyc, Lib/__pycache__/_weakrefset.cpython-313.pyc, Lib/__pycache__/abc.cpython-313.pyc, Lib/__pycache__/argparse.cpython-313.pyc, Lib/__pycache__/ast.cpython-313.pyc, Lib/__pycache__/bz2.cpython-313.pyc, Lib/__pycache__/codecs.cpython-313.pyc, Lib/__pycache__/contextlib.cpython-313.pyc, Lib/__pycache__/contextvars.cpython-313.pyc, Lib/__pycache__/copy.cpython-313.pyc, Lib/__pycache__/copyreg.cpython-313.pyc, Lib/__pycache__/datetime.cpython-313.pyc, Lib/__pycache__/dis.cpython-313.pyc, Lib/__pycache__/enum.cpython-313.pyc, Lib/__pycache__/fnmatch.cpython-313.pyc, Lib/__pycache__/functools.cpython-313.pyc, Lib/__pycache__/genericpath.cpython-313.pyc, Lib/__pycache__/gettext.cpython-313.pyc, Lib/__pycache__/glob.cpython-313.pyc, Lib/__pycache__/heapq.cpython-313.pyc, Lib/__pycache__/inspect.cpython-313.pyc, Lib/__pycache__/io.cpython-313.pyc, Lib/__pycache__/keyword.cpython-313.pyc, Lib/__pycache__/linecache.cpython-313.pyc, Lib/__pycache__/locale.cpython-313.pyc, Lib/__pycache__/lzma.cpython-313.pyc, Lib/__pycache__/numbers.cpython-313.pyc, Lib/__pycache__/opcode.cpython-313.pyc, Lib/__pycache__/operator.cpython-313.pyc, Lib/__pycache__/os.cpython-313.pyc, Lib/__pycache__/posixpath.cpython-313.pyc, Lib/__pycache__/reprlib.cpython-313.pyc, Lib/__pycache__/selectors.cpython-313.pyc, Lib/__pycache__/shutil.cpython-313.pyc, Lib/__pycache__/signal.cpython-313.pyc, Lib/__pycache__/site.cpython-313.pyc, Lib/__pycache__/socket.cpython-313.pyc, Lib/__pycache__/ssl.cpython-313.pyc, Lib/__pycache__/stat.cpython-313.pyc, Lib/__pycache__/string.cpython-313.pyc, Lib/__pycache__/struct.cpython-313.pyc, Lib/__pycache__/subprocess.cpython-313.pyc, Lib/__pycache__/textwrap.cpython-313.pyc, Lib/__pycache__/threading.cpython-313.pyc, Lib/__pycache__/token.cpython-313.pyc, Lib/__pycache__/tokenize.cpython-313.pyc, Lib/__pycache__/traceback.cpython-313.pyc, Lib/__pycache__/types.cpython-313.pyc, Lib/__pycache__/typing.cpython-313.pyc, Lib/__pycache__/warnings.cpython-313.pyc, Lib/__pycache__/weakref.cpython-313.pyc, Lib/asyncio/__pycache__/__init__.cpython-313.pyc, Lib/asyncio/__pycache__/base_events.cpython-313.pyc, Lib/asyncio/__pycache__/base_futures.cpython-313.pyc, Lib/asyncio/__pycache__/base_subprocess.cpython-313.pyc, Lib/asyncio/__pycache__/base_tasks.cpython-313.pyc, Lib/asyncio/__pycache__/constants.cpython-313.pyc, Lib/asyncio/__pycache__/coroutines.cpython-313.pyc, Lib/asyncio/__pycache__/events.cpython-313.pyc, Lib/asyncio/__pycache__/exceptions.cpython-313.pyc, Lib/asyncio/__pycache__/format_helpers.cpython-313.pyc, Lib/asyncio/__pycache__/futures.cpython-313.pyc, Lib/asyncio/__pycache__/locks.cpython-313.pyc, Lib/asyncio/__pycache__/log.cpython-313.pyc, Lib/asyncio/__pycache__/mixins.cpython-313.pyc, Lib/asyncio/__pycache__/protocols.cpython-313.pyc, Lib/asyncio/__pycache__/queues.cpython-313.pyc, Lib/asyncio/__pycache__/runners.cpython-313.pyc, Lib/asyncio/__pycache__/selector_events.cpython-313.pyc, Lib/asyncio/__pycache__/sslproto.cpython-313.pyc, Lib/asyncio/__pycache__/staggered.cpython-313.pyc, Lib/asyncio/__pycache__/streams.cpython-313.pyc, Lib/asyncio/__pycache__/subprocess.cpython-313.pyc, Lib/asyncio/__pycache__/taskgroups.cpython-313.pyc, Lib/asyncio/__pycache__/tasks.cpython-313.pyc, Lib/asyncio/__pycache__/threads.cpython-313.pyc, Lib/asyncio/__pycache__/timeouts.cpython-313.pyc, Lib/asyncio/__pycache__/transports.cpython-313.pyc, Lib/asyncio/__pycache__/trsock.cpython-313.pyc, Lib/asyncio/__pycache__/unix_events.cpython-313.pyc, Lib/collections/__pycache__/__init__.cpython-313.pyc, Lib/concurrent/__pycache__/__init__.cpython-313.pyc, Lib/concurrent/futures/__pycache__/__init__.cpython-313.pyc, Lib/concurrent/futures/__pycache__/_base.cpython-313.pyc, Lib/encodings/__pycache__/__init__.cpython-313.pyc, Lib/encodings/__pycache__/aliases.cpython-313.pyc, Lib/encodings/__pycache__/ascii.cpython-313.pyc, Lib/encodings/__pycache__/utf_8.cpython-313.pyc, Lib/importlib/__pycache__/__init__.cpython-313.pyc, Lib/importlib/__pycache__/_abc.cpython-313.pyc, Lib/logging/__pycache__/__init__.cpython-313.pyc, Lib/pathlib/__pycache__/__init__.cpython-313.pyc, Lib/pathlib/__pycache__/_abc.cpython-313.pyc, Lib/pathlib/__pycache__/_local.cpython-313.pyc, Lib/re/__pycache__/__init__.cpython-313.pyc, Lib/re/__pycache__/_casefix.cpython-313.pyc, Lib/re/__pycache__/_compiler.cpython-313.pyc, Lib/re/__pycache__/_constants.cpyth

[truncated 29270 bytes]

Response

## Plan Pass

## Problem
Fixer observed `/usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf` with repeated `wait4(-1, ..., WNOHANG) = -1 ECHILD` followed by `poll(..., 1000) = 0`. That pattern looks like the `supervisord` event loop checking for children once per second, not a tight CPython runtime loop. The process state was sleeping and `wchan` was `poll_schedule_timeout.constprop.0`; the unresolved `pthread_attr_destroy` frame is not enough to identify a CPython defect.

## Evidence Confidence
observed

## Proposed Subject
No CPython source patch in this pass. Treat this as an upstream-style no-patch diagnosis unless an independent reproduction shows CPython itself spinning or mishandling `waitpid`/`poll`.

## Patch Plan
1. Do not edit CPython based only on the profiler signal.
2. Document that the application entrypoint is `supervisord`, while CPython is only the interpreter process.
3. If later evidence proves a runtime bug, investigate `Modules/posixmodule.c` and `Modules/selectmodule.c`; relevant local conventions/helpers are `Py_BEGIN_ALLOW_THREADS` / `Py_END_ALLOW_THREADS`, `PyErr_CheckSignals()`, `posix_error()`, `wait_helper()`, and `_PyDeadline_*` timeout handling.
4. No prior Fixer patch is present in this workspace (`git status --short` is clean), so there is nothing to improve or replace.
5. No awkward control-flow change, including avoidable `goto`, should be introduced; current wait/poll wrappers are bounded direct syscall wrappers.

## Risks
A source patch here would likely be speculative and could alter stable `os.waitpid`, `select.poll`, or subprocess semantics without a demonstrated CPython bug. The evidence may be a supervisor configuration/workload issue, or a profiler misclassification of a sleeping once-per-second service loop as runaway CPU.

## Validation
Before reporting only a focused check after any future edit, try the project-level entrypoint from the workspace root: `./configure && make`. If it fails due to missing dependencies or generated files, record the exact failure and then run the narrowest relevant compile/test.

For the independent bounded check, try to reproduce the collected signal at the application entrypoint if available: `timeout 6s strace -f -tt -e poll,wait4,waitpid /usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf`. In this workspace `/usr/bin/supervisord` and the raw investigation files are unavailable, so do not claim reproduced unless that command can actually be run and shows the same behavior. A secondary CPython sanity check can confirm `os.waitpid(-1, os.WNOHANG)` raises `ChildProcessError`/`ECHILD` without a runtime loop.

## Patch Pass

Subject: No patch: diagnose supervisord poll trace

## Commit Message
No source change. The collected evidence points to a `supervisord` event loop running under CPython, not to a demonstrated CPython wait or poll bug. CPython’s local wait/poll wrappers already use the expected syscall conventions and signal-handling helpers.

## Evidence Confidence
inferred

## Issue Connection
Fixer collected a perf/strace `/proc` signal for `/usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf`: repeated `wait4(-1, ..., WNOHANG) = -1 ECHILD` followed by `poll(..., 1000) = 0`, with `/proc` showing the process sleeping in `poll_schedule_timeout.constprop.0`.

The cautious code-level inference is that this is `supervisord` waking once per second to check for child processes, not a tight CPython busy loop. The CPython wait wrappers in `Modules/posixmodule.c` use `Py_BEGIN_ALLOW_THREADS`, `Py_END_ALLOW_THREADS`, `PyErr_CheckSignals()`, `posix_error()`, and `wait_helper()`. The poll wrapper in `Modules/selectmodule.c` uses `_PyDeadline_*` timeout handling and signal retry logic. `Lib/subprocess.py` also protects waitpid calls with `_waitpid_lock`. No relevant local helper was missing.

I followed the saved plan and made no source change because the evidence is not pull-request-ready for a CPython runtime patch. The expected effect is to avoid an upstream patch that would change stable wait/poll semantics without a reproduced CPython defect.

## Git Add Paths
None

## Validation
`./configure && make` from the workspace root completed with exit code 0. The build reported optional module issues: `_dbm`, `_gdbm`, and `_tkinter` missing, and `_ssl` was built then removed because importing it failed with `undefined symbol: TLSv1_method`.

Independent reproduction attempt: `timeout 6s strace -f -tt -e poll,wait4,waitpid /usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf` did not reproduce; it was blocked by ptrace restrictions: `PTRACE_TRACEME: Operation not permitted` and `ptrace(PTRACE_SEIZE, 5): Operation not permitted`. `/usr/bin/supervisord` is also absent in this workspace.

Focused CPython sanity check: `./python` running `os.waitpid(-1, os.WNOHANG)` returned `ChildProcessError` errno `10` in about `0.000004s`, with no loop. `git diff --name-only` is empty; no tracked source files were changed.

## Review Pass 1 (local metadata check)

RESULT: fix-needed

## Findings
1. Patch metadata drift: the workspace currently changes `Lib/__pycache__/__future__.cpython-313.pyc`, `Lib/__pycache__/_collections_abc.cpython-313.pyc`, `Lib/__pycache__/_colorize.cpython-313.pyc`, `Lib/__pycache__/_compat_pickle.cpython-313.pyc`, `Lib/__pycache__/_compression.cpython-313.pyc`, `Lib/__pycache__/_opcode_metadata.cpython-313.pyc`, `Lib/__pycache__/_sitebuiltins.cpython-313.pyc`, `Lib/__pycache__/_weakrefset.cpython-313.pyc`, `Lib/__pycache__/abc.cpython-313.pyc`, `Lib/__pycache__/argparse.cpython-313.pyc`, `Lib/__pycache__/ast.cpython-313.pyc`, `Lib/__pycache__/bz2.cpython-313.pyc`, `Lib/__pycache__/codecs.cpython-313.pyc`, `Lib/__pycache__/contextlib.cpython-313.pyc`, `Lib/__pycache__/contextvars.cpython-313.pyc`, `Lib/__pycache__/copy.cpython-313.pyc`, `Lib/__pycache__/copyreg.cpython-313.pyc`, `Lib/__pycache__/datetime.cpython-313.pyc`, `Lib/__pycache__/dis.cpython-313.pyc`, `Lib/__pycache__/enum.cpython-313.pyc`, `Lib/__pycache__/fnmatch.cpython-313.pyc`, `Lib/__pycache__/functools.cpython-313.pyc`, `Lib/__pycache__/genericpath.cpython-313.pyc`, `Lib/__pycache__/gettext.cpython-313.pyc`, `Lib/__pycache__/glob.cpython-313.pyc`, `Lib/__pycache__/heapq.cpython-313.pyc`, `Lib/__pycache__/inspect.cpython-313.pyc`, `Lib/__pycache__/io.cpython-313.pyc`, `Lib/__pycache__/keyword.cpython-313.pyc`, `Lib/__pycache__/linecache.cpython-313.pyc`, `Lib/__pycache__/locale.cpython-313.pyc`, `Lib/__pycache__/lzma.cpython-313.pyc`, `Lib/__pycache__/numbers.cpython-313.pyc`, `Lib/__pycache__/opcode.cpython-313.pyc`, `Lib/__pycache__/operator.cpython-313.pyc`, `Lib/__pycache__/os.cpython-313.pyc`, `Lib/__pycache__/posixpath.cpython-313.pyc`, `Lib/__pycache__/reprlib.cpython-313.pyc`, `Lib/__pycache__/selectors.cpython-313.pyc`, `Lib/__pycache__/shutil.cpython-313.pyc`, `Lib/__pycache__/signal.cpython-313.pyc`, `Lib/__pycache__/site.cpython-313.pyc`, `Lib/__pycache__/socket.cpython-313.pyc`, `Lib/__pycache__/ssl.cpython-313.pyc`, `Lib/__pycache__/stat.cpython-313.pyc`, `Lib/__pycache__/string.cpython-313.pyc`, `Lib/__pycache__/struct.cpython-313.pyc`, `Lib/__pycache__/subprocess.cpython-313.pyc`, `Lib/__pycache__/textwrap.cpython-313.pyc`, `Lib/__pycache__/threading.cpython-313.pyc`, `Lib/__pycache__/token.cpython-313.pyc`, `Lib/__pycache__/tokenize.cpython-313.pyc`, `Lib/__pycache__/traceback.cpython-313.pyc`, `Lib/__pycache__/types.cpython-313.pyc`, `Lib/__pycache__/typing.cpython-313.pyc`, `Lib/__pycache__/warnings.cpython-313.pyc`, `Lib/__pycache__/weakref.cpython-313.pyc`, `Lib/asyncio/__pycache__/__init__.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_events.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_futures.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_subprocess.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_tasks.cpython-313.pyc`, `Lib/asyncio/__pycache__/constants.cpython-313.pyc`, `Lib/asyncio/__pycache__/coroutines.cpython-313.pyc`, `Lib/asyncio/__pycache__/events.cpython-313.pyc`, `Lib/asyncio/__pycache__/exceptions.cpython-313.pyc`, `Lib/asyncio/__pycache__/format_helpers.cpython-313.pyc`, `Lib/asyncio/__pycache__/futures.cpython-313.pyc`, `Lib/asyncio/__pycache__/locks.cpython-313.pyc`, `Lib/asyncio/__pycache__/log.cpython-313.pyc`, `Lib/asyncio/__pycache__/mixins.cpython-313.pyc`, `Lib/asyncio/__pycache__/protocols.cpython-313.pyc`, `Lib/asyncio/__pycache__/queues.cpython-313.pyc`, `Lib/asyncio/__pycache__/runners.cpython-313.pyc`, `Lib/asyncio/__pycache__/selector_events.cpython-313.pyc`, `Lib/asyncio/__pycache__/sslproto.cpython-313.pyc`, `Lib/asyncio/__pycache__/staggered.cpython-313.pyc`, `Lib/asyncio/__pycache__/streams.cpython-313.pyc`, `Lib/asyncio/__pycache__/subprocess.cpython-313.pyc`, `Lib/asyncio/__pycache__/taskgroups.cpython-313.pyc`, `Lib/asyncio/__pycache__/tasks.cpython-313.pyc`, `Lib/asyncio/__pycache__/threads.cpython-313.pyc`, `Lib/asyncio/__pycache__/timeouts.cpython-313.pyc`, `Lib/asyncio/__pycache__/transports.cpython-313.pyc`, `Lib/asyncio/__pycache__/trsock.cpython-313.pyc`, `Lib/asyncio/__pycache__/unix_events.cpython-313.pyc`, `Lib/collections/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/futures/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/futures/__pycache__/_base.cpython-313.pyc`, `Lib/encodings/__pycache__/__init__.cpython-313.pyc`, `Lib/encodings/__pycache__/aliases.cpython-313.pyc`, `Lib/encodings/__pycache__/ascii.cpython-313.pyc`, `Lib/encodings/__pycache__/utf_8.cpython-313.pyc`, `Lib/importlib/__pycache__/__init__.cpython-313.pyc`, `Lib/importlib/__pycache__/_abc.cpython-313.pyc`, `Lib/logging/__pycache__/__init__.cpython-313.pyc`, `Lib/pathlib/__pycache__/__init__.cpython-313.pyc`, `Lib/pathlib/__pycache__/_abc.cpython-313.pyc`, `Lib/pathlib/__pycache__/_local.cpython-313.pyc`, `Lib/re/__pycache__/__init__.cpython-313.pyc`, `Lib/re/__pycache__/_casefix.cpython-313.pyc`, `Lib/re/__pycache__/_compiler.cpython-313.pyc`, `Lib/re/__pycache__/_constants.cpython-313.pyc`, `Lib/re/__pycache__/_parser.cpython-313.pyc`, `Lib/sysconfig/__pycache__/__init__.cpython-313.pyc`, `Lib/sysconfig/__pycache__/__main__.cpython-313.pyc`, `Lib/xml/__pycache__/__init__.cpython-313.pyc`, `Lib/xml/etree/__pycache__/ElementPath.cpython-313.pyc`, `Lib/xml/etree/__pycache__/__init__.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/__init__.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/_common.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/_tzpath.cpython-313.pyc`, `Makefile`, `Makefile.pre`, `Misc/python-config.sh`, `Misc/python-embed.pc`, `Misc/python.pc`, `Modules/Setup.bootstrap`, `Modules/Setup.local`, `Modules/Setup.stdlib`, `Modules/_abc.o`, `Modules/_asyncio.cpython-313-x86_64-linux-gnu.so`, `Modules/_asynciomodule.o`, `Modules/_bisect.cpython-313-x86_64-linux-gnu.so`, `Modules/_bisectmodule.o`, `Modules/_blake2.cpython-313-x86_64-linux-gnu.so`, `Modules/_blake2/blake2b_impl.o`, `Modules/_blake2/blake2module.o`, `Modules/_blake2/blake2s_impl.o`, `Modules/_bz2.cpython-313-x86_64-linux-gnu.so`, `Modules/_bz2module.o`, `Modules/_codecs_cn.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_hk.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_iso2022.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_jp.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_kr.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_tw.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecsmodule.o`, `Modules/_collectionsmodule.o`, `Modules/_contextvars.cpython-313-x86_64-linux-gnu.so`, `Modules/_contextvarsmodule.o`, `Modules/_csv.cpython-313-x86_64-linux-gnu.so`, `Modules/_csv.o`, `Modules/_ctypes.cpython-313-x86_64-linux-gnu.so`, `Modules/_ctypes/_ctypes.o`, `Modules/_ctypes/_ctypes_test.o`, `Modules/_ctypes/callbacks.o`, `Modules/_ctypes/callproc.o`, `Modules/_ctypes/cfield.o`, `Modules/_ctypes/stgdict.o`, `Modules/_ctypes_test.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses_panel.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses_panel.o`, `Modules/_cursesmodule.o`, `Modules/_datetime.cpython-313-x86_64-linux-gnu.so`, `Modules/_datetimemodule.o`, `Modules/_decimal.cpython-313-x86_64-linux-gnu.so`, `Modules/_decimal/_decimal.o`, `Modules/_decimal/libmpdec/basearith.o`, `Modules/_decimal/libmpdec/constants.o`, `Modules/_decimal/libmpdec/context.o`, `Modules/_decimal/libmpdec/convolute.o`, `Modules/_decimal/libmpdec/crt.o`, `Modules/_decimal/libmpdec/difradix2.o`, `Modules/_decimal/libmpdec/fnt.o`, `Modules/_decimal/libmpdec/fourstep.o`, `Modules/_decimal/libmpdec/io.o`, `Modules/_decimal/libmpdec/libmpdec.a`, `Modules/_decimal/libmpdec/mpalloc.o`, `Modules/_decimal/libmpdec/mpdecimal.o`, `Modules/_decimal/libmpdec/numbertheory.o`, `Modules/_decimal/libmpdec/sixstep.o`, `Modules/_decimal/libmpdec/transpose.o`, `Modules/_elementtree.cpython-313-x86_64-linux-gnu.so`, `Modules/_elementtree.o`, `Modules/_functoolsmodule.o`, `Modules/_hacl/Hacl_Hash_MD5.o`, `Modules/_hacl/Hacl_Hash_SHA1.o`, `Modules/_hacl/Hacl_Hash_SHA2.o`, `Modules/_hacl/Hacl_Hash_SHA3.o`, `Modules/_hacl/libHacl_Hash_SHA2.a`, `Modules/_hashlib.cpython-313-x86_64-linux-gnu.so`, `Modules/_hashopenssl.o`, `Modules/_heapq.cpython-313-x86_64-linux-gnu.so`, `Modules/_heapqmodule.o`, `Modules/_interpchannels.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpchannelsmodule.o`, `Modules/_interpqueues.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpqueuesmodule.o`, `Modules/_interpreters.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpretersmodule.o`, `Modules/_io/_iomodule.o`, `Modules/_io/bufferedio.o`, `Modules/_io/bytesio.o`, `Modules/_io/fileio.o`, `Modules/_io/iobase.o`, `Modules/_io/stringio.o`, `Modules/_io/textio.o`, `Modules/_json.cpython-313-x86_64-linux-gnu.so`, `Modules/_json.o`, `Modules/_localemodule.o`, `Modules/_lsprof.cpython-313-x86_64-linux-gnu.so`, `Modules/_lsprof.o`, `Modules/_lzma.cpython-313-x86_64-linux-gnu.so`, `Modules/_lzmamodule.o`, `Modules/_md5.cpython-313-x86_64-linux-gnu.so`, `Modules/_multibytecodec.cpython-313-x86_64-linux-gnu.so`, `Modules/_multiprocessing.cpython-313-x86_64-linux-gnu.so`, `Modules/_multiprocessing/multiprocessing.o`, `Modules/_multiprocessing/posixshmem.o`, `Modules/_multiprocessing/semaphore.o`, `Modules/_opcode.cpython-313-x86_64-linux-gnu.so`, `Modules/_opcode.o`, `Modules/_operator.o`, `Modules/_pickle.cpython-313-x86_64-linux-gnu.so`, `Modules/_pickle.o`, `Modules/_posixshmem.cpython-313-x86_64-linux-gnu.so`, `Modules/_posixsubprocess.cpython-313-x86_64-linux-gnu.so`, `Modules/_posixsubprocess.o`, `Modules/_queue.cpython-313-x86_64-linux-gnu.so`, `Modules/_queuemodule.o`, `Modules/_random.cpython-313-x86_64-linux-gnu.so`, `Modules/_randommodule.o`, `Modules/_sha1.cpython-313-x86_64-linux-gnu.so`, `Modules/_sha2.cpython-313-x86_64-linux-gnu.so`, `Modules/_sha3.cpython-313-x86_64-linux-gnu.so`, `Modules/_socket.cpython-313-x86_64-linux-gnu.so`, `Modules/_sqlite/blob.o`, `Modules/_sqlite/connection.o`, `Modules/_sqlite/cursor.o`, `Modules/_sqlite/microprotocols.o`, `Modules/_sqlite/module.o`, `Modules/_sqlite/prepare_protocol.o`, `Modules/_sqlite/row.o`, `Modules/_sqlite/statement.o`, `Modules/_sqlite/util.o`, `Modules/_sqlite3.cpython-313-x86_64-linux-gnu.so`, `Modules/_sre/sre.o`, `Modules/_ssl.o`, `Modules/_ssl_failed.cpython-313-x86_64-linux-gnu.so`, `Modules/_stat.o`, `Modules/_statistics.cpython-313-x86_64-linux-gnu.so`, `Modules/_statisticsmodule.o`, `Modules/_struct.cpython-313-x86_64-linux-gnu.so`, `Modules/_struct.o`, `Modules/_suggestions.o`, `Modules/_sysconfig.o`, `Modules/_testbuffer.cpython-313-x86_64-linux-gnu.so`, `Modules/_testbuffer.o`, `Modules/_testcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testcapi/abstract.o`, `Modules/_testcapi/buffer.o`, `Modules/_testcapi/bytes.o`, `Modules/_testcapi/code.o`, `Modules/_testcapi/codec.o`, `Modules/_testcapi/complex.o`, `Modules/_testcapi/datetime.o`, `Modules/_testcapi/dict.o`, `Modules/_testcapi/docstring.o`, `Modules/_testcapi/exceptions.o`, `Modules/_testcapi/file.o`, `Modules/_testcapi/float.o`, `Modules/_testcapi/gc.o`, `Modules/_testcapi/getargs.o`, `Modules/_testcapi/hash.o`, `Modules/_testcapi/heaptype.o`, `Modules/_testcapi/immortal.o`, `Modules/_testcapi/list.o`, `Modules/_testcapi/long.o`, `Modules/_testcapi/mem.o`, `Modules/_testcapi/monitoring.o`, `Modules/_testcapi/numbers.o`, `Modules/_testcapi/object.o`, `Modules/_testcapi/pyatomic.o`, `Modules/_testcapi/run.o`, `Modules/_testcapi/set.o`, `Modules/_testcapi/structmember.o`, `Modules/_testcapi/time.o`, `Modules/_testcapi/tuple.o`, `Modules/_testcapi/unicode.o`, `Modules/_testcapi/vectorcall.o`, `Modules/_testcapi/watchers.o`, `Modules/_testcapimodule.o`, `Modules/_testclinic.cpython-313-x86_64-linux-gnu.so`, `Modules/_testclinic.o`, `Modules/_testclinic_limited.cpython-313-x86_64-linux-gnu.so`, `Modules/_testclinic_limited.o`, `Modules/_testexternalinspection.cpython-313-x86_64-linux-gnu.so`, `Modules/_testexternalinspection.o`, `Modules/_testimportmultiple.cpython-313-x86_64-linux-gnu.so`, `Modules/_testimportmultiple.o`, `Modules/_testinternalcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testinternalcapi.o`, `Modules/_testinternalcapi/pytime.o`, `Modules/_testinternalcapi/set.o`, `Modules/_testinternalcapi/test_critical_sections.o`, `Modules/_testinternalcapi/test_lock.o`, `Modules/_testlimitedcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testlimitedcapi.o`, `Modules/_testlimitedcapi/abstract.o`, `Modules/_testlimitedcapi/bytearray.o`, `Modules/_testlimitedcapi/bytes.o`, `Modules/_testlimitedcapi/complex.o`, `Modules/_testlimitedcapi/dict.o`, `Modules/_testlimitedcapi/eval.o`, `Modules/_testlimitedcapi/file.o`, `Modules/_testlimitedcapi/float.o`, `Modules/_testlimitedcapi/heaptype_relative.o`, `Modules/_testlimitedcapi/import.o`, `Modules/_testlimitedcapi/list.o`, `Modules/_testlimitedcapi/long.o`, `Modules/_testlimitedcapi/object.o`, `Modules/_testlimitedcapi/pyos.o`, `Modules/_testlimitedcapi/set.o`, `Modules/_testlimitedcapi/sys.o`, `Modules/_testlimitedcapi/tuple.o`, `Modules/_testlimitedcapi/unicode.o`, `Modules/_testlimitedcapi/vectorcall_limited.o`, `Modules/_testmultiphase.cpython-313-x86_64-linux-gnu.so`, `Modules/_testmultiphase.o`, `Modules/_testsinglephase.cpython-313-x86_64-linux-gnu.so`, `Modules/_testsinglephase.o`, `Modules/_threadmodule.o`, `Modules/_tracemalloc.o`, `Modules/_typingmodule.o`, `Modules/_uuid.cpython-313-x86_64-linux-gnu.so`, `Modules/_uuidmodule.o`, `Modules/_weakref.o`, `Modules/_xxtestfuzz.cpython-313-x86_64-linux-gnu.so`, `Modules/_xxtestfuzz/_xxtestfuzz.o`, `Modules/_xxtestfuzz/fuzzer.o`, `Modules/_zoneinfo.cpython-313-x86_64-linux-gnu.so`, `Modules/_zoneinfo.o`, `Modules/array.cpython-313-x86_64-linux-gnu.so`, `Modules/arraymodule.o`, `Modules/atexitmodule.o`, `Modules/binascii.cpython-313-x86_64-linux-gnu.so`, `Modules/binascii.o`, `Modules/cjkcodecs/_codecs_cn.o`, `Modules/cjkcodecs/_codecs_hk.o`, `Modules/cjkcodecs/_codecs_iso2022.o`, `Modules/cjkcodecs/_codecs_jp.o`, `Modules/cjkcodecs/_codecs_kr.o`, `Modules/cjkcodecs/_codecs_tw.o`, `Modules/cjkcodecs/multibytecodec.o`, `Modules/cmath.cpython-313-x86_64-linux-gnu.so`, `Modules/cmathmodule.o`, `Modules/config.c`, `Modules/config.o`, `Modules/errnomodule.o`, `Modules/expat/libexpat.a`, `Modules/expat/xmlparse.o`, `Modules/expat/xmlrole.o`, `Modules/expat/xmltok.o`, `Modules/faulthandler.o`, `Modules/fcntl.cpython-313-x86_64-linux-gnu.so`, `Modules/fcntlmodule.o`, `Modules/gcmodule.o`, `Modules/getbuildinfo.o`, `Modules/getpath.o`, `Modules/getpath_noop.o`, `Modules/grp.cpython-313-x86_64-linux-gnu.so`, `Modules/grpmodule.o`, `Modules/itertoolsmodule.o`, `Modules/ld_so_aix`, `Modules/main.o`, `Modules/math.cpython-313-x86_64-linux-gnu.so`, `Modules/mathmodule.o`, `Modules/md5module.o`, `Modules/mmap.cpython-313-x86_64-linux-gnu.so`, `Modules/mmapmodule.o`, `Modules/posixmodule.o`, `Modules/pwdmodule.o`, `Modules/pyexpat.cpython-313-x86_64-linux-gnu.so`, `Modules/pyexpat.o`, `Modules/readline.cpython-313-x86_64-linux-gnu.so`, `Modules/readline.o`, `Modules/resource.cpython-313-x86_64-linux-gnu.so`, `Modules/resource.o`, `Modules/rotatingtree.o`, `Modules/select.cpython-313-x86_64-linux-gnu.so`, `Modules/selectmodule.o`, `Modules/sha1module.o`, `Modules/sha2module.o`, `Modules/sha3module.o`, `Modules/signalmodule.o`, `Modules/socketmodule.o`, `Modules/symtablemodule.o`, `Modules/syslog.cpython-313-x86_64-linux-gnu.so`, `Modules/syslogmodule.o`, `Modules/termios.cpython-313-x86_64-linux-gnu.so`, `Modules/termios.o`, `Modules/timemodule.o`, `Modules/unicodedata.cpython-313-x86_64-linux-gnu.so`, `Modules/unicodedata.o`, `Modules/xxlimited.cpython-313-x86_64-linux-gnu.so`, `Modules/xxlimited.o`, `Modules/xxlimited_35.cpython-313-x86_64-linux-gnu.so`, `Modules/xxlimited_35.o`, `Modules/xxsubtype.cpython-313-x86_64-linux-gnu.so`, `Modules/xxsubtype.o`, `Modules/zlib.cpython-313-x86_64-linux-gnu.so`, `Modules/zlibmodule.o`, `Objects/abstract.o`, `Objects/boolobject.o`, `Objects/bytearrayobject.o`, `Objects/bytes_methods.o`, `Objects/bytesobject.o`, `Objects/call.o`, `Objects/capsule.o`, `Objects/cellobject.o`, `Objects/classobject.o`, `Objects/codeobject.o`, `Objects/complexobject.o`, `Objects/descrobject.o`, `Objects/dictobject.o`, `Objects/enumobject.o`, `Objects/exceptions.o`, `Objects/fileobject.o`, `Objects/floatobject.o`, `Objects/frameobject.o`, `Objects/funcobject.o`, `Objects/genericaliasobject.o`, `Objects/genobject.o`, `Objects/iterobject.o`, `Objects/listobject.o`, `Objects/longobject.o`, `Objects/memoryobject.o`, `Objects/methodobject.o`, `Objects/moduleobject.o`, `Objects/namespaceobject.o`, `Objects/object.o`, `Objects/obmalloc.o`, `Objects/odictobject.o`, `Objects/picklebufobject.o`, `Objects/rangeobject.o`, `Objects/setobject.o`, `Objects/sliceobject.o`, `Objects/structseq.o`, `Objects/tupleobject.o`, `Objects/typeobject.o`, `Objects/typevarobject.o`, `Objects/unicodectype.o`, `Objects/unicodeobject.o`, `Objects/unionobject.o`, `Objects/weakrefobject.o`, `Parser/action_helpers.o`, `Parser/lexer/buffer.o`, `Parser/lexer/lexer.o`, `Parser/lexer/state.o`, `Parser/myreadline.o`, `Parser/parser.o`, `Parser/peg_api.o`, `Parser/pegen.o`, `Parser/pegen_errors.o`, `Parser/string_parser.o`, `Parser/token.o`, `Parser/tokenizer/file_tokenizer.o`, `Parser/tokenizer/helpers.o`, `Parser/tokenizer/readline_tokenizer.o`, `Parser/tokenizer/string_tokenizer.o`, `Parser/tokenizer/utf8_tokenizer.o`, `Programs/_bootstrap_python.o`, `Programs/_freeze_module`, `Programs/_freeze_module.o`, `Programs/_testembed`, `Programs/_testembed.o`, `Programs/python.o`, `Python/Python-ast.o`, `Python/Python-tokenize.o`, `Python/_warnings.o`, `Python/asdl.o`, `Python/asm_trampoline.o`, `Python/assemble.o`, `Python/ast.o`, `Python/ast_opt.o`, `Python/ast_unparse.o`, `Python/bltinmodule.o`, `Python/bootstrap_hash.o`, `Python/brc.o`, `Python/ceval.o`, `Python/ceval_gil.o`, `Python/codecs.o`, `Python/compile.o`, `Python/context.o`, `Python/critical_section.o`, `Python/crossinterp.o`, `Python/dtoa.o`, `Python/dynamic_annotations.o`, `Python/dynload_shlib.o`, `Python/errors.o`, `Python/fileutils.o`, `Python/flowgraph.o`, `Python/formatter_unicode.o`, `Python/frame.o`, `Python/frozen.o`, `Python/frozen_modules/__hello__.h`, `Python/frozen_modules/__phello__.h`, `Python/frozen_modules/__phello__.ham.eggs.h`, `Python/frozen_modules/__phello__.ham.h`, `Python/frozen_modules/__phello__.spam.h`, `Python/frozen_modules/_collections_abc.h`, `Python/frozen_modules/_sitebuiltins.h`, `Python/frozen_modules/abc.h`, `Python/frozen_modules/codecs.h`, `Python/frozen_modules/frozen_only.h`, `Python/frozen_modules/genericpath.h`, `Python/frozen_modules/getpath.h`, `Python/frozen_modules/importlib._bootstrap.h`, `Python/frozen_modules/importlib._bootstrap_external.h`, `Python/frozen_modules/importlib.machinery.h`, `Python/frozen_modules/importlib.util.h`, `Python/frozen_modules/io.h`, `Python/frozen_modules/ntpath.h`, `Python/frozen_modules/os.h`, `Python/frozen_modules/posixpath.h`, `Python/frozen_modules/runpy.h`, `Python/frozen_modules/site.h`, `Python/frozen_modules/stat.h`, `Python/frozen_modules/zipimport.h`, `Python/frozenmain.o`, `Python/future.o`, `Python/gc.o`, `Python/gc_free_threading.o`, `Python/gc_gil.o`, `Python/getargs.o`, `Python/getcompiler.o`, `Python/getcopyright.o`, `Python/getopt.o`, `Python/getplatform.o`, `Python/getversion.o`, `Python/hamt.o`, `Python/hashtable.o`, `Python/import.o`, `Python/importdl.o`, `Python/initconfig.o`, `Python/instruction_sequence.o`, `Python/instrumentation.o`, `Python/interpconfig.o`, `Python/intrinsics.o`, `Python/jit.o`, `Python/legacy_tracing.o`, `Python/lock.o`, `Python/marshal.o`, `Python/modsupport.o`, `Python/mysnprintf.o`, `Python/mystrtoul.o`, `Python/object_stack.o`, `Python/optimizer.o`, `Python/optimizer_analysis.o`, `Python/optimizer_symbols.o`, `Python/parking_lot.o`, `Python/pathconfig.o`, `Python/perf_jit_trampoline.o`, `Python/perf_trampoline.o`, `Python/preconfig.o`, `Python/pyarena.o`, `Python/pyctype.o`, `Python/pyfpe.o`, `Python/pyhash.o`, `Python/pylifecycle.o`, `Python/pymath.o`, `Python/pystate.o`, `Python/pystrcmp.o`, `Python/pystrhex.o`, `Python/pystrtod.o`, `Python/pythonrun.o`, `Python/pytime.o`, `Python/qsbr.o`, `Python/specialize.o`, `Python/structmember.o`, `Python/suggestions.o`, `Python/symtable.o`, `Python/sysmodule.o`, `Python/thread.o`, `Python/traceback.o`, `Python/tracemalloc.o`, `_bootstrap_python`, `build/lib.linux-x86_64-3.13/__pycache__/_sysconfigdata__linux_x86_64-linux-gnu.cpython-313.pyc`, `build/lib.linux-x86_64-3.13/_asyncio.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_bisect.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_blake2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_bz2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_cn.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_hk.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_iso2022.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_jp.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_kr.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_tw.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_contextvars.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_csv.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_ctypes.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_ctypes_test.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_curses.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_curses_panel.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_datetime.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_decimal.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_elementtree.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_hashlib.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_heapq.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpchannels.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpqueues.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpreters.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_json.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_lsprof.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_lzma.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_md5.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_multibytecodec.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_multiprocessing.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_opcode.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_pickle.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_posixshmem.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_posixsubprocess.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_queue.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_random.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha1.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha3.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_socket.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sqlite3.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_statistics.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_struct.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sysconfigdata__linux_x86_64-linux-gnu.py`, `build/lib.linux-x86_64-3.13/_testbuffer.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testclinic.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testclinic_limited.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testexternalinspection.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testimportmultiple.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testinternalcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testlimitedcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testmultiphase.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testsinglephase.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_uuid.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_xxtestfuzz.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_zoneinfo.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/array.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/binascii.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/cmath.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/fcntl.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/grp.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/math.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/mmap.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/pyexpat.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/readline.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/resource.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/select.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/syslog.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/termios.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/unicodedata.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxlimited.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxlimited_35.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxsubtype.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/zlib.cpython-313-x86_64-linux-gnu.so`, `build/scripts-3.13/idle3.13`, `build/scripts-3.13/pydoc3.13`, `config.log`, `config.status`, `libpython3.13.a`, `platform`, `pybuilddir.txt`, `pyconfig.h`, `python`, `python-config`, `python-config.py`, `python-gdb.py`, but `## Git Add Paths` lists `None`. Update `## Git Add Paths` to match the real shipped file set exactly, and make sure `## Issue Connection` explains every functional file that remains in the patch.
2. Missing from `## Git Add Paths`: `Lib/__pycache__/__future__.cpython-313.pyc`, `Lib/__pycache__/_collections_abc.cpython-313.pyc`, `Lib/__pycache__/_colorize.cpython-313.pyc`, `Lib/__pycache__/_compat_pickle.cpython-313.pyc`, `Lib/__pycache__/_compression.cpython-313.pyc`, `Lib/__pycache__/_opcode_metadata.cpython-313.pyc`, `Lib/__pycache__/_sitebuiltins.cpython-313.pyc`, `Lib/__pycache__/_weakrefset.cpython-313.pyc`, `Lib/__pycache__/abc.cpython-313.pyc`, `Lib/__pycache__/argparse.cpython-313.pyc`, `Lib/__pycache__/ast.cpython-313.pyc`, `Lib/__pycache__/bz2.cpython-313.pyc`, `Lib/__pycache__/codecs.cpython-313.pyc`, `Lib/__pycache__/contextlib.cpython-313.pyc`, `Lib/__pycache__/contextvars.cpython-313.pyc`, `Lib/__pycache__/copy.cpython-313.pyc`, `Lib/__pycache__/copyreg.cpython-313.pyc`, `Lib/__pycache__/datetime.cpython-313.pyc`, `Lib/__pycache__/dis.cpython-313.pyc`, `Lib/__pycache__/enum.cpython-313.pyc`, `Lib/__pycache__/fnmatch.cpython-313.pyc`, `Lib/__pycache__/functools.cpython-313.pyc`, `Lib/__pycache__/genericpath.cpython-313.pyc`, `Lib/__pycache__/gettext.cpython-313.pyc`, `Lib/__pycache__/glob.cpython-313.pyc`, `Lib/__pycache__/heapq.cpython-313.pyc`, `Lib/__pycache__/inspect.cpython-313.pyc`, `Lib/__pycache__/io.cpython-313.pyc`, `Lib/__pycache__/keyword.cpython-313.pyc`, `Lib/__pycache__/linecache.cpython-313.pyc`, `Lib/__pycache__/locale.cpython-313.pyc`, `Lib/__pycache__/lzma.cpython-313.pyc`, `Lib/__pycache__/numbers.cpython-313.pyc`, `Lib/__pycache__/opcode.cpython-313.pyc`, `Lib/__pycache__/operator.cpython-313.pyc`, `Lib/__pycache__/os.cpython-313.pyc`, `Lib/__pycache__/posixpath.cpython-313.pyc`, `Lib/__pycache__/reprlib.cpython-313.pyc`, `Lib/__pycache__/selectors.cpython-313.pyc`, `Lib/__pycache__/shutil.cpython-313.pyc`, `Lib/__pycache__/signal.cpython-313.pyc`, `Lib/__pycache__/site.cpython-313.pyc`, `Lib/__pycache__/socket.cpython-313.pyc`, `Lib/__pycache__/ssl.cpython-313.pyc`, `Lib/__pycache__/stat.cpython-313.pyc`, `Lib/__pycache__/string.cpython-313.pyc`, `Lib/__pycache__/struct.cpython-313.pyc`, `Lib/__pycache__/subprocess.cpython-313.pyc`, `Lib/__pycache__/textwrap.cpython-313.pyc`, `Lib/__pycache__/threading.cpython-313.pyc`, `Lib/__pycache__/token.cpython-313.pyc`, `Lib/__pycache__/tokenize.cpython-313.pyc`, `Lib/__pycache__/traceback.cpython-313.pyc`, `Lib/__pycache__/types.cpython-313.pyc`, `Lib/__pycache__/typing.cpython-313.pyc`, `Lib/__pycache__/warnings.cpython-313.pyc`, `Lib/__pycache__/weakref.cpython-313.pyc`, `Lib/asyncio/__pycache__/__init__.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_events.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_futures.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_subprocess.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_tasks.cpython-313.pyc`, `Lib/asyncio/__pycache__/constants.cpython-313.pyc`, `Lib/asyncio/__pycache__/coroutines.cpython-313.pyc`, `Lib/asyncio/__pycache__/events.cpython-313.pyc`, `Lib/asyncio/__pycache__/exceptions.cpython-313.pyc`, `Lib/asyncio/__pycache__/format_helpers.cpython-313.pyc`, `Lib/asyncio/__pycache__/futures.cpython-313.pyc`, `Lib/asyncio/__pycache__/locks.cpython-313.pyc`, `Lib/asyncio/__pycache__/log.cpython-313.pyc`, `Lib/asyncio/__pycache__/mixins.cpython-313.pyc`, `Lib/asyncio/__pycache__/protocols.cpython-313.pyc`, `Lib/asyncio/__pycache__/queues.cpython-313.pyc`, `Lib/asyncio/__pycache__/runners.cpython-313.pyc`, `Lib/asyncio/__pycache__/selector_events.cpython-313.pyc`, `Lib/asyncio/__pycache__/sslproto.cpython-313.pyc`, `Lib/asyncio/__pycache__/staggered.cpython-313.pyc`, `Lib/asyncio/__pycache__/streams.cpython-313.pyc`, `Lib/asyncio/__pycache__/subprocess.cpython-313.pyc`, `Lib/asyncio/__pycache__/taskgroups.cpython-313.pyc`, `Lib/asyncio/__pycache__/tasks.cpython-313.pyc`, `Lib/asyncio/__pycache__/threads.cpython-313.pyc`, `Lib/asyncio/__pycache__/timeouts.cpython-313.pyc`, `Lib/asyncio/__pycache__/transports.cpython-313.pyc`, `Lib/asyncio/__pycache__/trsock.cpython-313.pyc`, `Lib/asyncio/__pycache__/unix_events.cpython-313.pyc`, `Lib/collections/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/futures/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/futures/__pycache__/_base.cpython-313.pyc`, `Lib/encodings/__pycache__/__init__.cpython-313.pyc`, `Lib/encodings/__pycache__/aliases.cpython-313.pyc`, `Lib/encodings/__pycache__/ascii.cpython-313.pyc`, `Lib/encodings/__pycache__/utf_8.cpython-313.pyc`, `Lib/importlib/__pycache__/__init__.cpython-313.pyc`, `Lib/importlib/__pycache__/_abc.cpython-313.pyc`, `Lib/logging/__pycache__/__init__.cpython-313.pyc`, `Lib/pathlib/__pycache__/__init__.cpython-313.pyc`, `Lib/pathlib/__pycache__/_abc.cpython-313.pyc`, `Lib/pathlib/__pycache__/_local.cpython-313.pyc`, `Lib/re/__pycache__/__init__.cpython-313.pyc`, `Lib/re/__pycache__/_casefix.cpython-313.pyc`, `Lib/re/__pycache__/_compiler.cpython-313.pyc`, `Lib/re/__pycache__/_constants.cpython-313.pyc`, `Lib/re/__pycache__/_parser.cpython-313.pyc`, `Lib/sysconfig/__pycache__/__init__.cpython-313.pyc`, `Lib/sysconfig/__pycache__/__main__.cpython-313.pyc`, `Lib/xml/__pycache__/__init__.cpython-313.pyc`, `Lib/xml/etree/__pycache__/ElementPath.cpython-313.pyc`, `Lib/xml/etree/__pycache__/__init__.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/__init__.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/_common.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/_tzpath.cpython-313.pyc`, `Makefile`, `Makefile.pre`, `Misc/python-config.sh`, `Misc/python-embed.pc`, `Misc/python.pc`, `Modules/Setup.bootstrap`, `Modules/Setup.local`, `Modules/Setup.stdlib`, `Modules/_abc.o`, `Modules/_asyncio.cpython-313-x86_64-linux-gnu.so`, `Modules/_asynciomodule.o`, `Modules/_bisect.cpython-313-x86_64-linux-gnu.so`, `Modules/_bisectmodule.o`, `Modules/_blake2.cpython-313-x86_64-linux-gnu.so`, `Modules/_blake2/blake2b_impl.o`, `Modules/_blake2/blake2module.o`, `Modules/_blake2/blake2s_impl.o`, `Modules/_bz2.cpython-313-x86_64-linux-gnu.so`, `Modules/_bz2module.o`, `Modules/_codecs_cn.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_hk.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_iso2022.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_jp.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_kr.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_tw.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecsmodule.o`, `Modules/_collectionsmodule.o`, `Modules/_contextvars.cpython-313-x86_64-linux-gnu.so`, `Modules/_contextvarsmodule.o`, `Modules/_csv.cpython-313-x86_64-linux-gnu.so`, `Modules/_csv.o`, `Modules/_ctypes.cpython-313-x86_64-linux-gnu.so`, `Modules/_ctypes/_ctypes.o`, `Modules/_ctypes/_ctypes_test.o`, `Modules/_ctypes/callbacks.o`, `Modules/_ctypes/callproc.o`, `Modules/_ctypes/cfield.o`, `Modules/_ctypes/stgdict.o`, `Modules/_ctypes_test.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses_panel.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses_panel.o`, `Modules/_cursesmodule.o`, `Modules/_datetime.cpython-313-x86_64-linux-gnu.so`, `Modules/_datetimemodule.o`, `Modules/_decimal.cpython-313-x86_64-linux-gnu.so`, `Modules/_decimal/_decimal.o`, `Modules/_decimal/libmpdec/basearith.o`, `Modules/_decimal/libmpdec/constants.o`, `Modules/_decimal/libmpdec/context.o`, `Modules/_decimal/libmpdec/convolute.o`, `Modules/_decimal/libmpdec/crt.o`, `Modules/_decimal/libmpdec/difradix2.o`, `Modules/_decimal/libmpdec/fnt.o`, `Modules/_decimal/libmpdec/fourstep.o`, `Modules/_decimal/libmpdec/io.o`, `Modules/_decimal/libmpdec/libmpdec.a`, `Modules/_decimal/libmpdec/mpalloc.o`, `Modules/_decimal/libmpdec/mpdecimal.o`, `Modules/_decimal/libmpdec/numbertheory.o`, `Modules/_decimal/libmpdec/sixstep.o`, `Modules/_decimal/libmpdec/transpose.o`, `Modules/_elementtree.cpython-313-x86_64-linux-gnu.so`, `Modules/_elementtree.o`, `Modules/_functoolsmodule.o`, `Modules/_hacl/Hacl_Hash_MD5.o`, `Modules/_hacl/Hacl_Hash_SHA1.o`, `Modules/_hacl/Hacl_Hash_SHA2.o`, `Modules/_hacl/Hacl_Hash_SHA3.o`, `Modules/_hacl/libHacl_Hash_SHA2.a`, `Modules/_hashlib.cpython-313-x86_64-linux-gnu.so`, `Modules/_hashopenssl.o`, `Modules/_heapq.cpython-313-x86_64-linux-gnu.so`, `Modules/_heapqmodule.o`, `Modules/_interpchannels.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpchannelsmodule.o`, `Modules/_interpqueues.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpqueuesmodule.o`, `Modules/_interpreters.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpretersmodule.o`, `Modules/_io/_iomodule.o`, `Modules/_io/bufferedio.o`, `Modules/_io/bytesio.o`, `Modules/_io/fileio.o`, `Modules/_io/iobase.o`, `Modules/_io/stringio.o`, `Modules/_io/textio.o`, `Modules/_json.cpython-313-x86_64-linux-gnu.so`, `Modules/_json.o`, `Modules/_localemodule.o`, `Modules/_lsprof.cpython-313-x86_64-linux-gnu.so`, `Modules/_lsprof.o`, `Modules/_lzma.cpython-313-x86_64-linux-gnu.so`, `Modules/_lzmamodule.o`, `Modules/_md5.cpython-313-x86_64-linux-gnu.so`, `Modules/_multibytecodec.cpython-313-x86_64-linux-gnu.so`, `Modules/_multiprocessing.cpython-313-x86_64-linux-gnu.so`, `Modules/_multiprocessing/multiprocessing.o`, `Modules/_multiprocessing/posixshmem.o`, `Modules/_multiprocessing/semaphore.o`, `Modules/_opcode.cpython-313-x86_64-linux-gnu.so`, `Modules/_opcode.o`, `Modules/_operator.o`, `Modules/_pickle.cpython-313-x86_64-linux-gnu.so`, `Modules/_pickle.o`, `Modules/_posixshmem.cpython-313-x86_64-linux-gnu.so`, `Modules/_posixsubprocess.cpython-313-x86_64-linux-gnu.so`, `Modules/_posixsubprocess.o`, `Modules/_queue.cpython-313-x86_64-linux-gnu.so`, `Modules/_queuemodule.o`, `Modules/_random.cpython-313-x86_64-linux-gnu.so`, `Modules/_randommodule.o`, `Modules/_sha1.cpython-313-x86_64-linux-gnu.so`, `Modules/_sha2.cpython-313-x86_64-linux-gnu.so`, `Modules/_sha3.cpython-313-x86_64-linux-gnu.so`, `Modules/_socket.cpython-313-x86_64-linux-gnu.so`, `Modules/_sqlite/blob.o`, `Modules/_sqlite/connection.o`, `Modules/_sqlite/cursor.o`, `Modules/_sqlite/microprotocols.o`, `Modules/_sqlite/module.o`, `Modules/_sqlite/prepare_protocol.o`, `Modules/_sqlite/row.o`, `Modules/_sqlite/statement.o`, `Modules/_sqlite/util.o`, `Modules/_sqlite3.cpython-313-x86_64-linux-gnu.so`, `Modules/_sre/sre.o`, `Modules/_ssl.o`, `Modules/_ssl_failed.cpython-313-x86_64-linux-gnu.so`, `Modules/_stat.o`, `Modules/_statistics.cpython-313-x86_64-linux-gnu.so`, `Modules/_statisticsmodule.o`, `Modules/_struct.cpython-313-x86_64-linux-gnu.so`, `Modules/_struct.o`, `Modules/_suggestions.o`, `Modules/_sysconfig.o`, `Modules/_testbuffer.cpython-313-x86_64-linux-gnu.so`, `Modules/_testbuffer.o`, `Modules/_testcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testcapi/abstract.o`, `Modules/_testcapi/buffer.o`, `Modules/_testcapi/bytes.o`, `Modules/_testcapi/code.o`, `Modules/_testcapi/codec.o`, `Modules/_testcapi/complex.o`, `Modules/_testcapi/datetime.o`, `Modules/_testcapi/dict.o`, `Modules/_testcapi/docstring.o`, `Modules/_testcapi/exceptions.o`, `Modules/_testcapi/file.o`, `Modules/_testcapi/float.o`, `Modules/_testcapi/gc.o`, `Modules/_testcapi/getargs.o`, `Modules/_testcapi/hash.o`, `Modules/_testcapi/heaptype.o`, `Modules/_testcapi/immortal.o`, `Modules/_testcapi/list.o`, `Modules/_testcapi/long.o`, `Modules/_testcapi/mem.o`, `Modules/_testcapi/monitoring.o`, `Modules/_testcapi/numbers.o`, `Modules/_testcapi/object.o`, `Modules/_testcapi/pyatomic.o`, `Modules/_testcapi/run.o`, `Modules/_testcapi/set.o`, `Modules/_testcapi/structmember.o`, `Modules/_testcapi/time.o`, `Modules/_testcapi/tuple.o`, `Modules/_testcapi/unicode.o`, `Modules/_testcapi/vectorcall.o`, `Modules/_testcapi/watchers.o`, `Modules/_testcapimodule.o`, `Modules/_testclinic.cpython-313-x86_64-linux-gnu.so`, `Modules/_testclinic.o`, `Modules/_testclinic_limited.cpython-313-x86_64-linux-gnu.so`, `Modules/_testclinic_limited.o`, `Modules/_testexternalinspection.cpython-313-x86_64-linux-gnu.so`, `Modules/_testexternalinspection.o`, `Modules/_testimportmultiple.cpython-313-x86_64-linux-gnu.so`, `Modules/_testimportmultiple.o`, `Modules/_testinternalcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testinternalcapi.o`, `Modules/_testinternalcapi/pytime.o`, `Modules/_testinternalcapi/set.o`, `Modules/_testinternalcapi/test_critical_sections.o`, `Modules/_testinternalcapi/test_lock.o`, `Modules/_testlimitedcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testlimitedcapi.o`, `Modules/_testlimitedcapi/abstract.o`, `Modules/_testlimitedcapi/bytearray.o`, `Modules/_testlimitedcapi/bytes.o`, `Modules/_testlimitedcapi/complex.o`, `Modules/_testlimitedcapi/dict.o`, `Modules/_testlimitedcapi/eval.o`, `Modules/_testlimitedcapi/file.o`, `Modules/_testlimitedcapi/float.o`, `Modules/_testlimitedcapi/heaptype_relative.o`, `Modules/_testlimitedcapi/import.o`, `Modules/_testlimitedcapi/list.o`, `Modules/_testlimitedcapi/long.o`, `Modules/_testlimitedcapi/object.o`, `Modules/_testlimitedcapi/pyos.o`, `Modules/_testlimitedcapi/set.o`, `Modules/_testlimitedcapi/sys.o`, `Modules/_testlimitedcapi/tuple.o`, `Modules/_testlimitedcapi/unicode.o`, `Modules/_testlimitedcapi/vectorcall_limited.o`, `Modules/_testmultiphase.cpython-313-x86_64-linux-gnu.so`, `Modules/_testmultiphase.o`, `Modules/_testsinglephase.cpython-313-x86_64-linux-gnu.so`, `Modules/_testsinglephase.o`, `Modules/_threadmodule.o`, `Modules/_tracemalloc.o`, `Modules/_typingmodule.o`, `Modules/_uuid.cpython-313-x86_64-linux-gnu.so`, `Modules/_uuidmodule.o`, `Modules/_weakref.o`, `Modules/_xxtestfuzz.cpython-313-x86_64-linux-gnu.so`, `Modules/_xxtestfuzz/_xxtestfuzz.o`, `Modules/_xxtestfuzz/fuzzer.o`, `Modules/_zoneinfo.cpython-313-x86_64-linux-gnu.so`, `Modules/_zoneinfo.o`, `Modules/array.cpython-313-x86_64-linux-gnu.so`, `Modules/arraymodule.o`, `Modules/atexitmodule.o`, `Modules/binascii.cpython-313-x86_64-linux-gnu.so`, `Modules/binascii.o`, `Modules/cjkcodecs/_codecs_cn.o`, `Modules/cjkcodecs/_codecs_hk.o`, `Modules/cjkcodecs/_codecs_iso2022.o`, `Modules/cjkcodecs/_codecs_jp.o`, `Modules/cjkcodecs/_codecs_kr.o`, `Modules/cjkcodecs/_codecs_tw.o`, `Modules/cjkcodecs/multibytecodec.o`, `Modules/cmath.cpython-313-x86_64-linux-gnu.so`, `Modules/cmathmodule.o`, `Modules/config.c`, `Modules/config.o`, `Modules/errnomodule.o`, `Modules/expat/libexpat.a`, `Modules/expat/xmlparse.o`, `Modules/expat/xmlrole.o`, `Modules/expat/xmltok.o`, `Modules/faulthandler.o`, `Modules/fcntl.cpython-313-x86_64-linux-gnu.so`, `Modules/fcntlmodule.o`, `Modules/gcmodule.o`, `Modules/getbuildinfo.o`, `Modules/getpath.o`, `Modules/getpath_noop.o`, `Modules/grp.cpython-313-x86_64-linux-gnu.so`, `Modules/grpmodule.o`, `Modules/itertoolsmodule.o`, `Modules/ld_so_aix`, `Modules/main.o`, `Modules/math.cpython-313-x86_64-linux-gnu.so`, `Modules/mathmodule.o`, `Modules/md5module.o`, `Modules/mmap.cpython-313-x86_64-linux-gnu.so`, `Modules/mmapmodule.o`, `Modules/posixmodule.o`, `Modules/pwdmodule.o`, `Modules/pyexpat.cpython-313-x86_64-linux-gnu.so`, `Modules/pyexpat.o`, `Modules/readline.cpython-313-x86_64-linux-gnu.so`, `Modules/readline.o`, `Modules/resource.cpython-313-x86_64-linux-gnu.so`, `Modules/resource.o`, `Modules/rotatingtree.o`, `Modules/select.cpython-313-x86_64-linux-gnu.so`, `Modules/selectmodule.o`, `Modules/sha1module.o`, `Modules/sha2module.o`, `Modules/sha3module.o`, `Modules/signalmodule.o`, `Modules/socketmodule.o`, `Modules/symtablemodule.o`, `Modules/syslog.cpython-313-x86_64-linux-gnu.so`, `Modules/syslogmodule.o`, `Modules/termios.cpython-313-x86_64-linux-gnu.so`, `Modules/termios.o`, `Modules/timemodule.o`, `Modules/unicodedata.cpython-313-x86_64-linux-gnu.so`, `Modules/unicodedata.o`, `Modules/xxlimited.cpython-313-x86_64-linux-gnu.so`, `Modules/xxlimited.o`, `Modules/xxlimited_35.cpython-313-x86_64-linux-gnu.so`, `Modules/xxlimited_35.o`, `Modules/xxsubtype.cpython-313-x86_64-linux-gnu.so`, `Modules/xxsubtype.o`, `Modules/zlib.cpython-313-x86_64-linux-gnu.so`, `Modules/zlibmodule.o`, `Objects/abstract.o`, `Objects/boolobject.o`, `Objects/bytearrayobject.o`, `Objects/bytes_methods.o`, `Objects/bytesobject.o`, `Objects/call.o`, `Objects/capsule.o`, `Objects/cellobject.o`, `Objects/classobject.o`, `Objects/codeobject.o`, `Objects/complexobject.o`, `Objects/descrobject.o`, `Objects/dictobject.o`, `Objects/enumobject.o`, `Objects/exceptions.o`, `Objects/fileobject.o`, `Objects/floatobject.o`, `Objects/frameobject.o`, `Objects/funcobject.o`, `Objects/genericaliasobject.o`, `Objects/genobject.o`, `Objects/iterobject.o`, `Objects/listobject.o`, `Objects/longobject.o`, `Objects/memoryobject.o`, `Objects/methodobject.o`, `Objects/moduleobject.o`, `Objects/namespaceobject.o`, `Objects/object.o`, `Objects/obmalloc.o`, `Objects/odictobject.o`, `Objects/picklebufobject.o`, `Objects/rangeobject.o`, `Objects/setobject.o`, `Objects/sliceobject.o`, `Objects/structseq.o`, `Objects/tupleobject.o`, `Objects/typeobject.o`, `Objects/typevarobject.o`, `Objects/unicodectype.o`, `Objects/unicodeobject.o`, `Objects/unionobject.o`, `Objects/weakrefobject.o`, `Parser/action_helpers.o`, `Parser/lexer/buffer.o`, `Parser/lexer/lexer.o`, `Parser/lexer/state.o`, `Parser/myreadline.o`, `Parser/parser.o`, `Parser/peg_api.o`, `Parser/pegen.o`, `Parser/pegen_errors.o`, `Parser/string_parser.o`, `Parser/token.o`, `Parser/tokenizer/file_tokenizer.o`, `Parser/tokenizer/helpers.o`, `Parser/tokenizer/readline_tokenizer.o`, `Parser/tokenizer/string_tokenizer.o`, `Parser/tokenizer/utf8_tokenizer.o`, `Programs/_bootstrap_python.o`, `Programs/_freeze_module`, `Programs/_freeze_module.o`, `Programs/_testembed`, `Programs/_testembed.o`, `Programs/python.o`, `Python/Python-ast.o`, `Python/Python-tokenize.o`, `Python/_warnings.o`, `Python/asdl.o`, `Python/asm_trampoline.o`, `Python/assemble.o`, `Python/ast.o`, `Python/ast_opt.o`, `Python/ast_unparse.o`, `Python/bltinmodule.o`, `Python/bootstrap_hash.o`, `Python/brc.o`, `Python/ceval.o`, `Python/ceval_gil.o`, `Python/codecs.o`, `Python/compile.o`, `Python/context.o`, `Python/critical_section.o`, `Python/crossinterp.o`, `Python/dtoa.o`, `Python/dynamic_annotations.o`, `Python/dynload_shlib.o`, `Python/errors.o`, `Python/fileutils.o`, `Python/flowgraph.o`, `Python/formatter_unicode.o`, `Python/frame.o`, `Python/frozen.o`, `Python/frozen_modules/__hello__.h`, `Python/frozen_modules/__phello__.h`, `Python/frozen_modules/__phello__.ham.eggs.h`, `Python/frozen_modules/__phello__.ham.h`, `Python/frozen_modules/__phello__.spam.h`, `Python/frozen_modules/_collections_abc.h`, `Python/frozen_modules/_sitebuiltins.h`, `Python/frozen_modules/abc.h`, `Python/frozen_modules/codecs.h`, `Python/frozen_modules/frozen_only.h`, `Python/frozen_modules/genericpath.h`, `Python/frozen_modules/getpath.h`, `Python/frozen_modules/importlib._bootstrap.h`, `Python/frozen_modules/importlib._bootstrap_external.h`, `Python/frozen_modules/importlib.machinery.h`, `Python/frozen_modules/importlib.util.h`, `Python/frozen_modules/io.h`, `Python/frozen_modules/ntpath.h`, `Python/frozen_modules/os.h`, `Python/frozen_modules/posixpath.h`, `Python/frozen_modules/runpy.h`, `Python/frozen_modules/site.h`, `Python/frozen_modules/stat.h`, `Python/frozen_modules/zipimport.h`, `Python/frozenmain.o`, `Python/future.o`, `Python/gc.o`, `Python/gc_free_threading.o`, `Python/gc_gil.o`, `Python/getargs.o`, `Python/getcompiler.o`, `Python/getcopyright.o`, `Python/getopt.o`, `Python/getplatform.o`, `Python/getversion.o`, `Python/hamt.o`, `Python/hashtable.o`, `Python/import.o`, `Python/importdl.o`, `Python/initconfig.o`, `Python/instruction_sequence.o`, `Python/instrumentation.o`, `Python/interpconfig.o`, `Python/intrinsics.o`, `Python/jit.o`, `Python/legacy_tracing.o`, `Python/lock.o`, `Python/marshal.o`, `Python/modsupport.o`, `Python/mysnprintf.o`, `Python/mystrtoul.o`, `Python/object_stack.o`, `Python/optimizer.o`, `Python/optimizer_analysis.o`, `Python/optimizer_symbols.o`, `Python/parking_lot.o`, `Python/pathconfig.o`, `Python/perf_jit_trampoline.o`, `Python/perf_trampoline.o`, `Python/preconfig.o`, `Python/pyarena.o`, `Python/pyctype.o`, `Python/pyfpe.o`, `Python/pyhash.o`, `Python/pylifecycle.o`, `Python/pymath.o`, `Python/pystate.o`, `Python/pystrcmp.o`, `Python/pystrhex.o`, `Python/pystrtod.o`, `Python/pythonrun.o`, `Python/pytime.o`, `Python/qsbr.o`, `Python/specialize.o`, `Python/structmember.o`, `Python/suggestions.o`, `Python/symtable.o`, `Python/sysmodule.o`, `Python/thread.o`, `Python/traceback.o`, `Python/tracemalloc.o`, `_bootstrap_python`, `build/lib.linux-x86_64-3.13/__pycache__/_sysconfigdata__linux_x86_64-linux-gnu.cpython-313.pyc`, `build/lib.linux-x86_64-3.13/_asyncio.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_bisect.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_blake2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_bz2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_cn.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_hk.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_iso2022.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_jp.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_kr.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_tw.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_contextvars.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_csv.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_ctypes.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_ctypes_test.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_curses.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_curses_panel.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_datetime.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_decimal.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_elementtree.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_hashlib.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_heapq.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpchannels.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpqueues.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpreters.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_json.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_lsprof.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_lzma.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_md5.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_multibytecodec.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_multiprocessing.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_opcode.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_pickle.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_posixshmem.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_posixsubprocess.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_queue.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_random.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha1.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha3.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_socket.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sqlite3.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_statistics.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_struct.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sysconfigdata__linux_x86_64-linux-gnu.py`, `build/lib.linux-x86_64-3.13/_testbuffer.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testclinic.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testclinic_limited.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testexternalinspection.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testimportmultiple.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testinternalcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testlimitedcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testmultiphase.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testsinglephase.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_uuid.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_xxtestfuzz.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_zoneinfo.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/array.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/binascii.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/cmath.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/fcntl.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/grp.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/math.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/mmap.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/pyexpat.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/readline.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/resource.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/select.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/syslog.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/termios.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/unicodedata.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxlimited.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxlimited_35.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxsubtype.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/zlib.cpython-313-x86_64-linux-gnu.so`, `build/scripts-3.13/idle3.13`, `build/scripts-3.13/pydoc3.13`, `config.log`, `config.status`, `libpython3.13.a`, `platform`, `pybuilddir.txt`, `pyconfig.h`, `python`, `python-config`, `python-config.py`, `python-gdb.py`.
2. Listed in `## Git Add Paths` but not actually changed: `None`.

## Refinement Pass 1

Subject: No patch: keep supervisord diagnosis clean

## Commit Message
No source change. The review found that the previous validation run left generated build and bytecode artifacts in the workspace. I removed those artifacts so the no-patch diagnosis is represented by an empty source diff.

## Evidence Confidence
inferred

## Issue Connection
Fixer collected a perf/strace `/proc` signal for `/usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf`: repeated `wait4(-1, ..., WNOHANG) = -1 ECHILD` followed by `poll(..., 1000) = 0`, while `/proc` showed the process sleeping in `poll_schedule_timeout.constprop.0`.

The cautious inference is unchanged: this looks like `supervisord` waking once per second to check child processes, not a demonstrated CPython runtime defect. I rechecked the local conventions in the relevant CPython wrappers: `Modules/posixmodule.c` uses `Py_BEGIN_ALLOW_THREADS`, `Py_END_ALLOW_THREADS`, `PyErr_CheckSignals()`, `posix_error()`, and `wait_helper()`, while `Modules/selectmodule.c` uses `_PyDeadline_*` timeout handling. I also checked project guidance; `README.rst` points contributors to the CPython Developer Guide, and no repo-root `CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, or `dev-docs/` guidance was present.

The specific refinement change was cleanup only: I removed the generated build outputs and `__pycache__` files left by validation, addressing the review’s metadata-drift finding. The expected effect is that the final proposal remains a no-patch diagnosis with no generated artifacts or source files staged for an upstream CPython patch.

## Git Add Paths
None

## Validation
Review finding addressed with `make distclean`, then verified cleanup with `git status --short` and `git diff --name-status`; both produced no output.

I did not rerun `./configure && make` after cleanup because no source files changed in this refinement and rerunning it would recreate the generated artifacts the review asked to remove. The prior project-level validation in this workspace was `./configure && make`, which completed with exit code 0 but reported optional module issues: `_dbm`, `_gdbm`, and `_tkinter` missing, and `_ssl` removed after import failed with `undefined symbol: TLSv1_method`.

The prior bounded reproduction attempt, `timeout 6s strace -f -tt -e poll,wait4,waitpid /usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf`, did not reproduce because ptrace was blocked with `Operation not permitted`; `/usr/bin/supervisord` was also absent in this workspace.

## Review Pass 2

RESULT: ok

Workspace is clean after refinement: `git status --short`, `git diff --stat`, and `git diff --name-status` produce no output. The response now matches `## Git Add Paths: None`.

The no-patch diagnosis is appropriate for the evidence level. The author does not leave a speculative CPython source diff from indirect profiler/strace evidence, keeps `## Evidence Confidence` valid as `inferred`, and explains the likely `supervisord` event-loop interpretation without inventing a reproducer.

Validation is acceptable for a no-source-change cleanup refinement: the earlier project-level `./configure && make` result is reported, the ptrace blocker for the bounded reproduction attempt is named, and the cleanup itself was verified without regenerating build artifacts.

diagnosis-only report

report

python3.13 likely remains stuck in a busy-poll loop. A diagnosis report and patch proposal were created locally.

state: readycreated: 2026-05-19 00:28 UTCvalidation: ready
Published session

Prompt

## Plan Pass

You are planning a fixer patch before any edits happen.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. The original pre-edit snapshot is available at `./source` if you need to inspect it. For interpreter processes, plan from the script/application entrypoint evidence first and include the runtime only as a second investigation target unless the evidence proves a runtime bug.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround. Inspect the relevant code, nearby callers, project contribution docs, and local helper/compat APIs, but do not edit files in this pass.

Return a short markdown plan with these exact sections:

## Problem
## Evidence Confidence
## Proposed Subject
## Patch Plan
## Risks
## Validation

Classify `## Evidence Confidence` as exactly one of `reproduced`, `observed`, or `inferred`. Use `inferred` only for a no-patch diagnosis/report plan unless you can name the extra evidence you will collect before editing; inferred source patches are blocked by Fixer because they are not pull-request-ready. For `observed` source-patch plans, plan to say in the final `## Issue Connection` that the failure was observed by Fixer and not independently reproduced. If the plan touches authentication, authorization, credentials, cryptography, sandboxing, permissions, or timing/throttling behavior, treat it as security-sensitive: do not plan a source patch unless validation can reproduce the behavior and analyze the security impact; otherwise plan a no-patch diagnosis/report. The plan must explain how the proposed code change addresses the observed issue evidence, call out any prior Fixer patch that should be improved or replaced, reject awkward control flow such as avoidable `goto` if there is a cleaner bounded alternative, name any local helper APIs or maintainer conventions the patch should follow, and keep the intended maintainer-facing explanation clear enough that someone unfamiliar with the local complaint wording can still follow the fix. In `## Validation`, name the reproducible configure/build/test entrypoint you will try from the workspace root before any focused leaf compile or smoke check, and include one bounded independent reproduction attempt for the collected failure signal when it is safe and cheap. Do not plan to claim `reproduced` unless that reproduction command or test can actually show the failure.

## Patch Pass

You are working on a bounded fixer proposal.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. Produce the smallest reasonable patch for the target repository, keep the change upstreamable, prefer the clearest control flow available, and do not keep avoidable `goto` when a simpler structure would read better. Before introducing new file, process, allocation, locking, networking, or platform APIs, inspect nearby code and project contribution docs for existing helpers or compatibility wrappers and use those local patterns unless you can explain why they do not fit. Validate from a reproducible workspace-root entrypoint before falling back to focused leaf commands; if a build or test cannot run, report the exact command, the exact blocker, and any narrower check you ran instead. During validation, also try one bounded independent reproduction of the collected failure signal when it is safe and cheap, such as a failing test, smoke command, perf/strace comparison, or before/after runtime check. Only use `reproduced` if that command or test actually reproduced the failure; otherwise keep `observed` and report the reproduction blocker. The final explanation must connect the observed issue evidence to the actual code change, not just paraphrase the diff. Write like a maintainer is going to read the patch mail cold: explain the bug in plain language, define subsystem-specific jargon the first time you need it, and make the causal story obvious. Explicitly classify evidence confidence as `reproduced`, `observed`, or `inferred`: `reproduced` means you reproduced the failure locally; `observed` means Fixer has direct crash/log/trace evidence but you did not independently reproduce it; `inferred` means the source patch is not pull-request-ready, so do not leave a source diff unless you first gather stronger observed/reproduced evidence; otherwise return a no-patch diagnosis/report. For any source-changing `observed` patch, say explicitly in `## Issue Connection` that the failure was observed by Fixer and not independently reproduced. Security-sensitive areas such as authentication, authorization, credentials, cryptography, sandboxing, permissions, and timing/throttling behavior need reproduced evidence plus explicit security-impact analysis before leaving a source diff; otherwise return a no-patch diagnosis/report for human review. If you introduce non-obvious state translation, index remapping, or backend split logic, add a short source comment that explains the invariant being preserved.

Start by explaining the likely root cause from the collected perf, strace, and /proc evidence. If you cannot land a safe patch, leave a diagnosis that is strong enough for an upstream bug report.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround. 

Keep the change narrowly scoped and summarize validation clearly.

In every authoring pass, your final response must start with `Subject: <single-line git commit subject>` and then include these markdown sections exactly:

## Commit Message
A short upstream-friendly explanation of what changed and why. Write it in plain language that a maintainer can follow without local complaint context. If you use subsystem jargon, define it immediately.

## Evidence Confidence
Exactly one word: `reproduced`, `observed`, or `inferred`. Use `reproduced` only when you reproduced the failure locally with a command or test, and include that command/test in `## Validation`. Use `observed` when Fixer has direct crash/log/trace evidence but you did not independently reproduce it. If `## Git Add Paths` lists source files for an `observed` patch, `## Issue Connection` must explicitly say the failure was observed by Fixer and not independently reproduced. Security-sensitive source changes touching authentication, authorization, credentials, cryptography, sandboxing, permissions, or timing/throttling behavior require reproduced evidence and explicit security-impact analysis; otherwise list `None` under `## Git Add Paths` and write a no-patch diagnosis/report. Use `inferred` for profiler/strace/indirect evidence; inferred responses may be no-patch diagnoses or reports, but inferred source patches are not pull-request-ready until stronger evidence is gathered.

## Issue Connection
Write this as maintainer-facing patch mail, not as local Fixer notes. Cover four things explicitly in readable sentences: the user-visible symptom or the exact collected signal, the code-level cause or the cautious inference from evidence, the specific change you made, and the expected effect. Do not invent a reproducer, command line, crash, or user-visible failure that is not present in the evidence bundle. If the evidence is direct-but-not-reproduced, say it was observed by Fixer and not independently reproduced. If the evidence is indirect and you did not gather stronger evidence, do not leave a source diff; write a no-patch diagnosis/report instead. Include an explicit effect sentence such as `The expected effect is ...`, `This should reduce ...`, or `This prevents ...` for source patches. If the logic is non-obvious in code, mention that you added a short explanatory comment.

## Git Add Paths
List the repo-relative paths that belong in the final patch, one per line. Use `None` only when you intentionally made no source changes. Include intentionally new files, and do not list generated build artifacts.

## Validation
List the checks you ran, or say clearly that you could not run them. Include the independent reproduction command/test and result when `## Evidence Confidence` is `reproduced`; if reproduction was attempted but blocked, name the exact blocker and keep confidence at `observed` or `inferred`.

Before editing, read the plan at `./plan-output.txt` and follow it unless the code proves part of it wrong. If you change course, say so explicitly in the final write-up instead of silently drifting from the plan.

## Review Pass 1

You are reviewing a freshly generated fixer patch.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. Review the first patch pass. The original pre-edit snapshot is available at `./source` for diffing.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout. The latest author response is at `./patch-output.txt`. Inspect the current code and changed paths like a strict code reviewer. Focus on correctness, regressions, maintainability, awkward control flow such as avoidable `goto`, missing validation, weak or non-gittable commit message text, and explanations that fail to connect the observed issue evidence to the code change. Also review the maintainer experience: the patch mail should be easy to accept upstream, the user-visible bug should be explained in plain language, subsystem-specific jargon should be defined when first used, and any non-obvious state translation or index remapping in code should have a short explanatory comment. Reject patches that omit `## Evidence Confidence`, use anything other than `reproduced`, `observed`, or `inferred`, or sound more certain than that evidence level allows. Reject patches that claim `reproduced` unless `## Validation` names the concrete reproduction command or test and its result. Reject source patches in security-sensitive areas such as authentication, authorization, credentials, cryptography, sandboxing, permissions, and timing/throttling behavior unless the author reproduced the behavior and explicitly analyzed the security impact of the change; observed-only evidence should become a diagnosis/report, not a PR-ready source diff. Reject patches that invent a reproducer, command line, crash, or user-visible failure not present in the evidence bundle; indirect profiler or strace evidence may justify a cautious mitigation, but the author must say it is indirect instead of presenting it as a confirmed upstream bug. Reject patches that introduce generic libc/std APIs when nearby code or project docs provide a local compat/helper API for the same job, unless the author explicitly justifies the exception. Reject validation that only reports a leaf object/syntax build when a project-level configure/build/test entrypoint exists and was not attempted; if a full build cannot run, the author must show the exact failed command and blocker.

Do not apply code changes in this pass.

Return a short markdown review report. The first non-empty line must be exactly one of:

RESULT: ok
RESULT: fix-needed

If you choose `RESULT: fix-needed`, add a `## Findings` section with concrete, actionable items.

Response

## Plan Pass

## Problem
Fixer observed high CPU attributed to `/usr/bin/python3.13`, but the actual entrypoint was `/usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf`. The captured syscall loop is `wait4(-1, ..., WNOHANG) = ECHILD` followed by `poll(..., 1000) = 0`, which looks like an application-level supervisor event loop waking once per second, not a proven CPython runtime defect.

## Evidence Confidence
inferred

## Proposed Subject
No CPython source patch yet: report/diagnose as insufficient evidence for an upstream `python3.13` change, and request or collect application-level `supervisord` reproduction data before editing CPython.

## Patch Plan
Do not edit files in this pass. The evidence does not identify a CPython code path beyond normal `select.poll()` and `os.wait4()` wrappers.

Relevant local conventions/helpers found: `Modules/selectmodule.c` uses Argument Clinic, `_PyTime_FromMillisecondsObject()`, `_PyDeadline_Init()`, `Py_BEGIN_ALLOW_THREADS`, `PyMem_*`, and `PyErr_SetFromErrno()`; `Modules/posixmodule.c` uses Argument Clinic, `Py_BEGIN_ALLOW_THREADS`, `PyErr_CheckSignals()`, and `posix_error()`. If later evidence proves a CPython bug, any patch should follow those helpers and avoid unnecessary control-flow churn such as a new avoidable `goto`.

No prior Fixer patch or dirty workspace change was found to improve or replace.

## Risks
Patching CPython from this bundle would likely paper over an application behavior in `supervisord`. The sampled process was sleeping in `poll_schedule_timeout`, and the strace timeout is one second, so calling this a CPython busy loop would overstate the evidence.

A runtime change to `select.poll()`, `os.wait4()`, or subprocess waiting could affect broad POSIX behavior and needs a real reproducer before touching upstream code.

## Validation
First project-level command to use if a CPython patch becomes justified: `./configure && make` from the workspace root; if it fails, record the exact missing dependency/generated-file failure before any focused compile.

Bounded independent reproduction attempt: run the actual evidence entrypoint under syscall sampling, e.g. `timeout 10s strace -f -tt -e poll,wait4 /usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf`. In this workspace host, `/usr/bin/supervisord` and `/etc/supervisor/supervisord.conf` are absent, so the collected failure signal cannot be independently reproduced here.

## Patch Pass

Subject: No patch: diagnose supervisord poll loop evidence

## Commit Message
No source change was made. The collected evidence points to a Python-hosted `supervisord` process waking around an application event loop, not to a bounded CPython runtime bug that can be safely fixed upstream.

The likely root cause is outside the CPython wrappers themselves: the trace alternates `wait4(-1, ..., WNOHANG)` returning `ECHILD` with `poll(..., 1000)` timing out, while `/proc` reports the process sleeping in `poll_schedule_timeout`. That is consistent with `supervisord` periodically checking for child processes and polling an fd, not with a proven tight CPU spin inside `select.poll()` or `os.wait4()`.

## Evidence Confidence
inferred

## Issue Connection
The collected signal is a Fixer perf/strace investigation of `/usr/bin/python3.13` running `/usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf`; the sampled syscall sequence repeatedly shows `wait4(..., WNOHANG) = ECHILD` followed by a one-second `poll()` timeout. The `/proc` state is `S (sleeping)` with `wchan` in `poll_schedule_timeout`, which weakens the conclusion that CPython itself is spinning.

At the code level, the plausible CPython surfaces are normal wrappers: `Modules/selectmodule.c` releases the GIL around `poll()` and uses `_PyTime_FromMillisecondsObject()`, `_PyDeadline_Init()`, `PyMem_*`, and `PyErr_SetFromErrno()`; `Modules/posixmodule.c` releases the GIL around `wait4()` and reports errors via `posix_error()`. I did not find evidence tying those wrappers to an incorrect timeout, retry, or error-handling path.

I followed the saved plan and made no source change. The expected effect is that this proposal stays upstreamable by avoiding a speculative CPython patch from profiler/strace evidence that more directly implicates the application entrypoint.

## Git Add Paths
None

## Validation
Project guidance/style checked: `README.rst` points contributors to the CPython Developer Guide and documents the root build/test entrypoints. No `CONTRIBUTING`, `HACKING`, `README-hacking`, `docs/`, or `dev-docs/` path relevant to this subsystem was present. Local helper conventions inspected: Argument Clinic, `_PyTime_*`, `Py_BEGIN_ALLOW_THREADS`, `PyMem_*`, `PyErr_SetFromErrno()`, and `posix_error()`.

Project-level validation run from workspace root: `timeout 300s bash -lc './configure && make'`. This completed with exit 0. The build reported optional module issues: `_ssl` failed to import due to `undefined symbol: TLSv1_method`, and `_dbm`, `_gdbm`, and `_tkinter` were missing.

Independent reproduction attempted: `timeout 10s strace -f -tt -e poll,wait4 /usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf`. This was blocked by sandbox ptrace restrictions: `PTRACE_TRACEME: Operation not permitted` and `ptrace(PTRACE_SEIZE, 5): Operation not permitted`. No local reproduction was obtained.

## Review Pass 1

RESULT: ok

No source diff is present, which matches the `inferred` evidence level and the no-patch diagnosis. The author output includes the required sections, uses a valid evidence classification, avoids claiming local reproduction, and reports both the project-level `./configure && make` validation and the blocked strace reproduction attempt with the exact ptrace blocker.

The diagnosis is appropriately cautious for profiler/strace evidence and ties the collected `supervisord` `wait4(WNOHANG)`/`poll(1000)` pattern to the inspected CPython wrapper code without inventing an upstream CPython bug.

diagnosis-only report

report

python3.13 likely remains stuck in a busy-poll loop. A diagnosis report and patch proposal were created locally.

state: readycreated: 2026-05-19 00:28 UTCvalidation: ready
Published session

Prompt

## Plan Pass

You are planning a fixer patch before any edits happen.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. The original pre-edit snapshot is available at `./source` if you need to inspect it. For interpreter processes, plan from the script/application entrypoint evidence first and include the runtime only as a second investigation target unless the evidence proves a runtime bug.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround. Inspect the relevant code, nearby callers, project contribution docs, and local helper/compat APIs, but do not edit files in this pass.

Return a short markdown plan with these exact sections:

## Problem
## Evidence Confidence
## Proposed Subject
## Patch Plan
## Risks
## Validation

Classify `## Evidence Confidence` as exactly one of `reproduced`, `observed`, or `inferred`. Use `inferred` only for a no-patch diagnosis/report plan unless you can name the extra evidence you will collect before editing; inferred source patches are blocked by Fixer because they are not pull-request-ready. For `observed` source-patch plans, plan to say in the final `## Issue Connection` that the failure was observed by Fixer and not independently reproduced. If the plan touches authentication, authorization, credentials, cryptography, sandboxing, permissions, or timing/throttling behavior, treat it as security-sensitive: do not plan a source patch unless validation can reproduce the behavior and analyze the security impact; otherwise plan a no-patch diagnosis/report. The plan must explain how the proposed code change addresses the observed issue evidence, call out any prior Fixer patch that should be improved or replaced, reject awkward control flow such as avoidable `goto` if there is a cleaner bounded alternative, name any local helper APIs or maintainer conventions the patch should follow, and keep the intended maintainer-facing explanation clear enough that someone unfamiliar with the local complaint wording can still follow the fix. In `## Validation`, name the reproducible configure/build/test entrypoint you will try from the workspace root before any focused leaf compile or smoke check, and include one bounded independent reproduction attempt for the collected failure signal when it is safe and cheap. Do not plan to claim `reproduced` unless that reproduction command or test can actually show the failure.

## Patch Pass

You are working on a bounded fixer proposal.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. Produce the smallest reasonable patch for the target repository, keep the change upstreamable, prefer the clearest control flow available, and do not keep avoidable `goto` when a simpler structure would read better. Before introducing new file, process, allocation, locking, networking, or platform APIs, inspect nearby code and project contribution docs for existing helpers or compatibility wrappers and use those local patterns unless you can explain why they do not fit. Validate from a reproducible workspace-root entrypoint before falling back to focused leaf commands; if a build or test cannot run, report the exact command, the exact blocker, and any narrower check you ran instead. During validation, also try one bounded independent reproduction of the collected failure signal when it is safe and cheap, such as a failing test, smoke command, perf/strace comparison, or before/after runtime check. Only use `reproduced` if that command or test actually reproduced the failure; otherwise keep `observed` and report the reproduction blocker. The final explanation must connect the observed issue evidence to the actual code change, not just paraphrase the diff. Write like a maintainer is going to read the patch mail cold: explain the bug in plain language, define subsystem-specific jargon the first time you need it, and make the causal story obvious. Explicitly classify evidence confidence as `reproduced`, `observed`, or `inferred`: `reproduced` means you reproduced the failure locally; `observed` means Fixer has direct crash/log/trace evidence but you did not independently reproduce it; `inferred` means the source patch is not pull-request-ready, so do not leave a source diff unless you first gather stronger observed/reproduced evidence; otherwise return a no-patch diagnosis/report. For any source-changing `observed` patch, say explicitly in `## Issue Connection` that the failure was observed by Fixer and not independently reproduced. Security-sensitive areas such as authentication, authorization, credentials, cryptography, sandboxing, permissions, and timing/throttling behavior need reproduced evidence plus explicit security-impact analysis before leaving a source diff; otherwise return a no-patch diagnosis/report for human review. If you introduce non-obvious state translation, index remapping, or backend split logic, add a short source comment that explains the invariant being preserved.

Start by explaining the likely root cause from the collected perf, strace, and /proc evidence. If you cannot land a safe patch, leave a diagnosis that is strong enough for an upstream bug report.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround. 

Keep the change narrowly scoped and summarize validation clearly.

In every authoring pass, your final response must start with `Subject: <single-line git commit subject>` and then include these markdown sections exactly:

## Commit Message
A short upstream-friendly explanation of what changed and why. Write it in plain language that a maintainer can follow without local complaint context. If you use subsystem jargon, define it immediately.

## Evidence Confidence
Exactly one word: `reproduced`, `observed`, or `inferred`. Use `reproduced` only when you reproduced the failure locally with a command or test, and include that command/test in `## Validation`. Use `observed` when Fixer has direct crash/log/trace evidence but you did not independently reproduce it. If `## Git Add Paths` lists source files for an `observed` patch, `## Issue Connection` must explicitly say the failure was observed by Fixer and not independently reproduced. Security-sensitive source changes touching authentication, authorization, credentials, cryptography, sandboxing, permissions, or timing/throttling behavior require reproduced evidence and explicit security-impact analysis; otherwise list `None` under `## Git Add Paths` and write a no-patch diagnosis/report. Use `inferred` for profiler/strace/indirect evidence; inferred responses may be no-patch diagnoses or reports, but inferred source patches are not pull-request-ready until stronger evidence is gathered.

## Issue Connection
Write this as maintainer-facing patch mail, not as local Fixer notes. Cover four things explicitly in readable sentences: the user-visible symptom or the exact collected signal, the code-level cause or the cautious inference from evidence, the specific change you made, and the expected effect. Do not invent a reproducer, command line, crash, or user-visible failure that is not present in the evidence bundle. If the evidence is direct-but-not-reproduced, say it was observed by Fixer and not independently reproduced. If the evidence is indirect and you did not gather stronger evidence, do not leave a source diff; write a no-patch diagnosis/report instead. Include an explicit effect sentence such as `The expected effect is ...`, `This should reduce ...`, or `This prevents ...` for source patches. If the logic is non-obvious in code, mention that you added a short explanatory comment.

## Git Add Paths
List the repo-relative paths that belong in the final patch, one per line. Use `None` only when you intentionally made no source changes. Include intentionally new files, and do not list generated build artifacts.

## Validation
List the checks you ran, or say clearly that you could not run them. Include the independent reproduction command/test and result when `## Evidence Confidence` is `reproduced`; if reproduction was attempted but blocked, name the exact blocker and keep confidence at `observed` or `inferred`.

Before editing, read the plan at `./plan-output.txt` and follow it unless the code proves part of it wrong. If you change course, say so explicitly in the final write-up instead of silently drifting from the plan.

## Review Pass 1

You are reviewing a freshly generated fixer patch.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. Review the first patch pass. The original pre-edit snapshot is available at `./source` for diffing.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout. The latest author response is at `./patch-output.txt`. Inspect the current code and changed paths like a strict code reviewer. Focus on correctness, regressions, maintainability, awkward control flow such as avoidable `goto`, missing validation, weak or non-gittable commit message text, and explanations that fail to connect the observed issue evidence to the code change. Also review the maintainer experience: the patch mail should be easy to accept upstream, the user-visible bug should be explained in plain language, subsystem-specific jargon should be defined when first used, and any non-obvious state translation or index remapping in code should have a short explanatory comment. Reject patches that omit `## Evidence Confidence`, use anything other than `reproduced`, `observed`, or `inferred`, or sound more certain than that evidence level allows. Reject patches that claim `reproduced` unless `## Validation` names the concrete reproduction command or test and its result. Reject source patches in security-sensitive areas such as authentication, authorization, credentials, cryptography, sandboxing, permissions, and timing/throttling behavior unless the author reproduced the behavior and explicitly analyzed the security impact of the change; observed-only evidence should become a diagnosis/report, not a PR-ready source diff. Reject patches that invent a reproducer, command line, crash, or user-visible failure not present in the evidence bundle; indirect profiler or strace evidence may justify a cautious mitigation, but the author must say it is indirect instead of presenting it as a confirmed upstream bug. Reject patches that introduce generic libc/std APIs when nearby code or project docs provide a local compat/helper API for the same job, unless the author explicitly justifies the exception. Reject validation that only reports a leaf object/syntax build when a project-level configure/build/test entrypoint exists and was not attempted; if a full build cannot run, the author must show the exact failed command and blocker.

Do not apply code changes in this pass.

Return a short markdown review report. The first non-empty line must be exactly one of:

RESULT: ok
RESULT: fix-needed

If you choose `RESULT: fix-needed`, add a `## Findings` section with concrete, actionable items.

Response

## Plan Pass

## Problem
Fixer observed high CPU attributed to `/usr/bin/python3.13`, but the actual entrypoint was `/usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf`. The captured syscall loop is `wait4(-1, ..., WNOHANG) = ECHILD` followed by `poll(..., 1000) = 0`, which looks like an application-level supervisor event loop waking once per second, not a proven CPython runtime defect.

## Evidence Confidence
inferred

## Proposed Subject
No CPython source patch yet: report/diagnose as insufficient evidence for an upstream `python3.13` change, and request or collect application-level `supervisord` reproduction data before editing CPython.

## Patch Plan
Do not edit files in this pass. The evidence does not identify a CPython code path beyond normal `select.poll()` and `os.wait4()` wrappers.

Relevant local conventions/helpers found: `Modules/selectmodule.c` uses Argument Clinic, `_PyTime_FromMillisecondsObject()`, `_PyDeadline_Init()`, `Py_BEGIN_ALLOW_THREADS`, `PyMem_*`, and `PyErr_SetFromErrno()`; `Modules/posixmodule.c` uses Argument Clinic, `Py_BEGIN_ALLOW_THREADS`, `PyErr_CheckSignals()`, and `posix_error()`. If later evidence proves a CPython bug, any patch should follow those helpers and avoid unnecessary control-flow churn such as a new avoidable `goto`.

No prior Fixer patch or dirty workspace change was found to improve or replace.

## Risks
Patching CPython from this bundle would likely paper over an application behavior in `supervisord`. The sampled process was sleeping in `poll_schedule_timeout`, and the strace timeout is one second, so calling this a CPython busy loop would overstate the evidence.

A runtime change to `select.poll()`, `os.wait4()`, or subprocess waiting could affect broad POSIX behavior and needs a real reproducer before touching upstream code.

## Validation
First project-level command to use if a CPython patch becomes justified: `./configure && make` from the workspace root; if it fails, record the exact missing dependency/generated-file failure before any focused compile.

Bounded independent reproduction attempt: run the actual evidence entrypoint under syscall sampling, e.g. `timeout 10s strace -f -tt -e poll,wait4 /usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf`. In this workspace host, `/usr/bin/supervisord` and `/etc/supervisor/supervisord.conf` are absent, so the collected failure signal cannot be independently reproduced here.

## Patch Pass

Subject: No patch: diagnose supervisord poll loop evidence

## Commit Message
No source change was made. The collected evidence points to a Python-hosted `supervisord` process waking around an application event loop, not to a bounded CPython runtime bug that can be safely fixed upstream.

The likely root cause is outside the CPython wrappers themselves: the trace alternates `wait4(-1, ..., WNOHANG)` returning `ECHILD` with `poll(..., 1000)` timing out, while `/proc` reports the process sleeping in `poll_schedule_timeout`. That is consistent with `supervisord` periodically checking for child processes and polling an fd, not with a proven tight CPU spin inside `select.poll()` or `os.wait4()`.

## Evidence Confidence
inferred

## Issue Connection
The collected signal is a Fixer perf/strace investigation of `/usr/bin/python3.13` running `/usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf`; the sampled syscall sequence repeatedly shows `wait4(..., WNOHANG) = ECHILD` followed by a one-second `poll()` timeout. The `/proc` state is `S (sleeping)` with `wchan` in `poll_schedule_timeout`, which weakens the conclusion that CPython itself is spinning.

At the code level, the plausible CPython surfaces are normal wrappers: `Modules/selectmodule.c` releases the GIL around `poll()` and uses `_PyTime_FromMillisecondsObject()`, `_PyDeadline_Init()`, `PyMem_*`, and `PyErr_SetFromErrno()`; `Modules/posixmodule.c` releases the GIL around `wait4()` and reports errors via `posix_error()`. I did not find evidence tying those wrappers to an incorrect timeout, retry, or error-handling path.

I followed the saved plan and made no source change. The expected effect is that this proposal stays upstreamable by avoiding a speculative CPython patch from profiler/strace evidence that more directly implicates the application entrypoint.

## Git Add Paths
None

## Validation
Project guidance/style checked: `README.rst` points contributors to the CPython Developer Guide and documents the root build/test entrypoints. No `CONTRIBUTING`, `HACKING`, `README-hacking`, `docs/`, or `dev-docs/` path relevant to this subsystem was present. Local helper conventions inspected: Argument Clinic, `_PyTime_*`, `Py_BEGIN_ALLOW_THREADS`, `PyMem_*`, `PyErr_SetFromErrno()`, and `posix_error()`.

Project-level validation run from workspace root: `timeout 300s bash -lc './configure && make'`. This completed with exit 0. The build reported optional module issues: `_ssl` failed to import due to `undefined symbol: TLSv1_method`, and `_dbm`, `_gdbm`, and `_tkinter` were missing.

Independent reproduction attempted: `timeout 10s strace -f -tt -e poll,wait4 /usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf`. This was blocked by sandbox ptrace restrictions: `PTRACE_TRACEME: Operation not permitted` and `ptrace(PTRACE_SEIZE, 5): Operation not permitted`. No local reproduction was obtained.

## Review Pass 1

RESULT: ok

No source diff is present, which matches the `inferred` evidence level and the no-patch diagnosis. The author output includes the required sections, uses a valid evidence classification, avoids claiming local reproduction, and reports both the project-level `./configure && make` validation and the blocked strace reproduction attempt with the exact ptrace blocker.

The diagnosis is appropriately cautious for profiler/strace evidence and ties the collected `supervisord` `wait4(WNOHANG)`/`poll(1000)` pattern to the inspected CPython wrapper code without inventing an upstream CPython bug.

diagnosis-only report

report

python3.13 likely remains stuck in a busy-poll loop. A diagnosis report and patch proposal were created locally.

state: readycreated: 2026-05-18 23:18 UTCvalidation: ready
Published session

Prompt

## Plan Pass

You are planning a fixer patch before any edits happen.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. The original pre-edit snapshot is available at `./source` if you need to inspect it. For interpreter processes, plan from the script/application entrypoint evidence first and include the runtime only as a second investigation target unless the evidence proves a runtime bug.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround. Inspect the relevant code, nearby callers, project contribution docs, and local helper/compat APIs, but do not edit files in this pass.

Return a short markdown plan with these exact sections:

## Problem
## Evidence Confidence
## Proposed Subject
## Patch Plan
## Risks
## Validation

Classify `## Evidence Confidence` as exactly one of `reproduced`, `observed`, or `inferred`. Use `inferred` only for a no-patch diagnosis/report plan unless you can name the extra evidence you will collect before editing; inferred source patches are blocked by Fixer because they are not pull-request-ready. For `observed` source-patch plans, plan to say in the final `## Issue Connection` that the failure was observed by Fixer and not independently reproduced. If the plan touches authentication, authorization, credentials, cryptography, sandboxing, permissions, or timing/throttling behavior, treat it as security-sensitive: do not plan a source patch unless validation can reproduce the behavior and analyze the security impact; otherwise plan a no-patch diagnosis/report. The plan must explain how the proposed code change addresses the observed issue evidence, call out any prior Fixer patch that should be improved or replaced, reject awkward control flow such as avoidable `goto` if there is a cleaner bounded alternative, name any local helper APIs or maintainer conventions the patch should follow, and keep the intended maintainer-facing explanation clear enough that someone unfamiliar with the local complaint wording can still follow the fix. In `## Validation`, name the reproducible configure/build/test entrypoint you will try from the workspace root before any focused leaf compile or smoke check, and include one bounded independent reproduction attempt for the collected failure signal when it is safe and cheap. Do not plan to claim `reproduced` unless that reproduction command or test can actually show the failure.

## Patch Pass

You are working on a bounded fixer proposal.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. Produce the smallest reasonable patch for the target repository, keep the change upstreamable, prefer the clearest control flow available, and do not keep avoidable `goto` when a simpler structure would read better. Before introducing new file, process, allocation, locking, networking, or platform APIs, inspect nearby code and project contribution docs for existing helpers or compatibility wrappers and use those local patterns unless you can explain why they do not fit. Validate from a reproducible workspace-root entrypoint before falling back to focused leaf commands; if a build or test cannot run, report the exact command, the exact blocker, and any narrower check you ran instead. During validation, also try one bounded independent reproduction of the collected failure signal when it is safe and cheap, such as a failing test, smoke command, perf/strace comparison, or before/after runtime check. Only use `reproduced` if that command or test actually reproduced the failure; otherwise keep `observed` and report the reproduction blocker. The final explanation must connect the observed issue evidence to the actual code change, not just paraphrase the diff. Write like a maintainer is going to read the patch mail cold: explain the bug in plain language, define subsystem-specific jargon the first time you need it, and make the causal story obvious. Explicitly classify evidence confidence as `reproduced`, `observed`, or `inferred`: `reproduced` means you reproduced the failure locally; `observed` means Fixer has direct crash/log/trace evidence but you did not independently reproduce it; `inferred` means the source patch is not pull-request-ready, so do not leave a source diff unless you first gather stronger observed/reproduced evidence; otherwise return a no-patch diagnosis/report. For any source-changing `observed` patch, say explicitly in `## Issue Connection` that the failure was observed by Fixer and not independently reproduced. Security-sensitive areas such as authentication, authorization, credentials, cryptography, sandboxing, permissions, and timing/throttling behavior need reproduced evidence plus explicit security-impact analysis before leaving a source diff; otherwise return a no-patch diagnosis/report for human review. If you introduce non-obvious state translation, index remapping, or backend split logic, add a short source comment that explains the invariant being preserved.

Start by explaining the likely root cause from the collected perf, strace, and /proc evidence. If you cannot land a safe patch, leave a diagnosis that is strong enough for an upstream bug report.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround. 

Keep the change narrowly scoped and summarize validation clearly.

In every authoring pass, your final response must start with `Subject: <single-line git commit subject>` and then include these markdown sections exactly:

## Commit Message
A short upstream-friendly explanation of what changed and why. Write it in plain language that a maintainer can follow without local complaint context. If you use subsystem jargon, define it immediately.

## Evidence Confidence
Exactly one word: `reproduced`, `observed`, or `inferred`. Use `reproduced` only when you reproduced the failure locally with a command or test, and include that command/test in `## Validation`. Use `observed` when Fixer has direct crash/log/trace evidence but you did not independently reproduce it. If `## Git Add Paths` lists source files for an `observed` patch, `## Issue Connection` must explicitly say the failure was observed by Fixer and not independently reproduced. Security-sensitive source changes touching authentication, authorization, credentials, cryptography, sandboxing, permissions, or timing/throttling behavior require reproduced evidence and explicit security-impact analysis; otherwise list `None` under `## Git Add Paths` and write a no-patch diagnosis/report. Use `inferred` for profiler/strace/indirect evidence; inferred responses may be no-patch diagnoses or reports, but inferred source patches are not pull-request-ready until stronger evidence is gathered.

## Issue Connection
Write this as maintainer-facing patch mail, not as local Fixer notes. Cover four things explicitly in readable sentences: the user-visible symptom or the exact collected signal, the code-level cause or the cautious inference from evidence, the specific change you made, and the expected effect. Do not invent a reproducer, command line, crash, or user-visible failure that is not present in the evidence bundle. If the evidence is direct-but-not-reproduced, say it was observed by Fixer and not independently reproduced. If the evidence is indirect and you did not gather stronger evidence, do not leave a source diff; write a no-patch diagnosis/report instead. Include an explicit effect sentence such as `The expected effect is ...`, `This should reduce ...`, or `This prevents ...` for source patches. If the logic is non-obvious in code, mention that you added a short explanatory comment.

## Git Add Paths
List the repo-relative paths that belong in the final patch, one per line. Use `None` only when you intentionally made no source changes. Include intentionally new files, and do not list generated build artifacts.

## Validation
List the checks you ran, or say clearly that you could not run them. Include the independent reproduction command/test and result when `## Evidence Confidence` is `reproduced`; if reproduction was attempted but blocked, name the exact blocker and keep confidence at `observed` or `inferred`.

Before editing, read the plan at `./plan-output.txt` and follow it unless the code proves part of it wrong. If you change course, say so explicitly in the final write-up instead of silently drifting from the plan.

## Review Pass 1 (local metadata check)

Local metadata consistency check

## Refinement Pass 1

You are refining a fixer patch after an explicit code review.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. Read the latest author response at `./patch-output.txt`. Read the review report at `./review-1-output.txt`. This is refinement round 1. The original pre-edit snapshot is available at `./source` if you need to compare the current patch against it. Re-read the planning pass at `./plan-output.txt` before editing. The workspace currently changes these repo-relative paths: Lib/__pycache__/__future__.cpython-313.pyc, Lib/__pycache__/_collections_abc.cpython-313.pyc, Lib/__pycache__/_colorize.cpython-313.pyc, Lib/__pycache__/_compat_pickle.cpython-313.pyc, Lib/__pycache__/_compression.cpython-313.pyc, Lib/__pycache__/_opcode_metadata.cpython-313.pyc, Lib/__pycache__/_sitebuiltins.cpython-313.pyc, Lib/__pycache__/_weakrefset.cpython-313.pyc, Lib/__pycache__/abc.cpython-313.pyc, Lib/__pycache__/argparse.cpython-313.pyc, Lib/__pycache__/ast.cpython-313.pyc, Lib/__pycache__/bz2.cpython-313.pyc, Lib/__pycache__/codecs.cpython-313.pyc, Lib/__pycache__/contextlib.cpython-313.pyc, Lib/__pycache__/contextvars.cpython-313.pyc, Lib/__pycache__/copy.cpython-313.pyc, Lib/__pycache__/copyreg.cpython-313.pyc, Lib/__pycache__/datetime.cpython-313.pyc, Lib/__pycache__/dis.cpython-313.pyc, Lib/__pycache__/enum.cpython-313.pyc, Lib/__pycache__/fnmatch.cpython-313.pyc, Lib/__pycache__/functools.cpython-313.pyc, Lib/__pycache__/genericpath.cpython-313.pyc, Lib/__pycache__/gettext.cpython-313.pyc, Lib/__pycache__/glob.cpython-313.pyc, Lib/__pycache__/heapq.cpython-313.pyc, Lib/__pycache__/inspect.cpython-313.pyc, Lib/__pycache__/io.cpython-313.pyc, Lib/__pycache__/keyword.cpython-313.pyc, Lib/__pycache__/linecache.cpython-313.pyc, Lib/__pycache__/locale.cpython-313.pyc, Lib/__pycache__/lzma.cpython-313.pyc, Lib/__pycache__/numbers.cpython-313.pyc, Lib/__pycache__/opcode.cpython-313.pyc, Lib/__pycache__/operator.cpython-313.pyc, Lib/__pycache__/os.cpython-313.pyc, Lib/__pycache__/posixpath.cpython-313.pyc, Lib/__pycache__/reprlib.cpython-313.pyc, Lib/__pycache__/selectors.cpython-313.pyc, Lib/__pycache__/shutil.cpython-313.pyc, Lib/__pycache__/signal.cpython-313.pyc, Lib/__pycache__/site.cpython-313.pyc, Lib/__pycache__/socket.cpython-313.pyc, Lib/__pycache__/ssl.cpython-313.pyc, Lib/__pycache__/stat.cpython-313.pyc, Lib/__pycache__/string.cpython-313.pyc, Lib/__pycache__/struct.cpython-313.pyc, Lib/__pycache__/subprocess.cpython-313.pyc, Lib/__pycache__/textwrap.cpython-313.pyc, Lib/__pycache__/threading.cpython-313.pyc, Lib/__pycache__/token.cpython-313.pyc, Lib/__pycache__/tokenize.cpython-313.pyc, Lib/__pycache__/traceback.cpython-313.pyc, Lib/__pycache__/types.cpython-313.pyc, Lib/__pycache__/typing.cpython-313.pyc, Lib/__pycache__/warnings.cpython-313.pyc, Lib/__pycache__/weakref.cpython-313.pyc, Lib/asyncio/__pycache__/__init__.cpython-313.pyc, Lib/asyncio/__pycache__/base_events.cpython-313.pyc, Lib/asyncio/__pycache__/base_futures.cpython-313.pyc, Lib/asyncio/__pycache__/base_subprocess.cpython-313.pyc, Lib/asyncio/__pycache__/base_tasks.cpython-313.pyc, Lib/asyncio/__pycache__/constants.cpython-313.pyc, Lib/asyncio/__pycache__/coroutines.cpython-313.pyc, Lib/asyncio/__pycache__/events.cpython-313.pyc, Lib/asyncio/__pycache__/exceptions.cpython-313.pyc, Lib/asyncio/__pycache__/format_helpers.cpython-313.pyc, Lib/asyncio/__pycache__/futures.cpython-313.pyc, Lib/asyncio/__pycache__/locks.cpython-313.pyc, Lib/asyncio/__pycache__/log.cpython-313.pyc, Lib/asyncio/__pycache__/mixins.cpython-313.pyc, Lib/asyncio/__pycache__/protocols.cpython-313.pyc, Lib/asyncio/__pycache__/queues.cpython-313.pyc, Lib/asyncio/__pycache__/runners.cpython-313.pyc, Lib/asyncio/__pycache__/selector_events.cpython-313.pyc, Lib/asyncio/__pycache__/sslproto.cpython-313.pyc, Lib/asyncio/__pycache__/staggered.cpython-313.pyc, Lib/asyncio/__pycache__/streams.cpython-313.pyc, Lib/asyncio/__pycache__/subprocess.cpython-313.pyc, Lib/asyncio/__pycache__/taskgroups.cpython-313.pyc, Lib/asyncio/__pycache__/tasks.cpython-313.pyc, Lib/asyncio/__pycache__/threads.cpython-313.pyc, Lib/asyncio/__pycache__/timeouts.cpython-313.pyc, Lib/asyncio/__pycache__/transports.cpython-313.pyc, Lib/asyncio/__pycache__/trsock.cpython-313.pyc, Lib/asyncio/__pycache__/unix_events.cpython-313.pyc, Lib/collections/__pycache__/__init__.cpython-313.pyc, Lib/concurrent/__pycache__/__init__.cpython-313.pyc, Lib/concurrent/futures/__pycache__/__init__.cpython-313.pyc, Lib/concurrent/futures/__pycache__/_base.cpython-313.pyc, Lib/encodings/__pycache__/__init__.cpython-313.pyc, Lib/encodings/__pycache__/aliases.cpython-313.pyc, Lib/encodings/__pycache__/ascii.cpython-313.pyc, Lib/encodings/__pycache__/utf_8.cpython-313.pyc, Lib/importlib/__pycache__/__init__.cpython-313.pyc, Lib/importlib/__pycache__/_abc.cpython-313.pyc, Lib/logging/__pycache__/__init__.cpython-313.pyc, Lib/pathlib/__pycache__/__init__.cpython-313.pyc, Lib/pathlib/__pycache__/_abc.cpython-313.pyc, Lib/pathlib/__pycache__/_local.cpython-313.pyc, Lib/re/__pycache__/__init__.cpython-313.pyc, Lib/re/__pycache__/_casefix.cpython-313.pyc, Lib/re/__pycache__/_compiler.cpython-313.pyc, Lib/re/__pycache__/_constants.cpyth

[truncated 29270 bytes]

Response

## Plan Pass

## Problem
Fixer observed high CPU attributed to `/usr/bin/python3.13`, but the command line is `/usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf`. The evidence shows application-level polling: repeated `wait4(-1, ..., WNOHANG) = -1 ECHILD` followed by `poll(..., 1000)` timeouts. That is not enough to identify a CPython runtime defect, and the process state/wchan show it sleeping in `poll_schedule_timeout`.

## Evidence Confidence
inferred

The bundle is profiler/strace evidence only. I could not inspect the exact raw artifact directory named in the bundle because it is not present locally. A same-fingerprint available artifact also points at an application process using periodic `poll`, not a CPython interpreter loop.

## Proposed Subject
No CPython source patch in this pass. Prepare a no-patch diagnosis/report: the observed behavior should be investigated in the script/application entrypoint (`supervisord`) or its configuration before changing Python 3.13 runtime code.

## Patch Plan
Do not edit CPython unless additional evidence proves a runtime bug.

If more evidence is collected before editing, start from the application entrypoint: capture Python stack frames for the running `supervisord`, map fd `4`, and identify the Python caller issuing the 1-second poll and child reap check. Only then inspect CPython as a secondary target.

If a CPython patch later becomes justified, follow CPython conventions from `README.rst` and the Developer Guide. Relevant local patterns found: `selectmodule.c` uses `_PyDeadline_Init`, `_PyDeadline_Get`, timeout recomputation, and `Py_BEGIN_ALLOW_THREADS`; `Lib/subprocess.py` protects `waitpid` with `_waitpid_lock`. No relevant prior Fixer patch was found in `debian/patches` or the clean git status. Avoid awkward control flow such as new `goto`; use the existing bounded loop/deadline style.

## Risks
A source patch based on this evidence would likely mask normal application polling or supervisor behavior and would not be pull-request-ready upstream.

Changing `select.poll`, `os.wait4`, or subprocess wait behavior from this signal alone risks regressions in timeout semantics, EINTR handling, and child-process accounting.

## Validation
Before any future source patch, try the project-level entrypoint from the workspace root: `./configure && make`. If that fails due missing dependencies or generated files, record the exact failure and then run the narrowest relevant check.

For a real CPython change in this area, follow with targeted tests such as `./python -m test test_select test_subprocess test_wait4`. A bounded independent reproduction attempt should first run the captured application command, or a minimized script derived from it, under `strace -tt -e poll,wait4` to show the failure signal before claiming reproduction.

## Patch Pass

Subject: Diagnose supervisord polling evidence without CPython changes

## Commit Message
No source change. The collected signal points to a Python application process running `supervisord`, not to a confirmed CPython runtime defect. CPython’s `README.rst` points contributors to the Developer Guide and the normal `./configure`, `make`, and `make test` workflow; nearby runtime patterns include `_PyDeadline_*` and `Py_BEGIN_ALLOW_THREADS` in `selectmodule.c`, and `_waitpid_lock` around child waiting in `Lib/subprocess.py`.

## Evidence Confidence
inferred

## Issue Connection
Fixer collected perf, strace, and `/proc` evidence for `/usr/bin/python3.13` running `/usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf`. The strace excerpt shows a repeating application-level sequence: `wait4(-1, ..., WNOHANG)` returning `ECHILD`, then `poll(..., 1000)` timing out after about one second. The `/proc` kernel stack and `wchan` place the sampled thread in `poll_schedule_timeout`, meaning it was sleeping in the kernel poll path during capture rather than spinning in a tight CPython loop.

The cautious code-level inference is that this is a `supervisord` event loop or configuration issue, or a profiler attribution issue around an interpreted application, not enough evidence for changing CPython’s `select`, `wait4`, subprocess, or memory-allocation code. The backtrace has unresolved frames and a misleading top frame in `pthread_attr_destroy`, but it does not identify a CPython invariant violation.

I made no source change. The expected effect is that no upstream CPython behavior is changed based on indirect evidence that does not yet identify a CPython bug. A useful upstream report should instead include Python-level stack frames from the running `supervisord`, the target of fd `4`, and confirmation of which application code issues the one-second poll.

## Git Add Paths
None

## Validation
Ran the project-level entrypoint from the workspace root:

`./configure && make`

Result: command exited 0. The build completed, but reported `_ssl` was built and then removed because it failed to import with `undefined symbol: TLSv1_method`; optional `_dbm`, `_gdbm`, and `_tkinter` dependencies were also missing.

Independent reproduction was not completed. I checked the captured command prerequisites and found `/usr/bin/supervisord` and `/etc/supervisor/supervisord.conf` are missing in this environment, so the exact collected process could not be run under `strace`. I also did not start a host supervisor configuration because that could manage host services. No focused CPython tests were run because there is no source diff to validate.

## Review Pass 1 (local metadata check)

RESULT: fix-needed

## Findings
1. Patch metadata drift: the workspace currently changes `Lib/__pycache__/__future__.cpython-313.pyc`, `Lib/__pycache__/_collections_abc.cpython-313.pyc`, `Lib/__pycache__/_colorize.cpython-313.pyc`, `Lib/__pycache__/_compat_pickle.cpython-313.pyc`, `Lib/__pycache__/_compression.cpython-313.pyc`, `Lib/__pycache__/_opcode_metadata.cpython-313.pyc`, `Lib/__pycache__/_sitebuiltins.cpython-313.pyc`, `Lib/__pycache__/_weakrefset.cpython-313.pyc`, `Lib/__pycache__/abc.cpython-313.pyc`, `Lib/__pycache__/argparse.cpython-313.pyc`, `Lib/__pycache__/ast.cpython-313.pyc`, `Lib/__pycache__/bz2.cpython-313.pyc`, `Lib/__pycache__/codecs.cpython-313.pyc`, `Lib/__pycache__/contextlib.cpython-313.pyc`, `Lib/__pycache__/contextvars.cpython-313.pyc`, `Lib/__pycache__/copy.cpython-313.pyc`, `Lib/__pycache__/copyreg.cpython-313.pyc`, `Lib/__pycache__/datetime.cpython-313.pyc`, `Lib/__pycache__/dis.cpython-313.pyc`, `Lib/__pycache__/enum.cpython-313.pyc`, `Lib/__pycache__/fnmatch.cpython-313.pyc`, `Lib/__pycache__/functools.cpython-313.pyc`, `Lib/__pycache__/genericpath.cpython-313.pyc`, `Lib/__pycache__/gettext.cpython-313.pyc`, `Lib/__pycache__/glob.cpython-313.pyc`, `Lib/__pycache__/heapq.cpython-313.pyc`, `Lib/__pycache__/inspect.cpython-313.pyc`, `Lib/__pycache__/io.cpython-313.pyc`, `Lib/__pycache__/keyword.cpython-313.pyc`, `Lib/__pycache__/linecache.cpython-313.pyc`, `Lib/__pycache__/locale.cpython-313.pyc`, `Lib/__pycache__/lzma.cpython-313.pyc`, `Lib/__pycache__/numbers.cpython-313.pyc`, `Lib/__pycache__/opcode.cpython-313.pyc`, `Lib/__pycache__/operator.cpython-313.pyc`, `Lib/__pycache__/os.cpython-313.pyc`, `Lib/__pycache__/posixpath.cpython-313.pyc`, `Lib/__pycache__/reprlib.cpython-313.pyc`, `Lib/__pycache__/selectors.cpython-313.pyc`, `Lib/__pycache__/shutil.cpython-313.pyc`, `Lib/__pycache__/signal.cpython-313.pyc`, `Lib/__pycache__/site.cpython-313.pyc`, `Lib/__pycache__/socket.cpython-313.pyc`, `Lib/__pycache__/ssl.cpython-313.pyc`, `Lib/__pycache__/stat.cpython-313.pyc`, `Lib/__pycache__/string.cpython-313.pyc`, `Lib/__pycache__/struct.cpython-313.pyc`, `Lib/__pycache__/subprocess.cpython-313.pyc`, `Lib/__pycache__/textwrap.cpython-313.pyc`, `Lib/__pycache__/threading.cpython-313.pyc`, `Lib/__pycache__/token.cpython-313.pyc`, `Lib/__pycache__/tokenize.cpython-313.pyc`, `Lib/__pycache__/traceback.cpython-313.pyc`, `Lib/__pycache__/types.cpython-313.pyc`, `Lib/__pycache__/typing.cpython-313.pyc`, `Lib/__pycache__/warnings.cpython-313.pyc`, `Lib/__pycache__/weakref.cpython-313.pyc`, `Lib/asyncio/__pycache__/__init__.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_events.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_futures.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_subprocess.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_tasks.cpython-313.pyc`, `Lib/asyncio/__pycache__/constants.cpython-313.pyc`, `Lib/asyncio/__pycache__/coroutines.cpython-313.pyc`, `Lib/asyncio/__pycache__/events.cpython-313.pyc`, `Lib/asyncio/__pycache__/exceptions.cpython-313.pyc`, `Lib/asyncio/__pycache__/format_helpers.cpython-313.pyc`, `Lib/asyncio/__pycache__/futures.cpython-313.pyc`, `Lib/asyncio/__pycache__/locks.cpython-313.pyc`, `Lib/asyncio/__pycache__/log.cpython-313.pyc`, `Lib/asyncio/__pycache__/mixins.cpython-313.pyc`, `Lib/asyncio/__pycache__/protocols.cpython-313.pyc`, `Lib/asyncio/__pycache__/queues.cpython-313.pyc`, `Lib/asyncio/__pycache__/runners.cpython-313.pyc`, `Lib/asyncio/__pycache__/selector_events.cpython-313.pyc`, `Lib/asyncio/__pycache__/sslproto.cpython-313.pyc`, `Lib/asyncio/__pycache__/staggered.cpython-313.pyc`, `Lib/asyncio/__pycache__/streams.cpython-313.pyc`, `Lib/asyncio/__pycache__/subprocess.cpython-313.pyc`, `Lib/asyncio/__pycache__/taskgroups.cpython-313.pyc`, `Lib/asyncio/__pycache__/tasks.cpython-313.pyc`, `Lib/asyncio/__pycache__/threads.cpython-313.pyc`, `Lib/asyncio/__pycache__/timeouts.cpython-313.pyc`, `Lib/asyncio/__pycache__/transports.cpython-313.pyc`, `Lib/asyncio/__pycache__/trsock.cpython-313.pyc`, `Lib/asyncio/__pycache__/unix_events.cpython-313.pyc`, `Lib/collections/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/futures/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/futures/__pycache__/_base.cpython-313.pyc`, `Lib/encodings/__pycache__/__init__.cpython-313.pyc`, `Lib/encodings/__pycache__/aliases.cpython-313.pyc`, `Lib/encodings/__pycache__/ascii.cpython-313.pyc`, `Lib/encodings/__pycache__/utf_8.cpython-313.pyc`, `Lib/importlib/__pycache__/__init__.cpython-313.pyc`, `Lib/importlib/__pycache__/_abc.cpython-313.pyc`, `Lib/logging/__pycache__/__init__.cpython-313.pyc`, `Lib/pathlib/__pycache__/__init__.cpython-313.pyc`, `Lib/pathlib/__pycache__/_abc.cpython-313.pyc`, `Lib/pathlib/__pycache__/_local.cpython-313.pyc`, `Lib/re/__pycache__/__init__.cpython-313.pyc`, `Lib/re/__pycache__/_casefix.cpython-313.pyc`, `Lib/re/__pycache__/_compiler.cpython-313.pyc`, `Lib/re/__pycache__/_constants.cpython-313.pyc`, `Lib/re/__pycache__/_parser.cpython-313.pyc`, `Lib/sysconfig/__pycache__/__init__.cpython-313.pyc`, `Lib/sysconfig/__pycache__/__main__.cpython-313.pyc`, `Lib/xml/__pycache__/__init__.cpython-313.pyc`, `Lib/xml/etree/__pycache__/ElementPath.cpython-313.pyc`, `Lib/xml/etree/__pycache__/__init__.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/__init__.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/_common.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/_tzpath.cpython-313.pyc`, `Makefile`, `Makefile.pre`, `Misc/python-config.sh`, `Misc/python-embed.pc`, `Misc/python.pc`, `Modules/Setup.bootstrap`, `Modules/Setup.local`, `Modules/Setup.stdlib`, `Modules/_abc.o`, `Modules/_asyncio.cpython-313-x86_64-linux-gnu.so`, `Modules/_asynciomodule.o`, `Modules/_bisect.cpython-313-x86_64-linux-gnu.so`, `Modules/_bisectmodule.o`, `Modules/_blake2.cpython-313-x86_64-linux-gnu.so`, `Modules/_blake2/blake2b_impl.o`, `Modules/_blake2/blake2module.o`, `Modules/_blake2/blake2s_impl.o`, `Modules/_bz2.cpython-313-x86_64-linux-gnu.so`, `Modules/_bz2module.o`, `Modules/_codecs_cn.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_hk.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_iso2022.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_jp.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_kr.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_tw.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecsmodule.o`, `Modules/_collectionsmodule.o`, `Modules/_contextvars.cpython-313-x86_64-linux-gnu.so`, `Modules/_contextvarsmodule.o`, `Modules/_csv.cpython-313-x86_64-linux-gnu.so`, `Modules/_csv.o`, `Modules/_ctypes.cpython-313-x86_64-linux-gnu.so`, `Modules/_ctypes/_ctypes.o`, `Modules/_ctypes/_ctypes_test.o`, `Modules/_ctypes/callbacks.o`, `Modules/_ctypes/callproc.o`, `Modules/_ctypes/cfield.o`, `Modules/_ctypes/stgdict.o`, `Modules/_ctypes_test.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses_panel.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses_panel.o`, `Modules/_cursesmodule.o`, `Modules/_datetime.cpython-313-x86_64-linux-gnu.so`, `Modules/_datetimemodule.o`, `Modules/_decimal.cpython-313-x86_64-linux-gnu.so`, `Modules/_decimal/_decimal.o`, `Modules/_decimal/libmpdec/basearith.o`, `Modules/_decimal/libmpdec/constants.o`, `Modules/_decimal/libmpdec/context.o`, `Modules/_decimal/libmpdec/convolute.o`, `Modules/_decimal/libmpdec/crt.o`, `Modules/_decimal/libmpdec/difradix2.o`, `Modules/_decimal/libmpdec/fnt.o`, `Modules/_decimal/libmpdec/fourstep.o`, `Modules/_decimal/libmpdec/io.o`, `Modules/_decimal/libmpdec/libmpdec.a`, `Modules/_decimal/libmpdec/mpalloc.o`, `Modules/_decimal/libmpdec/mpdecimal.o`, `Modules/_decimal/libmpdec/numbertheory.o`, `Modules/_decimal/libmpdec/sixstep.o`, `Modules/_decimal/libmpdec/transpose.o`, `Modules/_elementtree.cpython-313-x86_64-linux-gnu.so`, `Modules/_elementtree.o`, `Modules/_functoolsmodule.o`, `Modules/_hacl/Hacl_Hash_MD5.o`, `Modules/_hacl/Hacl_Hash_SHA1.o`, `Modules/_hacl/Hacl_Hash_SHA2.o`, `Modules/_hacl/Hacl_Hash_SHA3.o`, `Modules/_hacl/libHacl_Hash_SHA2.a`, `Modules/_hashlib.cpython-313-x86_64-linux-gnu.so`, `Modules/_hashopenssl.o`, `Modules/_heapq.cpython-313-x86_64-linux-gnu.so`, `Modules/_heapqmodule.o`, `Modules/_interpchannels.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpchannelsmodule.o`, `Modules/_interpqueues.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpqueuesmodule.o`, `Modules/_interpreters.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpretersmodule.o`, `Modules/_io/_iomodule.o`, `Modules/_io/bufferedio.o`, `Modules/_io/bytesio.o`, `Modules/_io/fileio.o`, `Modules/_io/iobase.o`, `Modules/_io/stringio.o`, `Modules/_io/textio.o`, `Modules/_json.cpython-313-x86_64-linux-gnu.so`, `Modules/_json.o`, `Modules/_localemodule.o`, `Modules/_lsprof.cpython-313-x86_64-linux-gnu.so`, `Modules/_lsprof.o`, `Modules/_lzma.cpython-313-x86_64-linux-gnu.so`, `Modules/_lzmamodule.o`, `Modules/_md5.cpython-313-x86_64-linux-gnu.so`, `Modules/_multibytecodec.cpython-313-x86_64-linux-gnu.so`, `Modules/_multiprocessing.cpython-313-x86_64-linux-gnu.so`, `Modules/_multiprocessing/multiprocessing.o`, `Modules/_multiprocessing/posixshmem.o`, `Modules/_multiprocessing/semaphore.o`, `Modules/_opcode.cpython-313-x86_64-linux-gnu.so`, `Modules/_opcode.o`, `Modules/_operator.o`, `Modules/_pickle.cpython-313-x86_64-linux-gnu.so`, `Modules/_pickle.o`, `Modules/_posixshmem.cpython-313-x86_64-linux-gnu.so`, `Modules/_posixsubprocess.cpython-313-x86_64-linux-gnu.so`, `Modules/_posixsubprocess.o`, `Modules/_queue.cpython-313-x86_64-linux-gnu.so`, `Modules/_queuemodule.o`, `Modules/_random.cpython-313-x86_64-linux-gnu.so`, `Modules/_randommodule.o`, `Modules/_sha1.cpython-313-x86_64-linux-gnu.so`, `Modules/_sha2.cpython-313-x86_64-linux-gnu.so`, `Modules/_sha3.cpython-313-x86_64-linux-gnu.so`, `Modules/_socket.cpython-313-x86_64-linux-gnu.so`, `Modules/_sqlite/blob.o`, `Modules/_sqlite/connection.o`, `Modules/_sqlite/cursor.o`, `Modules/_sqlite/microprotocols.o`, `Modules/_sqlite/module.o`, `Modules/_sqlite/prepare_protocol.o`, `Modules/_sqlite/row.o`, `Modules/_sqlite/statement.o`, `Modules/_sqlite/util.o`, `Modules/_sqlite3.cpython-313-x86_64-linux-gnu.so`, `Modules/_sre/sre.o`, `Modules/_ssl.o`, `Modules/_ssl_failed.cpython-313-x86_64-linux-gnu.so`, `Modules/_stat.o`, `Modules/_statistics.cpython-313-x86_64-linux-gnu.so`, `Modules/_statisticsmodule.o`, `Modules/_struct.cpython-313-x86_64-linux-gnu.so`, `Modules/_struct.o`, `Modules/_suggestions.o`, `Modules/_sysconfig.o`, `Modules/_testbuffer.cpython-313-x86_64-linux-gnu.so`, `Modules/_testbuffer.o`, `Modules/_testcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testcapi/abstract.o`, `Modules/_testcapi/buffer.o`, `Modules/_testcapi/bytes.o`, `Modules/_testcapi/code.o`, `Modules/_testcapi/codec.o`, `Modules/_testcapi/complex.o`, `Modules/_testcapi/datetime.o`, `Modules/_testcapi/dict.o`, `Modules/_testcapi/docstring.o`, `Modules/_testcapi/exceptions.o`, `Modules/_testcapi/file.o`, `Modules/_testcapi/float.o`, `Modules/_testcapi/gc.o`, `Modules/_testcapi/getargs.o`, `Modules/_testcapi/hash.o`, `Modules/_testcapi/heaptype.o`, `Modules/_testcapi/immortal.o`, `Modules/_testcapi/list.o`, `Modules/_testcapi/long.o`, `Modules/_testcapi/mem.o`, `Modules/_testcapi/monitoring.o`, `Modules/_testcapi/numbers.o`, `Modules/_testcapi/object.o`, `Modules/_testcapi/pyatomic.o`, `Modules/_testcapi/run.o`, `Modules/_testcapi/set.o`, `Modules/_testcapi/structmember.o`, `Modules/_testcapi/time.o`, `Modules/_testcapi/tuple.o`, `Modules/_testcapi/unicode.o`, `Modules/_testcapi/vectorcall.o`, `Modules/_testcapi/watchers.o`, `Modules/_testcapimodule.o`, `Modules/_testclinic.cpython-313-x86_64-linux-gnu.so`, `Modules/_testclinic.o`, `Modules/_testclinic_limited.cpython-313-x86_64-linux-gnu.so`, `Modules/_testclinic_limited.o`, `Modules/_testexternalinspection.cpython-313-x86_64-linux-gnu.so`, `Modules/_testexternalinspection.o`, `Modules/_testimportmultiple.cpython-313-x86_64-linux-gnu.so`, `Modules/_testimportmultiple.o`, `Modules/_testinternalcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testinternalcapi.o`, `Modules/_testinternalcapi/pytime.o`, `Modules/_testinternalcapi/set.o`, `Modules/_testinternalcapi/test_critical_sections.o`, `Modules/_testinternalcapi/test_lock.o`, `Modules/_testlimitedcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testlimitedcapi.o`, `Modules/_testlimitedcapi/abstract.o`, `Modules/_testlimitedcapi/bytearray.o`, `Modules/_testlimitedcapi/bytes.o`, `Modules/_testlimitedcapi/complex.o`, `Modules/_testlimitedcapi/dict.o`, `Modules/_testlimitedcapi/eval.o`, `Modules/_testlimitedcapi/file.o`, `Modules/_testlimitedcapi/float.o`, `Modules/_testlimitedcapi/heaptype_relative.o`, `Modules/_testlimitedcapi/import.o`, `Modules/_testlimitedcapi/list.o`, `Modules/_testlimitedcapi/long.o`, `Modules/_testlimitedcapi/object.o`, `Modules/_testlimitedcapi/pyos.o`, `Modules/_testlimitedcapi/set.o`, `Modules/_testlimitedcapi/sys.o`, `Modules/_testlimitedcapi/tuple.o`, `Modules/_testlimitedcapi/unicode.o`, `Modules/_testlimitedcapi/vectorcall_limited.o`, `Modules/_testmultiphase.cpython-313-x86_64-linux-gnu.so`, `Modules/_testmultiphase.o`, `Modules/_testsinglephase.cpython-313-x86_64-linux-gnu.so`, `Modules/_testsinglephase.o`, `Modules/_threadmodule.o`, `Modules/_tracemalloc.o`, `Modules/_typingmodule.o`, `Modules/_uuid.cpython-313-x86_64-linux-gnu.so`, `Modules/_uuidmodule.o`, `Modules/_weakref.o`, `Modules/_xxtestfuzz.cpython-313-x86_64-linux-gnu.so`, `Modules/_xxtestfuzz/_xxtestfuzz.o`, `Modules/_xxtestfuzz/fuzzer.o`, `Modules/_zoneinfo.cpython-313-x86_64-linux-gnu.so`, `Modules/_zoneinfo.o`, `Modules/array.cpython-313-x86_64-linux-gnu.so`, `Modules/arraymodule.o`, `Modules/atexitmodule.o`, `Modules/binascii.cpython-313-x86_64-linux-gnu.so`, `Modules/binascii.o`, `Modules/cjkcodecs/_codecs_cn.o`, `Modules/cjkcodecs/_codecs_hk.o`, `Modules/cjkcodecs/_codecs_iso2022.o`, `Modules/cjkcodecs/_codecs_jp.o`, `Modules/cjkcodecs/_codecs_kr.o`, `Modules/cjkcodecs/_codecs_tw.o`, `Modules/cjkcodecs/multibytecodec.o`, `Modules/cmath.cpython-313-x86_64-linux-gnu.so`, `Modules/cmathmodule.o`, `Modules/config.c`, `Modules/config.o`, `Modules/errnomodule.o`, `Modules/expat/libexpat.a`, `Modules/expat/xmlparse.o`, `Modules/expat/xmlrole.o`, `Modules/expat/xmltok.o`, `Modules/faulthandler.o`, `Modules/fcntl.cpython-313-x86_64-linux-gnu.so`, `Modules/fcntlmodule.o`, `Modules/gcmodule.o`, `Modules/getbuildinfo.o`, `Modules/getpath.o`, `Modules/getpath_noop.o`, `Modules/grp.cpython-313-x86_64-linux-gnu.so`, `Modules/grpmodule.o`, `Modules/itertoolsmodule.o`, `Modules/ld_so_aix`, `Modules/main.o`, `Modules/math.cpython-313-x86_64-linux-gnu.so`, `Modules/mathmodule.o`, `Modules/md5module.o`, `Modules/mmap.cpython-313-x86_64-linux-gnu.so`, `Modules/mmapmodule.o`, `Modules/posixmodule.o`, `Modules/pwdmodule.o`, `Modules/pyexpat.cpython-313-x86_64-linux-gnu.so`, `Modules/pyexpat.o`, `Modules/readline.cpython-313-x86_64-linux-gnu.so`, `Modules/readline.o`, `Modules/resource.cpython-313-x86_64-linux-gnu.so`, `Modules/resource.o`, `Modules/rotatingtree.o`, `Modules/select.cpython-313-x86_64-linux-gnu.so`, `Modules/selectmodule.o`, `Modules/sha1module.o`, `Modules/sha2module.o`, `Modules/sha3module.o`, `Modules/signalmodule.o`, `Modules/socketmodule.o`, `Modules/symtablemodule.o`, `Modules/syslog.cpython-313-x86_64-linux-gnu.so`, `Modules/syslogmodule.o`, `Modules/termios.cpython-313-x86_64-linux-gnu.so`, `Modules/termios.o`, `Modules/timemodule.o`, `Modules/unicodedata.cpython-313-x86_64-linux-gnu.so`, `Modules/unicodedata.o`, `Modules/xxlimited.cpython-313-x86_64-linux-gnu.so`, `Modules/xxlimited.o`, `Modules/xxlimited_35.cpython-313-x86_64-linux-gnu.so`, `Modules/xxlimited_35.o`, `Modules/xxsubtype.cpython-313-x86_64-linux-gnu.so`, `Modules/xxsubtype.o`, `Modules/zlib.cpython-313-x86_64-linux-gnu.so`, `Modules/zlibmodule.o`, `Objects/abstract.o`, `Objects/boolobject.o`, `Objects/bytearrayobject.o`, `Objects/bytes_methods.o`, `Objects/bytesobject.o`, `Objects/call.o`, `Objects/capsule.o`, `Objects/cellobject.o`, `Objects/classobject.o`, `Objects/codeobject.o`, `Objects/complexobject.o`, `Objects/descrobject.o`, `Objects/dictobject.o`, `Objects/enumobject.o`, `Objects/exceptions.o`, `Objects/fileobject.o`, `Objects/floatobject.o`, `Objects/frameobject.o`, `Objects/funcobject.o`, `Objects/genericaliasobject.o`, `Objects/genobject.o`, `Objects/iterobject.o`, `Objects/listobject.o`, `Objects/longobject.o`, `Objects/memoryobject.o`, `Objects/methodobject.o`, `Objects/moduleobject.o`, `Objects/namespaceobject.o`, `Objects/object.o`, `Objects/obmalloc.o`, `Objects/odictobject.o`, `Objects/picklebufobject.o`, `Objects/rangeobject.o`, `Objects/setobject.o`, `Objects/sliceobject.o`, `Objects/structseq.o`, `Objects/tupleobject.o`, `Objects/typeobject.o`, `Objects/typevarobject.o`, `Objects/unicodectype.o`, `Objects/unicodeobject.o`, `Objects/unionobject.o`, `Objects/weakrefobject.o`, `Parser/action_helpers.o`, `Parser/lexer/buffer.o`, `Parser/lexer/lexer.o`, `Parser/lexer/state.o`, `Parser/myreadline.o`, `Parser/parser.o`, `Parser/peg_api.o`, `Parser/pegen.o`, `Parser/pegen_errors.o`, `Parser/string_parser.o`, `Parser/token.o`, `Parser/tokenizer/file_tokenizer.o`, `Parser/tokenizer/helpers.o`, `Parser/tokenizer/readline_tokenizer.o`, `Parser/tokenizer/string_tokenizer.o`, `Parser/tokenizer/utf8_tokenizer.o`, `Programs/_bootstrap_python.o`, `Programs/_freeze_module`, `Programs/_freeze_module.o`, `Programs/_testembed`, `Programs/_testembed.o`, `Programs/python.o`, `Python/Python-ast.o`, `Python/Python-tokenize.o`, `Python/_warnings.o`, `Python/asdl.o`, `Python/asm_trampoline.o`, `Python/assemble.o`, `Python/ast.o`, `Python/ast_opt.o`, `Python/ast_unparse.o`, `Python/bltinmodule.o`, `Python/bootstrap_hash.o`, `Python/brc.o`, `Python/ceval.o`, `Python/ceval_gil.o`, `Python/codecs.o`, `Python/compile.o`, `Python/context.o`, `Python/critical_section.o`, `Python/crossinterp.o`, `Python/dtoa.o`, `Python/dynamic_annotations.o`, `Python/dynload_shlib.o`, `Python/errors.o`, `Python/fileutils.o`, `Python/flowgraph.o`, `Python/formatter_unicode.o`, `Python/frame.o`, `Python/frozen.o`, `Python/frozen_modules/__hello__.h`, `Python/frozen_modules/__phello__.h`, `Python/frozen_modules/__phello__.ham.eggs.h`, `Python/frozen_modules/__phello__.ham.h`, `Python/frozen_modules/__phello__.spam.h`, `Python/frozen_modules/_collections_abc.h`, `Python/frozen_modules/_sitebuiltins.h`, `Python/frozen_modules/abc.h`, `Python/frozen_modules/codecs.h`, `Python/frozen_modules/frozen_only.h`, `Python/frozen_modules/genericpath.h`, `Python/frozen_modules/getpath.h`, `Python/frozen_modules/importlib._bootstrap.h`, `Python/frozen_modules/importlib._bootstrap_external.h`, `Python/frozen_modules/importlib.machinery.h`, `Python/frozen_modules/importlib.util.h`, `Python/frozen_modules/io.h`, `Python/frozen_modules/ntpath.h`, `Python/frozen_modules/os.h`, `Python/frozen_modules/posixpath.h`, `Python/frozen_modules/runpy.h`, `Python/frozen_modules/site.h`, `Python/frozen_modules/stat.h`, `Python/frozen_modules/zipimport.h`, `Python/frozenmain.o`, `Python/future.o`, `Python/gc.o`, `Python/gc_free_threading.o`, `Python/gc_gil.o`, `Python/getargs.o`, `Python/getcompiler.o`, `Python/getcopyright.o`, `Python/getopt.o`, `Python/getplatform.o`, `Python/getversion.o`, `Python/hamt.o`, `Python/hashtable.o`, `Python/import.o`, `Python/importdl.o`, `Python/initconfig.o`, `Python/instruction_sequence.o`, `Python/instrumentation.o`, `Python/interpconfig.o`, `Python/intrinsics.o`, `Python/jit.o`, `Python/legacy_tracing.o`, `Python/lock.o`, `Python/marshal.o`, `Python/modsupport.o`, `Python/mysnprintf.o`, `Python/mystrtoul.o`, `Python/object_stack.o`, `Python/optimizer.o`, `Python/optimizer_analysis.o`, `Python/optimizer_symbols.o`, `Python/parking_lot.o`, `Python/pathconfig.o`, `Python/perf_jit_trampoline.o`, `Python/perf_trampoline.o`, `Python/preconfig.o`, `Python/pyarena.o`, `Python/pyctype.o`, `Python/pyfpe.o`, `Python/pyhash.o`, `Python/pylifecycle.o`, `Python/pymath.o`, `Python/pystate.o`, `Python/pystrcmp.o`, `Python/pystrhex.o`, `Python/pystrtod.o`, `Python/pythonrun.o`, `Python/pytime.o`, `Python/qsbr.o`, `Python/specialize.o`, `Python/structmember.o`, `Python/suggestions.o`, `Python/symtable.o`, `Python/sysmodule.o`, `Python/thread.o`, `Python/traceback.o`, `Python/tracemalloc.o`, `_bootstrap_python`, `build/lib.linux-x86_64-3.13/__pycache__/_sysconfigdata__linux_x86_64-linux-gnu.cpython-313.pyc`, `build/lib.linux-x86_64-3.13/_asyncio.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_bisect.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_blake2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_bz2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_cn.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_hk.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_iso2022.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_jp.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_kr.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_tw.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_contextvars.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_csv.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_ctypes.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_ctypes_test.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_curses.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_curses_panel.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_datetime.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_decimal.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_elementtree.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_hashlib.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_heapq.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpchannels.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpqueues.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpreters.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_json.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_lsprof.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_lzma.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_md5.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_multibytecodec.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_multiprocessing.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_opcode.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_pickle.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_posixshmem.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_posixsubprocess.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_queue.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_random.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha1.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha3.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_socket.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sqlite3.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_statistics.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_struct.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sysconfigdata__linux_x86_64-linux-gnu.py`, `build/lib.linux-x86_64-3.13/_testbuffer.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testclinic.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testclinic_limited.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testexternalinspection.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testimportmultiple.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testinternalcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testlimitedcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testmultiphase.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testsinglephase.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_uuid.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_xxtestfuzz.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_zoneinfo.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/array.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/binascii.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/cmath.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/fcntl.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/grp.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/math.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/mmap.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/pyexpat.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/readline.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/resource.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/select.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/syslog.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/termios.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/unicodedata.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxlimited.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxlimited_35.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxsubtype.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/zlib.cpython-313-x86_64-linux-gnu.so`, `build/scripts-3.13/idle3.13`, `build/scripts-3.13/pydoc3.13`, `config.log`, `config.status`, `libpython3.13.a`, `platform`, `pybuilddir.txt`, `pyconfig.h`, `python`, `python-config`, `python-config.py`, `python-gdb.py`, but `## Git Add Paths` lists `None`. Update `## Git Add Paths` to match the real shipped file set exactly, and make sure `## Issue Connection` explains every functional file that remains in the patch.
2. Missing from `## Git Add Paths`: `Lib/__pycache__/__future__.cpython-313.pyc`, `Lib/__pycache__/_collections_abc.cpython-313.pyc`, `Lib/__pycache__/_colorize.cpython-313.pyc`, `Lib/__pycache__/_compat_pickle.cpython-313.pyc`, `Lib/__pycache__/_compression.cpython-313.pyc`, `Lib/__pycache__/_opcode_metadata.cpython-313.pyc`, `Lib/__pycache__/_sitebuiltins.cpython-313.pyc`, `Lib/__pycache__/_weakrefset.cpython-313.pyc`, `Lib/__pycache__/abc.cpython-313.pyc`, `Lib/__pycache__/argparse.cpython-313.pyc`, `Lib/__pycache__/ast.cpython-313.pyc`, `Lib/__pycache__/bz2.cpython-313.pyc`, `Lib/__pycache__/codecs.cpython-313.pyc`, `Lib/__pycache__/contextlib.cpython-313.pyc`, `Lib/__pycache__/contextvars.cpython-313.pyc`, `Lib/__pycache__/copy.cpython-313.pyc`, `Lib/__pycache__/copyreg.cpython-313.pyc`, `Lib/__pycache__/datetime.cpython-313.pyc`, `Lib/__pycache__/dis.cpython-313.pyc`, `Lib/__pycache__/enum.cpython-313.pyc`, `Lib/__pycache__/fnmatch.cpython-313.pyc`, `Lib/__pycache__/functools.cpython-313.pyc`, `Lib/__pycache__/genericpath.cpython-313.pyc`, `Lib/__pycache__/gettext.cpython-313.pyc`, `Lib/__pycache__/glob.cpython-313.pyc`, `Lib/__pycache__/heapq.cpython-313.pyc`, `Lib/__pycache__/inspect.cpython-313.pyc`, `Lib/__pycache__/io.cpython-313.pyc`, `Lib/__pycache__/keyword.cpython-313.pyc`, `Lib/__pycache__/linecache.cpython-313.pyc`, `Lib/__pycache__/locale.cpython-313.pyc`, `Lib/__pycache__/lzma.cpython-313.pyc`, `Lib/__pycache__/numbers.cpython-313.pyc`, `Lib/__pycache__/opcode.cpython-313.pyc`, `Lib/__pycache__/operator.cpython-313.pyc`, `Lib/__pycache__/os.cpython-313.pyc`, `Lib/__pycache__/posixpath.cpython-313.pyc`, `Lib/__pycache__/reprlib.cpython-313.pyc`, `Lib/__pycache__/selectors.cpython-313.pyc`, `Lib/__pycache__/shutil.cpython-313.pyc`, `Lib/__pycache__/signal.cpython-313.pyc`, `Lib/__pycache__/site.cpython-313.pyc`, `Lib/__pycache__/socket.cpython-313.pyc`, `Lib/__pycache__/ssl.cpython-313.pyc`, `Lib/__pycache__/stat.cpython-313.pyc`, `Lib/__pycache__/string.cpython-313.pyc`, `Lib/__pycache__/struct.cpython-313.pyc`, `Lib/__pycache__/subprocess.cpython-313.pyc`, `Lib/__pycache__/textwrap.cpython-313.pyc`, `Lib/__pycache__/threading.cpython-313.pyc`, `Lib/__pycache__/token.cpython-313.pyc`, `Lib/__pycache__/tokenize.cpython-313.pyc`, `Lib/__pycache__/traceback.cpython-313.pyc`, `Lib/__pycache__/types.cpython-313.pyc`, `Lib/__pycache__/typing.cpython-313.pyc`, `Lib/__pycache__/warnings.cpython-313.pyc`, `Lib/__pycache__/weakref.cpython-313.pyc`, `Lib/asyncio/__pycache__/__init__.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_events.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_futures.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_subprocess.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_tasks.cpython-313.pyc`, `Lib/asyncio/__pycache__/constants.cpython-313.pyc`, `Lib/asyncio/__pycache__/coroutines.cpython-313.pyc`, `Lib/asyncio/__pycache__/events.cpython-313.pyc`, `Lib/asyncio/__pycache__/exceptions.cpython-313.pyc`, `Lib/asyncio/__pycache__/format_helpers.cpython-313.pyc`, `Lib/asyncio/__pycache__/futures.cpython-313.pyc`, `Lib/asyncio/__pycache__/locks.cpython-313.pyc`, `Lib/asyncio/__pycache__/log.cpython-313.pyc`, `Lib/asyncio/__pycache__/mixins.cpython-313.pyc`, `Lib/asyncio/__pycache__/protocols.cpython-313.pyc`, `Lib/asyncio/__pycache__/queues.cpython-313.pyc`, `Lib/asyncio/__pycache__/runners.cpython-313.pyc`, `Lib/asyncio/__pycache__/selector_events.cpython-313.pyc`, `Lib/asyncio/__pycache__/sslproto.cpython-313.pyc`, `Lib/asyncio/__pycache__/staggered.cpython-313.pyc`, `Lib/asyncio/__pycache__/streams.cpython-313.pyc`, `Lib/asyncio/__pycache__/subprocess.cpython-313.pyc`, `Lib/asyncio/__pycache__/taskgroups.cpython-313.pyc`, `Lib/asyncio/__pycache__/tasks.cpython-313.pyc`, `Lib/asyncio/__pycache__/threads.cpython-313.pyc`, `Lib/asyncio/__pycache__/timeouts.cpython-313.pyc`, `Lib/asyncio/__pycache__/transports.cpython-313.pyc`, `Lib/asyncio/__pycache__/trsock.cpython-313.pyc`, `Lib/asyncio/__pycache__/unix_events.cpython-313.pyc`, `Lib/collections/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/futures/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/futures/__pycache__/_base.cpython-313.pyc`, `Lib/encodings/__pycache__/__init__.cpython-313.pyc`, `Lib/encodings/__pycache__/aliases.cpython-313.pyc`, `Lib/encodings/__pycache__/ascii.cpython-313.pyc`, `Lib/encodings/__pycache__/utf_8.cpython-313.pyc`, `Lib/importlib/__pycache__/__init__.cpython-313.pyc`, `Lib/importlib/__pycache__/_abc.cpython-313.pyc`, `Lib/logging/__pycache__/__init__.cpython-313.pyc`, `Lib/pathlib/__pycache__/__init__.cpython-313.pyc`, `Lib/pathlib/__pycache__/_abc.cpython-313.pyc`, `Lib/pathlib/__pycache__/_local.cpython-313.pyc`, `Lib/re/__pycache__/__init__.cpython-313.pyc`, `Lib/re/__pycache__/_casefix.cpython-313.pyc`, `Lib/re/__pycache__/_compiler.cpython-313.pyc`, `Lib/re/__pycache__/_constants.cpython-313.pyc`, `Lib/re/__pycache__/_parser.cpython-313.pyc`, `Lib/sysconfig/__pycache__/__init__.cpython-313.pyc`, `Lib/sysconfig/__pycache__/__main__.cpython-313.pyc`, `Lib/xml/__pycache__/__init__.cpython-313.pyc`, `Lib/xml/etree/__pycache__/ElementPath.cpython-313.pyc`, `Lib/xml/etree/__pycache__/__init__.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/__init__.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/_common.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/_tzpath.cpython-313.pyc`, `Makefile`, `Makefile.pre`, `Misc/python-config.sh`, `Misc/python-embed.pc`, `Misc/python.pc`, `Modules/Setup.bootstrap`, `Modules/Setup.local`, `Modules/Setup.stdlib`, `Modules/_abc.o`, `Modules/_asyncio.cpython-313-x86_64-linux-gnu.so`, `Modules/_asynciomodule.o`, `Modules/_bisect.cpython-313-x86_64-linux-gnu.so`, `Modules/_bisectmodule.o`, `Modules/_blake2.cpython-313-x86_64-linux-gnu.so`, `Modules/_blake2/blake2b_impl.o`, `Modules/_blake2/blake2module.o`, `Modules/_blake2/blake2s_impl.o`, `Modules/_bz2.cpython-313-x86_64-linux-gnu.so`, `Modules/_bz2module.o`, `Modules/_codecs_cn.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_hk.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_iso2022.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_jp.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_kr.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_tw.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecsmodule.o`, `Modules/_collectionsmodule.o`, `Modules/_contextvars.cpython-313-x86_64-linux-gnu.so`, `Modules/_contextvarsmodule.o`, `Modules/_csv.cpython-313-x86_64-linux-gnu.so`, `Modules/_csv.o`, `Modules/_ctypes.cpython-313-x86_64-linux-gnu.so`, `Modules/_ctypes/_ctypes.o`, `Modules/_ctypes/_ctypes_test.o`, `Modules/_ctypes/callbacks.o`, `Modules/_ctypes/callproc.o`, `Modules/_ctypes/cfield.o`, `Modules/_ctypes/stgdict.o`, `Modules/_ctypes_test.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses_panel.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses_panel.o`, `Modules/_cursesmodule.o`, `Modules/_datetime.cpython-313-x86_64-linux-gnu.so`, `Modules/_datetimemodule.o`, `Modules/_decimal.cpython-313-x86_64-linux-gnu.so`, `Modules/_decimal/_decimal.o`, `Modules/_decimal/libmpdec/basearith.o`, `Modules/_decimal/libmpdec/constants.o`, `Modules/_decimal/libmpdec/context.o`, `Modules/_decimal/libmpdec/convolute.o`, `Modules/_decimal/libmpdec/crt.o`, `Modules/_decimal/libmpdec/difradix2.o`, `Modules/_decimal/libmpdec/fnt.o`, `Modules/_decimal/libmpdec/fourstep.o`, `Modules/_decimal/libmpdec/io.o`, `Modules/_decimal/libmpdec/libmpdec.a`, `Modules/_decimal/libmpdec/mpalloc.o`, `Modules/_decimal/libmpdec/mpdecimal.o`, `Modules/_decimal/libmpdec/numbertheory.o`, `Modules/_decimal/libmpdec/sixstep.o`, `Modules/_decimal/libmpdec/transpose.o`, `Modules/_elementtree.cpython-313-x86_64-linux-gnu.so`, `Modules/_elementtree.o`, `Modules/_functoolsmodule.o`, `Modules/_hacl/Hacl_Hash_MD5.o`, `Modules/_hacl/Hacl_Hash_SHA1.o`, `Modules/_hacl/Hacl_Hash_SHA2.o`, `Modules/_hacl/Hacl_Hash_SHA3.o`, `Modules/_hacl/libHacl_Hash_SHA2.a`, `Modules/_hashlib.cpython-313-x86_64-linux-gnu.so`, `Modules/_hashopenssl.o`, `Modules/_heapq.cpython-313-x86_64-linux-gnu.so`, `Modules/_heapqmodule.o`, `Modules/_interpchannels.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpchannelsmodule.o`, `Modules/_interpqueues.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpqueuesmodule.o`, `Modules/_interpreters.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpretersmodule.o`, `Modules/_io/_iomodule.o`, `Modules/_io/bufferedio.o`, `Modules/_io/bytesio.o`, `Modules/_io/fileio.o`, `Modules/_io/iobase.o`, `Modules/_io/stringio.o`, `Modules/_io/textio.o`, `Modules/_json.cpython-313-x86_64-linux-gnu.so`, `Modules/_json.o`, `Modules/_localemodule.o`, `Modules/_lsprof.cpython-313-x86_64-linux-gnu.so`, `Modules/_lsprof.o`, `Modules/_lzma.cpython-313-x86_64-linux-gnu.so`, `Modules/_lzmamodule.o`, `Modules/_md5.cpython-313-x86_64-linux-gnu.so`, `Modules/_multibytecodec.cpython-313-x86_64-linux-gnu.so`, `Modules/_multiprocessing.cpython-313-x86_64-linux-gnu.so`, `Modules/_multiprocessing/multiprocessing.o`, `Modules/_multiprocessing/posixshmem.o`, `Modules/_multiprocessing/semaphore.o`, `Modules/_opcode.cpython-313-x86_64-linux-gnu.so`, `Modules/_opcode.o`, `Modules/_operator.o`, `Modules/_pickle.cpython-313-x86_64-linux-gnu.so`, `Modules/_pickle.o`, `Modules/_posixshmem.cpython-313-x86_64-linux-gnu.so`, `Modules/_posixsubprocess.cpython-313-x86_64-linux-gnu.so`, `Modules/_posixsubprocess.o`, `Modules/_queue.cpython-313-x86_64-linux-gnu.so`, `Modules/_queuemodule.o`, `Modules/_random.cpython-313-x86_64-linux-gnu.so`, `Modules/_randommodule.o`, `Modules/_sha1.cpython-313-x86_64-linux-gnu.so`, `Modules/_sha2.cpython-313-x86_64-linux-gnu.so`, `Modules/_sha3.cpython-313-x86_64-linux-gnu.so`, `Modules/_socket.cpython-313-x86_64-linux-gnu.so`, `Modules/_sqlite/blob.o`, `Modules/_sqlite/connection.o`, `Modules/_sqlite/cursor.o`, `Modules/_sqlite/microprotocols.o`, `Modules/_sqlite/module.o`, `Modules/_sqlite/prepare_protocol.o`, `Modules/_sqlite/row.o`, `Modules/_sqlite/statement.o`, `Modules/_sqlite/util.o`, `Modules/_sqlite3.cpython-313-x86_64-linux-gnu.so`, `Modules/_sre/sre.o`, `Modules/_ssl.o`, `Modules/_ssl_failed.cpython-313-x86_64-linux-gnu.so`, `Modules/_stat.o`, `Modules/_statistics.cpython-313-x86_64-linux-gnu.so`, `Modules/_statisticsmodule.o`, `Modules/_struct.cpython-313-x86_64-linux-gnu.so`, `Modules/_struct.o`, `Modules/_suggestions.o`, `Modules/_sysconfig.o`, `Modules/_testbuffer.cpython-313-x86_64-linux-gnu.so`, `Modules/_testbuffer.o`, `Modules/_testcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testcapi/abstract.o`, `Modules/_testcapi/buffer.o`, `Modules/_testcapi/bytes.o`, `Modules/_testcapi/code.o`, `Modules/_testcapi/codec.o`, `Modules/_testcapi/complex.o`, `Modules/_testcapi/datetime.o`, `Modules/_testcapi/dict.o`, `Modules/_testcapi/docstring.o`, `Modules/_testcapi/exceptions.o`, `Modules/_testcapi/file.o`, `Modules/_testcapi/float.o`, `Modules/_testcapi/gc.o`, `Modules/_testcapi/getargs.o`, `Modules/_testcapi/hash.o`, `Modules/_testcapi/heaptype.o`, `Modules/_testcapi/immortal.o`, `Modules/_testcapi/list.o`, `Modules/_testcapi/long.o`, `Modules/_testcapi/mem.o`, `Modules/_testcapi/monitoring.o`, `Modules/_testcapi/numbers.o`, `Modules/_testcapi/object.o`, `Modules/_testcapi/pyatomic.o`, `Modules/_testcapi/run.o`, `Modules/_testcapi/set.o`, `Modules/_testcapi/structmember.o`, `Modules/_testcapi/time.o`, `Modules/_testcapi/tuple.o`, `Modules/_testcapi/unicode.o`, `Modules/_testcapi/vectorcall.o`, `Modules/_testcapi/watchers.o`, `Modules/_testcapimodule.o`, `Modules/_testclinic.cpython-313-x86_64-linux-gnu.so`, `Modules/_testclinic.o`, `Modules/_testclinic_limited.cpython-313-x86_64-linux-gnu.so`, `Modules/_testclinic_limited.o`, `Modules/_testexternalinspection.cpython-313-x86_64-linux-gnu.so`, `Modules/_testexternalinspection.o`, `Modules/_testimportmultiple.cpython-313-x86_64-linux-gnu.so`, `Modules/_testimportmultiple.o`, `Modules/_testinternalcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testinternalcapi.o`, `Modules/_testinternalcapi/pytime.o`, `Modules/_testinternalcapi/set.o`, `Modules/_testinternalcapi/test_critical_sections.o`, `Modules/_testinternalcapi/test_lock.o`, `Modules/_testlimitedcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testlimitedcapi.o`, `Modules/_testlimitedcapi/abstract.o`, `Modules/_testlimitedcapi/bytearray.o`, `Modules/_testlimitedcapi/bytes.o`, `Modules/_testlimitedcapi/complex.o`, `Modules/_testlimitedcapi/dict.o`, `Modules/_testlimitedcapi/eval.o`, `Modules/_testlimitedcapi/file.o`, `Modules/_testlimitedcapi/float.o`, `Modules/_testlimitedcapi/heaptype_relative.o`, `Modules/_testlimitedcapi/import.o`, `Modules/_testlimitedcapi/list.o`, `Modules/_testlimitedcapi/long.o`, `Modules/_testlimitedcapi/object.o`, `Modules/_testlimitedcapi/pyos.o`, `Modules/_testlimitedcapi/set.o`, `Modules/_testlimitedcapi/sys.o`, `Modules/_testlimitedcapi/tuple.o`, `Modules/_testlimitedcapi/unicode.o`, `Modules/_testlimitedcapi/vectorcall_limited.o`, `Modules/_testmultiphase.cpython-313-x86_64-linux-gnu.so`, `Modules/_testmultiphase.o`, `Modules/_testsinglephase.cpython-313-x86_64-linux-gnu.so`, `Modules/_testsinglephase.o`, `Modules/_threadmodule.o`, `Modules/_tracemalloc.o`, `Modules/_typingmodule.o`, `Modules/_uuid.cpython-313-x86_64-linux-gnu.so`, `Modules/_uuidmodule.o`, `Modules/_weakref.o`, `Modules/_xxtestfuzz.cpython-313-x86_64-linux-gnu.so`, `Modules/_xxtestfuzz/_xxtestfuzz.o`, `Modules/_xxtestfuzz/fuzzer.o`, `Modules/_zoneinfo.cpython-313-x86_64-linux-gnu.so`, `Modules/_zoneinfo.o`, `Modules/array.cpython-313-x86_64-linux-gnu.so`, `Modules/arraymodule.o`, `Modules/atexitmodule.o`, `Modules/binascii.cpython-313-x86_64-linux-gnu.so`, `Modules/binascii.o`, `Modules/cjkcodecs/_codecs_cn.o`, `Modules/cjkcodecs/_codecs_hk.o`, `Modules/cjkcodecs/_codecs_iso2022.o`, `Modules/cjkcodecs/_codecs_jp.o`, `Modules/cjkcodecs/_codecs_kr.o`, `Modules/cjkcodecs/_codecs_tw.o`, `Modules/cjkcodecs/multibytecodec.o`, `Modules/cmath.cpython-313-x86_64-linux-gnu.so`, `Modules/cmathmodule.o`, `Modules/config.c`, `Modules/config.o`, `Modules/errnomodule.o`, `Modules/expat/libexpat.a`, `Modules/expat/xmlparse.o`, `Modules/expat/xmlrole.o`, `Modules/expat/xmltok.o`, `Modules/faulthandler.o`, `Modules/fcntl.cpython-313-x86_64-linux-gnu.so`, `Modules/fcntlmodule.o`, `Modules/gcmodule.o`, `Modules/getbuildinfo.o`, `Modules/getpath.o`, `Modules/getpath_noop.o`, `Modules/grp.cpython-313-x86_64-linux-gnu.so`, `Modules/grpmodule.o`, `Modules/itertoolsmodule.o`, `Modules/ld_so_aix`, `Modules/main.o`, `Modules/math.cpython-313-x86_64-linux-gnu.so`, `Modules/mathmodule.o`, `Modules/md5module.o`, `Modules/mmap.cpython-313-x86_64-linux-gnu.so`, `Modules/mmapmodule.o`, `Modules/posixmodule.o`, `Modules/pwdmodule.o`, `Modules/pyexpat.cpython-313-x86_64-linux-gnu.so`, `Modules/pyexpat.o`, `Modules/readline.cpython-313-x86_64-linux-gnu.so`, `Modules/readline.o`, `Modules/resource.cpython-313-x86_64-linux-gnu.so`, `Modules/resource.o`, `Modules/rotatingtree.o`, `Modules/select.cpython-313-x86_64-linux-gnu.so`, `Modules/selectmodule.o`, `Modules/sha1module.o`, `Modules/sha2module.o`, `Modules/sha3module.o`, `Modules/signalmodule.o`, `Modules/socketmodule.o`, `Modules/symtablemodule.o`, `Modules/syslog.cpython-313-x86_64-linux-gnu.so`, `Modules/syslogmodule.o`, `Modules/termios.cpython-313-x86_64-linux-gnu.so`, `Modules/termios.o`, `Modules/timemodule.o`, `Modules/unicodedata.cpython-313-x86_64-linux-gnu.so`, `Modules/unicodedata.o`, `Modules/xxlimited.cpython-313-x86_64-linux-gnu.so`, `Modules/xxlimited.o`, `Modules/xxlimited_35.cpython-313-x86_64-linux-gnu.so`, `Modules/xxlimited_35.o`, `Modules/xxsubtype.cpython-313-x86_64-linux-gnu.so`, `Modules/xxsubtype.o`, `Modules/zlib.cpython-313-x86_64-linux-gnu.so`, `Modules/zlibmodule.o`, `Objects/abstract.o`, `Objects/boolobject.o`, `Objects/bytearrayobject.o`, `Objects/bytes_methods.o`, `Objects/bytesobject.o`, `Objects/call.o`, `Objects/capsule.o`, `Objects/cellobject.o`, `Objects/classobject.o`, `Objects/codeobject.o`, `Objects/complexobject.o`, `Objects/descrobject.o`, `Objects/dictobject.o`, `Objects/enumobject.o`, `Objects/exceptions.o`, `Objects/fileobject.o`, `Objects/floatobject.o`, `Objects/frameobject.o`, `Objects/funcobject.o`, `Objects/genericaliasobject.o`, `Objects/genobject.o`, `Objects/iterobject.o`, `Objects/listobject.o`, `Objects/longobject.o`, `Objects/memoryobject.o`, `Objects/methodobject.o`, `Objects/moduleobject.o`, `Objects/namespaceobject.o`, `Objects/object.o`, `Objects/obmalloc.o`, `Objects/odictobject.o`, `Objects/picklebufobject.o`, `Objects/rangeobject.o`, `Objects/setobject.o`, `Objects/sliceobject.o`, `Objects/structseq.o`, `Objects/tupleobject.o`, `Objects/typeobject.o`, `Objects/typevarobject.o`, `Objects/unicodectype.o`, `Objects/unicodeobject.o`, `Objects/unionobject.o`, `Objects/weakrefobject.o`, `Parser/action_helpers.o`, `Parser/lexer/buffer.o`, `Parser/lexer/lexer.o`, `Parser/lexer/state.o`, `Parser/myreadline.o`, `Parser/parser.o`, `Parser/peg_api.o`, `Parser/pegen.o`, `Parser/pegen_errors.o`, `Parser/string_parser.o`, `Parser/token.o`, `Parser/tokenizer/file_tokenizer.o`, `Parser/tokenizer/helpers.o`, `Parser/tokenizer/readline_tokenizer.o`, `Parser/tokenizer/string_tokenizer.o`, `Parser/tokenizer/utf8_tokenizer.o`, `Programs/_bootstrap_python.o`, `Programs/_freeze_module`, `Programs/_freeze_module.o`, `Programs/_testembed`, `Programs/_testembed.o`, `Programs/python.o`, `Python/Python-ast.o`, `Python/Python-tokenize.o`, `Python/_warnings.o`, `Python/asdl.o`, `Python/asm_trampoline.o`, `Python/assemble.o`, `Python/ast.o`, `Python/ast_opt.o`, `Python/ast_unparse.o`, `Python/bltinmodule.o`, `Python/bootstrap_hash.o`, `Python/brc.o`, `Python/ceval.o`, `Python/ceval_gil.o`, `Python/codecs.o`, `Python/compile.o`, `Python/context.o`, `Python/critical_section.o`, `Python/crossinterp.o`, `Python/dtoa.o`, `Python/dynamic_annotations.o`, `Python/dynload_shlib.o`, `Python/errors.o`, `Python/fileutils.o`, `Python/flowgraph.o`, `Python/formatter_unicode.o`, `Python/frame.o`, `Python/frozen.o`, `Python/frozen_modules/__hello__.h`, `Python/frozen_modules/__phello__.h`, `Python/frozen_modules/__phello__.ham.eggs.h`, `Python/frozen_modules/__phello__.ham.h`, `Python/frozen_modules/__phello__.spam.h`, `Python/frozen_modules/_collections_abc.h`, `Python/frozen_modules/_sitebuiltins.h`, `Python/frozen_modules/abc.h`, `Python/frozen_modules/codecs.h`, `Python/frozen_modules/frozen_only.h`, `Python/frozen_modules/genericpath.h`, `Python/frozen_modules/getpath.h`, `Python/frozen_modules/importlib._bootstrap.h`, `Python/frozen_modules/importlib._bootstrap_external.h`, `Python/frozen_modules/importlib.machinery.h`, `Python/frozen_modules/importlib.util.h`, `Python/frozen_modules/io.h`, `Python/frozen_modules/ntpath.h`, `Python/frozen_modules/os.h`, `Python/frozen_modules/posixpath.h`, `Python/frozen_modules/runpy.h`, `Python/frozen_modules/site.h`, `Python/frozen_modules/stat.h`, `Python/frozen_modules/zipimport.h`, `Python/frozenmain.o`, `Python/future.o`, `Python/gc.o`, `Python/gc_free_threading.o`, `Python/gc_gil.o`, `Python/getargs.o`, `Python/getcompiler.o`, `Python/getcopyright.o`, `Python/getopt.o`, `Python/getplatform.o`, `Python/getversion.o`, `Python/hamt.o`, `Python/hashtable.o`, `Python/import.o`, `Python/importdl.o`, `Python/initconfig.o`, `Python/instruction_sequence.o`, `Python/instrumentation.o`, `Python/interpconfig.o`, `Python/intrinsics.o`, `Python/jit.o`, `Python/legacy_tracing.o`, `Python/lock.o`, `Python/marshal.o`, `Python/modsupport.o`, `Python/mysnprintf.o`, `Python/mystrtoul.o`, `Python/object_stack.o`, `Python/optimizer.o`, `Python/optimizer_analysis.o`, `Python/optimizer_symbols.o`, `Python/parking_lot.o`, `Python/pathconfig.o`, `Python/perf_jit_trampoline.o`, `Python/perf_trampoline.o`, `Python/preconfig.o`, `Python/pyarena.o`, `Python/pyctype.o`, `Python/pyfpe.o`, `Python/pyhash.o`, `Python/pylifecycle.o`, `Python/pymath.o`, `Python/pystate.o`, `Python/pystrcmp.o`, `Python/pystrhex.o`, `Python/pystrtod.o`, `Python/pythonrun.o`, `Python/pytime.o`, `Python/qsbr.o`, `Python/specialize.o`, `Python/structmember.o`, `Python/suggestions.o`, `Python/symtable.o`, `Python/sysmodule.o`, `Python/thread.o`, `Python/traceback.o`, `Python/tracemalloc.o`, `_bootstrap_python`, `build/lib.linux-x86_64-3.13/__pycache__/_sysconfigdata__linux_x86_64-linux-gnu.cpython-313.pyc`, `build/lib.linux-x86_64-3.13/_asyncio.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_bisect.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_blake2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_bz2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_cn.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_hk.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_iso2022.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_jp.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_kr.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_tw.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_contextvars.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_csv.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_ctypes.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_ctypes_test.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_curses.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_curses_panel.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_datetime.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_decimal.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_elementtree.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_hashlib.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_heapq.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpchannels.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpqueues.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpreters.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_json.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_lsprof.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_lzma.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_md5.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_multibytecodec.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_multiprocessing.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_opcode.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_pickle.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_posixshmem.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_posixsubprocess.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_queue.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_random.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha1.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha3.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_socket.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sqlite3.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_statistics.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_struct.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sysconfigdata__linux_x86_64-linux-gnu.py`, `build/lib.linux-x86_64-3.13/_testbuffer.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testclinic.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testclinic_limited.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testexternalinspection.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testimportmultiple.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testinternalcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testlimitedcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testmultiphase.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testsinglephase.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_uuid.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_xxtestfuzz.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_zoneinfo.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/array.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/binascii.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/cmath.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/fcntl.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/grp.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/math.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/mmap.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/pyexpat.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/readline.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/resource.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/select.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/syslog.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/termios.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/unicodedata.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxlimited.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxlimited_35.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxsubtype.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/zlib.cpython-313-x86_64-linux-gnu.so`, `build/scripts-3.13/idle3.13`, `build/scripts-3.13/pydoc3.13`, `config.log`, `config.status`, `libpython3.13.a`, `platform`, `pybuilddir.txt`, `pyconfig.h`, `python`, `python-config`, `python-config.py`, `python-gdb.py`.
2. Listed in `## Git Add Paths` but not actually changed: `None`.

## Refinement Pass 1

Subject: Diagnose supervisord polling evidence without CPython changes

## Commit Message
No source change. The collected signal points to a Python application process running `supervisord`, not to a confirmed CPython runtime defect. This refinement addresses the review finding by removing generated build artifacts from the earlier validation run so the workspace no longer has patch metadata drift.

## Evidence Confidence
inferred

## Issue Connection
Fixer collected perf, strace, and `/proc` evidence for `/usr/bin/python3.13` running `/usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf`. The strace excerpt shows repeated `wait4(-1, ..., WNOHANG)` calls returning `ECHILD`, followed by `poll(..., 1000)` timing out after about one second. The `/proc` kernel stack and `wchan` place the sampled thread in `poll_schedule_timeout`, which means the sampled thread was sleeping in the kernel poll path during capture.

The cautious inference is that the signal comes from a `supervisord` event loop or configuration, or from profiler attribution around an interpreted application, not from a demonstrated CPython runtime bug. I made no CPython source change. CPython conventions checked include `README.rst` and the local runtime patterns `_PyDeadline_*`/`Py_BEGIN_ALLOW_THREADS` in `selectmodule.c` and `_waitpid_lock` in `Lib/subprocess.py`; no local helper applies because no source patch is justified.

The expected effect is that no upstream CPython behavior is changed based on indirect evidence. The review finding was addressed by cleaning generated validation outputs, leaving no source diff.

## Git Add Paths
None

## Validation
Previously ran the project-level entrypoint from the workspace root:

`./configure && make`

Result: command exited 0. The build completed, but reported `_ssl` was built and then removed because it failed to import with `undefined symbol: TLSv1_method`; optional `_dbm`, `_gdbm`, and `_tkinter` dependencies were also missing.

For this refinement, ran `make distclean` to remove generated build outputs from validation. Then ran `git status --short` and `git diff --name-only`; both produced no output, confirming the workspace is clean.

Independent reproduction remains blocked: `/usr/bin/python3` exists, but `/usr/bin/supervisord` and `/etc/supervisor/supervisord.conf` are missing, so the exact captured command cannot be run under `strace` here. I did not run `make check` after cleanup because there is no source change and reconfiguring would recreate generated artifacts.

## Review Pass 2

RESULT: ok

diagnosis-only report

report

python3.13 likely remains stuck in a busy-poll loop. A diagnosis report and patch proposal were created locally.

state: readycreated: 2026-05-18 23:18 UTCvalidation: ready
Published session

Prompt

## Plan Pass

You are planning a fixer patch before any edits happen.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. The original pre-edit snapshot is available at `./source` if you need to inspect it. For interpreter processes, plan from the script/application entrypoint evidence first and include the runtime only as a second investigation target unless the evidence proves a runtime bug.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround. Inspect the relevant code, nearby callers, project contribution docs, and local helper/compat APIs, but do not edit files in this pass.

Return a short markdown plan with these exact sections:

## Problem
## Evidence Confidence
## Proposed Subject
## Patch Plan
## Risks
## Validation

Classify `## Evidence Confidence` as exactly one of `reproduced`, `observed`, or `inferred`. Use `inferred` only for a no-patch diagnosis/report plan unless you can name the extra evidence you will collect before editing; inferred source patches are blocked by Fixer because they are not pull-request-ready. For `observed` source-patch plans, plan to say in the final `## Issue Connection` that the failure was observed by Fixer and not independently reproduced. If the plan touches authentication, authorization, credentials, cryptography, sandboxing, permissions, or timing/throttling behavior, treat it as security-sensitive: do not plan a source patch unless validation can reproduce the behavior and analyze the security impact; otherwise plan a no-patch diagnosis/report. The plan must explain how the proposed code change addresses the observed issue evidence, call out any prior Fixer patch that should be improved or replaced, reject awkward control flow such as avoidable `goto` if there is a cleaner bounded alternative, name any local helper APIs or maintainer conventions the patch should follow, and keep the intended maintainer-facing explanation clear enough that someone unfamiliar with the local complaint wording can still follow the fix. In `## Validation`, name the reproducible configure/build/test entrypoint you will try from the workspace root before any focused leaf compile or smoke check, and include one bounded independent reproduction attempt for the collected failure signal when it is safe and cheap. Do not plan to claim `reproduced` unless that reproduction command or test can actually show the failure.

## Patch Pass

You are working on a bounded fixer proposal.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. Produce the smallest reasonable patch for the target repository, keep the change upstreamable, prefer the clearest control flow available, and do not keep avoidable `goto` when a simpler structure would read better. Before introducing new file, process, allocation, locking, networking, or platform APIs, inspect nearby code and project contribution docs for existing helpers or compatibility wrappers and use those local patterns unless you can explain why they do not fit. Validate from a reproducible workspace-root entrypoint before falling back to focused leaf commands; if a build or test cannot run, report the exact command, the exact blocker, and any narrower check you ran instead. During validation, also try one bounded independent reproduction of the collected failure signal when it is safe and cheap, such as a failing test, smoke command, perf/strace comparison, or before/after runtime check. Only use `reproduced` if that command or test actually reproduced the failure; otherwise keep `observed` and report the reproduction blocker. The final explanation must connect the observed issue evidence to the actual code change, not just paraphrase the diff. Write like a maintainer is going to read the patch mail cold: explain the bug in plain language, define subsystem-specific jargon the first time you need it, and make the causal story obvious. Explicitly classify evidence confidence as `reproduced`, `observed`, or `inferred`: `reproduced` means you reproduced the failure locally; `observed` means Fixer has direct crash/log/trace evidence but you did not independently reproduce it; `inferred` means the source patch is not pull-request-ready, so do not leave a source diff unless you first gather stronger observed/reproduced evidence; otherwise return a no-patch diagnosis/report. For any source-changing `observed` patch, say explicitly in `## Issue Connection` that the failure was observed by Fixer and not independently reproduced. Security-sensitive areas such as authentication, authorization, credentials, cryptography, sandboxing, permissions, and timing/throttling behavior need reproduced evidence plus explicit security-impact analysis before leaving a source diff; otherwise return a no-patch diagnosis/report for human review. If you introduce non-obvious state translation, index remapping, or backend split logic, add a short source comment that explains the invariant being preserved.

Start by explaining the likely root cause from the collected perf, strace, and /proc evidence. If you cannot land a safe patch, leave a diagnosis that is strong enough for an upstream bug report.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround. 

Keep the change narrowly scoped and summarize validation clearly.

In every authoring pass, your final response must start with `Subject: <single-line git commit subject>` and then include these markdown sections exactly:

## Commit Message
A short upstream-friendly explanation of what changed and why. Write it in plain language that a maintainer can follow without local complaint context. If you use subsystem jargon, define it immediately.

## Evidence Confidence
Exactly one word: `reproduced`, `observed`, or `inferred`. Use `reproduced` only when you reproduced the failure locally with a command or test, and include that command/test in `## Validation`. Use `observed` when Fixer has direct crash/log/trace evidence but you did not independently reproduce it. If `## Git Add Paths` lists source files for an `observed` patch, `## Issue Connection` must explicitly say the failure was observed by Fixer and not independently reproduced. Security-sensitive source changes touching authentication, authorization, credentials, cryptography, sandboxing, permissions, or timing/throttling behavior require reproduced evidence and explicit security-impact analysis; otherwise list `None` under `## Git Add Paths` and write a no-patch diagnosis/report. Use `inferred` for profiler/strace/indirect evidence; inferred responses may be no-patch diagnoses or reports, but inferred source patches are not pull-request-ready until stronger evidence is gathered.

## Issue Connection
Write this as maintainer-facing patch mail, not as local Fixer notes. Cover four things explicitly in readable sentences: the user-visible symptom or the exact collected signal, the code-level cause or the cautious inference from evidence, the specific change you made, and the expected effect. Do not invent a reproducer, command line, crash, or user-visible failure that is not present in the evidence bundle. If the evidence is direct-but-not-reproduced, say it was observed by Fixer and not independently reproduced. If the evidence is indirect and you did not gather stronger evidence, do not leave a source diff; write a no-patch diagnosis/report instead. Include an explicit effect sentence such as `The expected effect is ...`, `This should reduce ...`, or `This prevents ...` for source patches. If the logic is non-obvious in code, mention that you added a short explanatory comment.

## Git Add Paths
List the repo-relative paths that belong in the final patch, one per line. Use `None` only when you intentionally made no source changes. Include intentionally new files, and do not list generated build artifacts.

## Validation
List the checks you ran, or say clearly that you could not run them. Include the independent reproduction command/test and result when `## Evidence Confidence` is `reproduced`; if reproduction was attempted but blocked, name the exact blocker and keep confidence at `observed` or `inferred`.

Before editing, read the plan at `./plan-output.txt` and follow it unless the code proves part of it wrong. If you change course, say so explicitly in the final write-up instead of silently drifting from the plan.

## Review Pass 1 (local metadata check)

Local metadata consistency check

## Refinement Pass 1

You are refining a fixer patch after an explicit code review.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. Read the latest author response at `./patch-output.txt`. Read the review report at `./review-1-output.txt`. This is refinement round 1. The original pre-edit snapshot is available at `./source` if you need to compare the current patch against it. Re-read the planning pass at `./plan-output.txt` before editing. The workspace currently changes these repo-relative paths: Lib/__pycache__/__future__.cpython-313.pyc, Lib/__pycache__/_collections_abc.cpython-313.pyc, Lib/__pycache__/_colorize.cpython-313.pyc, Lib/__pycache__/_compat_pickle.cpython-313.pyc, Lib/__pycache__/_compression.cpython-313.pyc, Lib/__pycache__/_opcode_metadata.cpython-313.pyc, Lib/__pycache__/_sitebuiltins.cpython-313.pyc, Lib/__pycache__/_weakrefset.cpython-313.pyc, Lib/__pycache__/abc.cpython-313.pyc, Lib/__pycache__/argparse.cpython-313.pyc, Lib/__pycache__/ast.cpython-313.pyc, Lib/__pycache__/bz2.cpython-313.pyc, Lib/__pycache__/codecs.cpython-313.pyc, Lib/__pycache__/contextlib.cpython-313.pyc, Lib/__pycache__/contextvars.cpython-313.pyc, Lib/__pycache__/copy.cpython-313.pyc, Lib/__pycache__/copyreg.cpython-313.pyc, Lib/__pycache__/datetime.cpython-313.pyc, Lib/__pycache__/dis.cpython-313.pyc, Lib/__pycache__/enum.cpython-313.pyc, Lib/__pycache__/fnmatch.cpython-313.pyc, Lib/__pycache__/functools.cpython-313.pyc, Lib/__pycache__/genericpath.cpython-313.pyc, Lib/__pycache__/gettext.cpython-313.pyc, Lib/__pycache__/glob.cpython-313.pyc, Lib/__pycache__/heapq.cpython-313.pyc, Lib/__pycache__/inspect.cpython-313.pyc, Lib/__pycache__/io.cpython-313.pyc, Lib/__pycache__/keyword.cpython-313.pyc, Lib/__pycache__/linecache.cpython-313.pyc, Lib/__pycache__/locale.cpython-313.pyc, Lib/__pycache__/lzma.cpython-313.pyc, Lib/__pycache__/numbers.cpython-313.pyc, Lib/__pycache__/opcode.cpython-313.pyc, Lib/__pycache__/operator.cpython-313.pyc, Lib/__pycache__/os.cpython-313.pyc, Lib/__pycache__/posixpath.cpython-313.pyc, Lib/__pycache__/reprlib.cpython-313.pyc, Lib/__pycache__/selectors.cpython-313.pyc, Lib/__pycache__/shutil.cpython-313.pyc, Lib/__pycache__/signal.cpython-313.pyc, Lib/__pycache__/site.cpython-313.pyc, Lib/__pycache__/socket.cpython-313.pyc, Lib/__pycache__/ssl.cpython-313.pyc, Lib/__pycache__/stat.cpython-313.pyc, Lib/__pycache__/string.cpython-313.pyc, Lib/__pycache__/struct.cpython-313.pyc, Lib/__pycache__/subprocess.cpython-313.pyc, Lib/__pycache__/textwrap.cpython-313.pyc, Lib/__pycache__/threading.cpython-313.pyc, Lib/__pycache__/token.cpython-313.pyc, Lib/__pycache__/tokenize.cpython-313.pyc, Lib/__pycache__/traceback.cpython-313.pyc, Lib/__pycache__/types.cpython-313.pyc, Lib/__pycache__/typing.cpython-313.pyc, Lib/__pycache__/warnings.cpython-313.pyc, Lib/__pycache__/weakref.cpython-313.pyc, Lib/asyncio/__pycache__/__init__.cpython-313.pyc, Lib/asyncio/__pycache__/base_events.cpython-313.pyc, Lib/asyncio/__pycache__/base_futures.cpython-313.pyc, Lib/asyncio/__pycache__/base_subprocess.cpython-313.pyc, Lib/asyncio/__pycache__/base_tasks.cpython-313.pyc, Lib/asyncio/__pycache__/constants.cpython-313.pyc, Lib/asyncio/__pycache__/coroutines.cpython-313.pyc, Lib/asyncio/__pycache__/events.cpython-313.pyc, Lib/asyncio/__pycache__/exceptions.cpython-313.pyc, Lib/asyncio/__pycache__/format_helpers.cpython-313.pyc, Lib/asyncio/__pycache__/futures.cpython-313.pyc, Lib/asyncio/__pycache__/locks.cpython-313.pyc, Lib/asyncio/__pycache__/log.cpython-313.pyc, Lib/asyncio/__pycache__/mixins.cpython-313.pyc, Lib/asyncio/__pycache__/protocols.cpython-313.pyc, Lib/asyncio/__pycache__/queues.cpython-313.pyc, Lib/asyncio/__pycache__/runners.cpython-313.pyc, Lib/asyncio/__pycache__/selector_events.cpython-313.pyc, Lib/asyncio/__pycache__/sslproto.cpython-313.pyc, Lib/asyncio/__pycache__/staggered.cpython-313.pyc, Lib/asyncio/__pycache__/streams.cpython-313.pyc, Lib/asyncio/__pycache__/subprocess.cpython-313.pyc, Lib/asyncio/__pycache__/taskgroups.cpython-313.pyc, Lib/asyncio/__pycache__/tasks.cpython-313.pyc, Lib/asyncio/__pycache__/threads.cpython-313.pyc, Lib/asyncio/__pycache__/timeouts.cpython-313.pyc, Lib/asyncio/__pycache__/transports.cpython-313.pyc, Lib/asyncio/__pycache__/trsock.cpython-313.pyc, Lib/asyncio/__pycache__/unix_events.cpython-313.pyc, Lib/collections/__pycache__/__init__.cpython-313.pyc, Lib/concurrent/__pycache__/__init__.cpython-313.pyc, Lib/concurrent/futures/__pycache__/__init__.cpython-313.pyc, Lib/concurrent/futures/__pycache__/_base.cpython-313.pyc, Lib/encodings/__pycache__/__init__.cpython-313.pyc, Lib/encodings/__pycache__/aliases.cpython-313.pyc, Lib/encodings/__pycache__/ascii.cpython-313.pyc, Lib/encodings/__pycache__/utf_8.cpython-313.pyc, Lib/importlib/__pycache__/__init__.cpython-313.pyc, Lib/importlib/__pycache__/_abc.cpython-313.pyc, Lib/logging/__pycache__/__init__.cpython-313.pyc, Lib/pathlib/__pycache__/__init__.cpython-313.pyc, Lib/pathlib/__pycache__/_abc.cpython-313.pyc, Lib/pathlib/__pycache__/_local.cpython-313.pyc, Lib/re/__pycache__/__init__.cpython-313.pyc, Lib/re/__pycache__/_casefix.cpython-313.pyc, Lib/re/__pycache__/_compiler.cpython-313.pyc, Lib/re/__pycache__/_constants.cpyth

[truncated 29270 bytes]

Response

## Plan Pass

## Problem
Fixer observed high CPU attributed to `/usr/bin/python3.13`, but the command line is `/usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf`. The evidence shows application-level polling: repeated `wait4(-1, ..., WNOHANG) = -1 ECHILD` followed by `poll(..., 1000)` timeouts. That is not enough to identify a CPython runtime defect, and the process state/wchan show it sleeping in `poll_schedule_timeout`.

## Evidence Confidence
inferred

The bundle is profiler/strace evidence only. I could not inspect the exact raw artifact directory named in the bundle because it is not present locally. A same-fingerprint available artifact also points at an application process using periodic `poll`, not a CPython interpreter loop.

## Proposed Subject
No CPython source patch in this pass. Prepare a no-patch diagnosis/report: the observed behavior should be investigated in the script/application entrypoint (`supervisord`) or its configuration before changing Python 3.13 runtime code.

## Patch Plan
Do not edit CPython unless additional evidence proves a runtime bug.

If more evidence is collected before editing, start from the application entrypoint: capture Python stack frames for the running `supervisord`, map fd `4`, and identify the Python caller issuing the 1-second poll and child reap check. Only then inspect CPython as a secondary target.

If a CPython patch later becomes justified, follow CPython conventions from `README.rst` and the Developer Guide. Relevant local patterns found: `selectmodule.c` uses `_PyDeadline_Init`, `_PyDeadline_Get`, timeout recomputation, and `Py_BEGIN_ALLOW_THREADS`; `Lib/subprocess.py` protects `waitpid` with `_waitpid_lock`. No relevant prior Fixer patch was found in `debian/patches` or the clean git status. Avoid awkward control flow such as new `goto`; use the existing bounded loop/deadline style.

## Risks
A source patch based on this evidence would likely mask normal application polling or supervisor behavior and would not be pull-request-ready upstream.

Changing `select.poll`, `os.wait4`, or subprocess wait behavior from this signal alone risks regressions in timeout semantics, EINTR handling, and child-process accounting.

## Validation
Before any future source patch, try the project-level entrypoint from the workspace root: `./configure && make`. If that fails due missing dependencies or generated files, record the exact failure and then run the narrowest relevant check.

For a real CPython change in this area, follow with targeted tests such as `./python -m test test_select test_subprocess test_wait4`. A bounded independent reproduction attempt should first run the captured application command, or a minimized script derived from it, under `strace -tt -e poll,wait4` to show the failure signal before claiming reproduction.

## Patch Pass

Subject: Diagnose supervisord polling evidence without CPython changes

## Commit Message
No source change. The collected signal points to a Python application process running `supervisord`, not to a confirmed CPython runtime defect. CPython’s `README.rst` points contributors to the Developer Guide and the normal `./configure`, `make`, and `make test` workflow; nearby runtime patterns include `_PyDeadline_*` and `Py_BEGIN_ALLOW_THREADS` in `selectmodule.c`, and `_waitpid_lock` around child waiting in `Lib/subprocess.py`.

## Evidence Confidence
inferred

## Issue Connection
Fixer collected perf, strace, and `/proc` evidence for `/usr/bin/python3.13` running `/usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf`. The strace excerpt shows a repeating application-level sequence: `wait4(-1, ..., WNOHANG)` returning `ECHILD`, then `poll(..., 1000)` timing out after about one second. The `/proc` kernel stack and `wchan` place the sampled thread in `poll_schedule_timeout`, meaning it was sleeping in the kernel poll path during capture rather than spinning in a tight CPython loop.

The cautious code-level inference is that this is a `supervisord` event loop or configuration issue, or a profiler attribution issue around an interpreted application, not enough evidence for changing CPython’s `select`, `wait4`, subprocess, or memory-allocation code. The backtrace has unresolved frames and a misleading top frame in `pthread_attr_destroy`, but it does not identify a CPython invariant violation.

I made no source change. The expected effect is that no upstream CPython behavior is changed based on indirect evidence that does not yet identify a CPython bug. A useful upstream report should instead include Python-level stack frames from the running `supervisord`, the target of fd `4`, and confirmation of which application code issues the one-second poll.

## Git Add Paths
None

## Validation
Ran the project-level entrypoint from the workspace root:

`./configure && make`

Result: command exited 0. The build completed, but reported `_ssl` was built and then removed because it failed to import with `undefined symbol: TLSv1_method`; optional `_dbm`, `_gdbm`, and `_tkinter` dependencies were also missing.

Independent reproduction was not completed. I checked the captured command prerequisites and found `/usr/bin/supervisord` and `/etc/supervisor/supervisord.conf` are missing in this environment, so the exact collected process could not be run under `strace`. I also did not start a host supervisor configuration because that could manage host services. No focused CPython tests were run because there is no source diff to validate.

## Review Pass 1 (local metadata check)

RESULT: fix-needed

## Findings
1. Patch metadata drift: the workspace currently changes `Lib/__pycache__/__future__.cpython-313.pyc`, `Lib/__pycache__/_collections_abc.cpython-313.pyc`, `Lib/__pycache__/_colorize.cpython-313.pyc`, `Lib/__pycache__/_compat_pickle.cpython-313.pyc`, `Lib/__pycache__/_compression.cpython-313.pyc`, `Lib/__pycache__/_opcode_metadata.cpython-313.pyc`, `Lib/__pycache__/_sitebuiltins.cpython-313.pyc`, `Lib/__pycache__/_weakrefset.cpython-313.pyc`, `Lib/__pycache__/abc.cpython-313.pyc`, `Lib/__pycache__/argparse.cpython-313.pyc`, `Lib/__pycache__/ast.cpython-313.pyc`, `Lib/__pycache__/bz2.cpython-313.pyc`, `Lib/__pycache__/codecs.cpython-313.pyc`, `Lib/__pycache__/contextlib.cpython-313.pyc`, `Lib/__pycache__/contextvars.cpython-313.pyc`, `Lib/__pycache__/copy.cpython-313.pyc`, `Lib/__pycache__/copyreg.cpython-313.pyc`, `Lib/__pycache__/datetime.cpython-313.pyc`, `Lib/__pycache__/dis.cpython-313.pyc`, `Lib/__pycache__/enum.cpython-313.pyc`, `Lib/__pycache__/fnmatch.cpython-313.pyc`, `Lib/__pycache__/functools.cpython-313.pyc`, `Lib/__pycache__/genericpath.cpython-313.pyc`, `Lib/__pycache__/gettext.cpython-313.pyc`, `Lib/__pycache__/glob.cpython-313.pyc`, `Lib/__pycache__/heapq.cpython-313.pyc`, `Lib/__pycache__/inspect.cpython-313.pyc`, `Lib/__pycache__/io.cpython-313.pyc`, `Lib/__pycache__/keyword.cpython-313.pyc`, `Lib/__pycache__/linecache.cpython-313.pyc`, `Lib/__pycache__/locale.cpython-313.pyc`, `Lib/__pycache__/lzma.cpython-313.pyc`, `Lib/__pycache__/numbers.cpython-313.pyc`, `Lib/__pycache__/opcode.cpython-313.pyc`, `Lib/__pycache__/operator.cpython-313.pyc`, `Lib/__pycache__/os.cpython-313.pyc`, `Lib/__pycache__/posixpath.cpython-313.pyc`, `Lib/__pycache__/reprlib.cpython-313.pyc`, `Lib/__pycache__/selectors.cpython-313.pyc`, `Lib/__pycache__/shutil.cpython-313.pyc`, `Lib/__pycache__/signal.cpython-313.pyc`, `Lib/__pycache__/site.cpython-313.pyc`, `Lib/__pycache__/socket.cpython-313.pyc`, `Lib/__pycache__/ssl.cpython-313.pyc`, `Lib/__pycache__/stat.cpython-313.pyc`, `Lib/__pycache__/string.cpython-313.pyc`, `Lib/__pycache__/struct.cpython-313.pyc`, `Lib/__pycache__/subprocess.cpython-313.pyc`, `Lib/__pycache__/textwrap.cpython-313.pyc`, `Lib/__pycache__/threading.cpython-313.pyc`, `Lib/__pycache__/token.cpython-313.pyc`, `Lib/__pycache__/tokenize.cpython-313.pyc`, `Lib/__pycache__/traceback.cpython-313.pyc`, `Lib/__pycache__/types.cpython-313.pyc`, `Lib/__pycache__/typing.cpython-313.pyc`, `Lib/__pycache__/warnings.cpython-313.pyc`, `Lib/__pycache__/weakref.cpython-313.pyc`, `Lib/asyncio/__pycache__/__init__.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_events.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_futures.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_subprocess.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_tasks.cpython-313.pyc`, `Lib/asyncio/__pycache__/constants.cpython-313.pyc`, `Lib/asyncio/__pycache__/coroutines.cpython-313.pyc`, `Lib/asyncio/__pycache__/events.cpython-313.pyc`, `Lib/asyncio/__pycache__/exceptions.cpython-313.pyc`, `Lib/asyncio/__pycache__/format_helpers.cpython-313.pyc`, `Lib/asyncio/__pycache__/futures.cpython-313.pyc`, `Lib/asyncio/__pycache__/locks.cpython-313.pyc`, `Lib/asyncio/__pycache__/log.cpython-313.pyc`, `Lib/asyncio/__pycache__/mixins.cpython-313.pyc`, `Lib/asyncio/__pycache__/protocols.cpython-313.pyc`, `Lib/asyncio/__pycache__/queues.cpython-313.pyc`, `Lib/asyncio/__pycache__/runners.cpython-313.pyc`, `Lib/asyncio/__pycache__/selector_events.cpython-313.pyc`, `Lib/asyncio/__pycache__/sslproto.cpython-313.pyc`, `Lib/asyncio/__pycache__/staggered.cpython-313.pyc`, `Lib/asyncio/__pycache__/streams.cpython-313.pyc`, `Lib/asyncio/__pycache__/subprocess.cpython-313.pyc`, `Lib/asyncio/__pycache__/taskgroups.cpython-313.pyc`, `Lib/asyncio/__pycache__/tasks.cpython-313.pyc`, `Lib/asyncio/__pycache__/threads.cpython-313.pyc`, `Lib/asyncio/__pycache__/timeouts.cpython-313.pyc`, `Lib/asyncio/__pycache__/transports.cpython-313.pyc`, `Lib/asyncio/__pycache__/trsock.cpython-313.pyc`, `Lib/asyncio/__pycache__/unix_events.cpython-313.pyc`, `Lib/collections/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/futures/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/futures/__pycache__/_base.cpython-313.pyc`, `Lib/encodings/__pycache__/__init__.cpython-313.pyc`, `Lib/encodings/__pycache__/aliases.cpython-313.pyc`, `Lib/encodings/__pycache__/ascii.cpython-313.pyc`, `Lib/encodings/__pycache__/utf_8.cpython-313.pyc`, `Lib/importlib/__pycache__/__init__.cpython-313.pyc`, `Lib/importlib/__pycache__/_abc.cpython-313.pyc`, `Lib/logging/__pycache__/__init__.cpython-313.pyc`, `Lib/pathlib/__pycache__/__init__.cpython-313.pyc`, `Lib/pathlib/__pycache__/_abc.cpython-313.pyc`, `Lib/pathlib/__pycache__/_local.cpython-313.pyc`, `Lib/re/__pycache__/__init__.cpython-313.pyc`, `Lib/re/__pycache__/_casefix.cpython-313.pyc`, `Lib/re/__pycache__/_compiler.cpython-313.pyc`, `Lib/re/__pycache__/_constants.cpython-313.pyc`, `Lib/re/__pycache__/_parser.cpython-313.pyc`, `Lib/sysconfig/__pycache__/__init__.cpython-313.pyc`, `Lib/sysconfig/__pycache__/__main__.cpython-313.pyc`, `Lib/xml/__pycache__/__init__.cpython-313.pyc`, `Lib/xml/etree/__pycache__/ElementPath.cpython-313.pyc`, `Lib/xml/etree/__pycache__/__init__.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/__init__.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/_common.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/_tzpath.cpython-313.pyc`, `Makefile`, `Makefile.pre`, `Misc/python-config.sh`, `Misc/python-embed.pc`, `Misc/python.pc`, `Modules/Setup.bootstrap`, `Modules/Setup.local`, `Modules/Setup.stdlib`, `Modules/_abc.o`, `Modules/_asyncio.cpython-313-x86_64-linux-gnu.so`, `Modules/_asynciomodule.o`, `Modules/_bisect.cpython-313-x86_64-linux-gnu.so`, `Modules/_bisectmodule.o`, `Modules/_blake2.cpython-313-x86_64-linux-gnu.so`, `Modules/_blake2/blake2b_impl.o`, `Modules/_blake2/blake2module.o`, `Modules/_blake2/blake2s_impl.o`, `Modules/_bz2.cpython-313-x86_64-linux-gnu.so`, `Modules/_bz2module.o`, `Modules/_codecs_cn.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_hk.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_iso2022.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_jp.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_kr.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_tw.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecsmodule.o`, `Modules/_collectionsmodule.o`, `Modules/_contextvars.cpython-313-x86_64-linux-gnu.so`, `Modules/_contextvarsmodule.o`, `Modules/_csv.cpython-313-x86_64-linux-gnu.so`, `Modules/_csv.o`, `Modules/_ctypes.cpython-313-x86_64-linux-gnu.so`, `Modules/_ctypes/_ctypes.o`, `Modules/_ctypes/_ctypes_test.o`, `Modules/_ctypes/callbacks.o`, `Modules/_ctypes/callproc.o`, `Modules/_ctypes/cfield.o`, `Modules/_ctypes/stgdict.o`, `Modules/_ctypes_test.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses_panel.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses_panel.o`, `Modules/_cursesmodule.o`, `Modules/_datetime.cpython-313-x86_64-linux-gnu.so`, `Modules/_datetimemodule.o`, `Modules/_decimal.cpython-313-x86_64-linux-gnu.so`, `Modules/_decimal/_decimal.o`, `Modules/_decimal/libmpdec/basearith.o`, `Modules/_decimal/libmpdec/constants.o`, `Modules/_decimal/libmpdec/context.o`, `Modules/_decimal/libmpdec/convolute.o`, `Modules/_decimal/libmpdec/crt.o`, `Modules/_decimal/libmpdec/difradix2.o`, `Modules/_decimal/libmpdec/fnt.o`, `Modules/_decimal/libmpdec/fourstep.o`, `Modules/_decimal/libmpdec/io.o`, `Modules/_decimal/libmpdec/libmpdec.a`, `Modules/_decimal/libmpdec/mpalloc.o`, `Modules/_decimal/libmpdec/mpdecimal.o`, `Modules/_decimal/libmpdec/numbertheory.o`, `Modules/_decimal/libmpdec/sixstep.o`, `Modules/_decimal/libmpdec/transpose.o`, `Modules/_elementtree.cpython-313-x86_64-linux-gnu.so`, `Modules/_elementtree.o`, `Modules/_functoolsmodule.o`, `Modules/_hacl/Hacl_Hash_MD5.o`, `Modules/_hacl/Hacl_Hash_SHA1.o`, `Modules/_hacl/Hacl_Hash_SHA2.o`, `Modules/_hacl/Hacl_Hash_SHA3.o`, `Modules/_hacl/libHacl_Hash_SHA2.a`, `Modules/_hashlib.cpython-313-x86_64-linux-gnu.so`, `Modules/_hashopenssl.o`, `Modules/_heapq.cpython-313-x86_64-linux-gnu.so`, `Modules/_heapqmodule.o`, `Modules/_interpchannels.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpchannelsmodule.o`, `Modules/_interpqueues.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpqueuesmodule.o`, `Modules/_interpreters.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpretersmodule.o`, `Modules/_io/_iomodule.o`, `Modules/_io/bufferedio.o`, `Modules/_io/bytesio.o`, `Modules/_io/fileio.o`, `Modules/_io/iobase.o`, `Modules/_io/stringio.o`, `Modules/_io/textio.o`, `Modules/_json.cpython-313-x86_64-linux-gnu.so`, `Modules/_json.o`, `Modules/_localemodule.o`, `Modules/_lsprof.cpython-313-x86_64-linux-gnu.so`, `Modules/_lsprof.o`, `Modules/_lzma.cpython-313-x86_64-linux-gnu.so`, `Modules/_lzmamodule.o`, `Modules/_md5.cpython-313-x86_64-linux-gnu.so`, `Modules/_multibytecodec.cpython-313-x86_64-linux-gnu.so`, `Modules/_multiprocessing.cpython-313-x86_64-linux-gnu.so`, `Modules/_multiprocessing/multiprocessing.o`, `Modules/_multiprocessing/posixshmem.o`, `Modules/_multiprocessing/semaphore.o`, `Modules/_opcode.cpython-313-x86_64-linux-gnu.so`, `Modules/_opcode.o`, `Modules/_operator.o`, `Modules/_pickle.cpython-313-x86_64-linux-gnu.so`, `Modules/_pickle.o`, `Modules/_posixshmem.cpython-313-x86_64-linux-gnu.so`, `Modules/_posixsubprocess.cpython-313-x86_64-linux-gnu.so`, `Modules/_posixsubprocess.o`, `Modules/_queue.cpython-313-x86_64-linux-gnu.so`, `Modules/_queuemodule.o`, `Modules/_random.cpython-313-x86_64-linux-gnu.so`, `Modules/_randommodule.o`, `Modules/_sha1.cpython-313-x86_64-linux-gnu.so`, `Modules/_sha2.cpython-313-x86_64-linux-gnu.so`, `Modules/_sha3.cpython-313-x86_64-linux-gnu.so`, `Modules/_socket.cpython-313-x86_64-linux-gnu.so`, `Modules/_sqlite/blob.o`, `Modules/_sqlite/connection.o`, `Modules/_sqlite/cursor.o`, `Modules/_sqlite/microprotocols.o`, `Modules/_sqlite/module.o`, `Modules/_sqlite/prepare_protocol.o`, `Modules/_sqlite/row.o`, `Modules/_sqlite/statement.o`, `Modules/_sqlite/util.o`, `Modules/_sqlite3.cpython-313-x86_64-linux-gnu.so`, `Modules/_sre/sre.o`, `Modules/_ssl.o`, `Modules/_ssl_failed.cpython-313-x86_64-linux-gnu.so`, `Modules/_stat.o`, `Modules/_statistics.cpython-313-x86_64-linux-gnu.so`, `Modules/_statisticsmodule.o`, `Modules/_struct.cpython-313-x86_64-linux-gnu.so`, `Modules/_struct.o`, `Modules/_suggestions.o`, `Modules/_sysconfig.o`, `Modules/_testbuffer.cpython-313-x86_64-linux-gnu.so`, `Modules/_testbuffer.o`, `Modules/_testcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testcapi/abstract.o`, `Modules/_testcapi/buffer.o`, `Modules/_testcapi/bytes.o`, `Modules/_testcapi/code.o`, `Modules/_testcapi/codec.o`, `Modules/_testcapi/complex.o`, `Modules/_testcapi/datetime.o`, `Modules/_testcapi/dict.o`, `Modules/_testcapi/docstring.o`, `Modules/_testcapi/exceptions.o`, `Modules/_testcapi/file.o`, `Modules/_testcapi/float.o`, `Modules/_testcapi/gc.o`, `Modules/_testcapi/getargs.o`, `Modules/_testcapi/hash.o`, `Modules/_testcapi/heaptype.o`, `Modules/_testcapi/immortal.o`, `Modules/_testcapi/list.o`, `Modules/_testcapi/long.o`, `Modules/_testcapi/mem.o`, `Modules/_testcapi/monitoring.o`, `Modules/_testcapi/numbers.o`, `Modules/_testcapi/object.o`, `Modules/_testcapi/pyatomic.o`, `Modules/_testcapi/run.o`, `Modules/_testcapi/set.o`, `Modules/_testcapi/structmember.o`, `Modules/_testcapi/time.o`, `Modules/_testcapi/tuple.o`, `Modules/_testcapi/unicode.o`, `Modules/_testcapi/vectorcall.o`, `Modules/_testcapi/watchers.o`, `Modules/_testcapimodule.o`, `Modules/_testclinic.cpython-313-x86_64-linux-gnu.so`, `Modules/_testclinic.o`, `Modules/_testclinic_limited.cpython-313-x86_64-linux-gnu.so`, `Modules/_testclinic_limited.o`, `Modules/_testexternalinspection.cpython-313-x86_64-linux-gnu.so`, `Modules/_testexternalinspection.o`, `Modules/_testimportmultiple.cpython-313-x86_64-linux-gnu.so`, `Modules/_testimportmultiple.o`, `Modules/_testinternalcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testinternalcapi.o`, `Modules/_testinternalcapi/pytime.o`, `Modules/_testinternalcapi/set.o`, `Modules/_testinternalcapi/test_critical_sections.o`, `Modules/_testinternalcapi/test_lock.o`, `Modules/_testlimitedcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testlimitedcapi.o`, `Modules/_testlimitedcapi/abstract.o`, `Modules/_testlimitedcapi/bytearray.o`, `Modules/_testlimitedcapi/bytes.o`, `Modules/_testlimitedcapi/complex.o`, `Modules/_testlimitedcapi/dict.o`, `Modules/_testlimitedcapi/eval.o`, `Modules/_testlimitedcapi/file.o`, `Modules/_testlimitedcapi/float.o`, `Modules/_testlimitedcapi/heaptype_relative.o`, `Modules/_testlimitedcapi/import.o`, `Modules/_testlimitedcapi/list.o`, `Modules/_testlimitedcapi/long.o`, `Modules/_testlimitedcapi/object.o`, `Modules/_testlimitedcapi/pyos.o`, `Modules/_testlimitedcapi/set.o`, `Modules/_testlimitedcapi/sys.o`, `Modules/_testlimitedcapi/tuple.o`, `Modules/_testlimitedcapi/unicode.o`, `Modules/_testlimitedcapi/vectorcall_limited.o`, `Modules/_testmultiphase.cpython-313-x86_64-linux-gnu.so`, `Modules/_testmultiphase.o`, `Modules/_testsinglephase.cpython-313-x86_64-linux-gnu.so`, `Modules/_testsinglephase.o`, `Modules/_threadmodule.o`, `Modules/_tracemalloc.o`, `Modules/_typingmodule.o`, `Modules/_uuid.cpython-313-x86_64-linux-gnu.so`, `Modules/_uuidmodule.o`, `Modules/_weakref.o`, `Modules/_xxtestfuzz.cpython-313-x86_64-linux-gnu.so`, `Modules/_xxtestfuzz/_xxtestfuzz.o`, `Modules/_xxtestfuzz/fuzzer.o`, `Modules/_zoneinfo.cpython-313-x86_64-linux-gnu.so`, `Modules/_zoneinfo.o`, `Modules/array.cpython-313-x86_64-linux-gnu.so`, `Modules/arraymodule.o`, `Modules/atexitmodule.o`, `Modules/binascii.cpython-313-x86_64-linux-gnu.so`, `Modules/binascii.o`, `Modules/cjkcodecs/_codecs_cn.o`, `Modules/cjkcodecs/_codecs_hk.o`, `Modules/cjkcodecs/_codecs_iso2022.o`, `Modules/cjkcodecs/_codecs_jp.o`, `Modules/cjkcodecs/_codecs_kr.o`, `Modules/cjkcodecs/_codecs_tw.o`, `Modules/cjkcodecs/multibytecodec.o`, `Modules/cmath.cpython-313-x86_64-linux-gnu.so`, `Modules/cmathmodule.o`, `Modules/config.c`, `Modules/config.o`, `Modules/errnomodule.o`, `Modules/expat/libexpat.a`, `Modules/expat/xmlparse.o`, `Modules/expat/xmlrole.o`, `Modules/expat/xmltok.o`, `Modules/faulthandler.o`, `Modules/fcntl.cpython-313-x86_64-linux-gnu.so`, `Modules/fcntlmodule.o`, `Modules/gcmodule.o`, `Modules/getbuildinfo.o`, `Modules/getpath.o`, `Modules/getpath_noop.o`, `Modules/grp.cpython-313-x86_64-linux-gnu.so`, `Modules/grpmodule.o`, `Modules/itertoolsmodule.o`, `Modules/ld_so_aix`, `Modules/main.o`, `Modules/math.cpython-313-x86_64-linux-gnu.so`, `Modules/mathmodule.o`, `Modules/md5module.o`, `Modules/mmap.cpython-313-x86_64-linux-gnu.so`, `Modules/mmapmodule.o`, `Modules/posixmodule.o`, `Modules/pwdmodule.o`, `Modules/pyexpat.cpython-313-x86_64-linux-gnu.so`, `Modules/pyexpat.o`, `Modules/readline.cpython-313-x86_64-linux-gnu.so`, `Modules/readline.o`, `Modules/resource.cpython-313-x86_64-linux-gnu.so`, `Modules/resource.o`, `Modules/rotatingtree.o`, `Modules/select.cpython-313-x86_64-linux-gnu.so`, `Modules/selectmodule.o`, `Modules/sha1module.o`, `Modules/sha2module.o`, `Modules/sha3module.o`, `Modules/signalmodule.o`, `Modules/socketmodule.o`, `Modules/symtablemodule.o`, `Modules/syslog.cpython-313-x86_64-linux-gnu.so`, `Modules/syslogmodule.o`, `Modules/termios.cpython-313-x86_64-linux-gnu.so`, `Modules/termios.o`, `Modules/timemodule.o`, `Modules/unicodedata.cpython-313-x86_64-linux-gnu.so`, `Modules/unicodedata.o`, `Modules/xxlimited.cpython-313-x86_64-linux-gnu.so`, `Modules/xxlimited.o`, `Modules/xxlimited_35.cpython-313-x86_64-linux-gnu.so`, `Modules/xxlimited_35.o`, `Modules/xxsubtype.cpython-313-x86_64-linux-gnu.so`, `Modules/xxsubtype.o`, `Modules/zlib.cpython-313-x86_64-linux-gnu.so`, `Modules/zlibmodule.o`, `Objects/abstract.o`, `Objects/boolobject.o`, `Objects/bytearrayobject.o`, `Objects/bytes_methods.o`, `Objects/bytesobject.o`, `Objects/call.o`, `Objects/capsule.o`, `Objects/cellobject.o`, `Objects/classobject.o`, `Objects/codeobject.o`, `Objects/complexobject.o`, `Objects/descrobject.o`, `Objects/dictobject.o`, `Objects/enumobject.o`, `Objects/exceptions.o`, `Objects/fileobject.o`, `Objects/floatobject.o`, `Objects/frameobject.o`, `Objects/funcobject.o`, `Objects/genericaliasobject.o`, `Objects/genobject.o`, `Objects/iterobject.o`, `Objects/listobject.o`, `Objects/longobject.o`, `Objects/memoryobject.o`, `Objects/methodobject.o`, `Objects/moduleobject.o`, `Objects/namespaceobject.o`, `Objects/object.o`, `Objects/obmalloc.o`, `Objects/odictobject.o`, `Objects/picklebufobject.o`, `Objects/rangeobject.o`, `Objects/setobject.o`, `Objects/sliceobject.o`, `Objects/structseq.o`, `Objects/tupleobject.o`, `Objects/typeobject.o`, `Objects/typevarobject.o`, `Objects/unicodectype.o`, `Objects/unicodeobject.o`, `Objects/unionobject.o`, `Objects/weakrefobject.o`, `Parser/action_helpers.o`, `Parser/lexer/buffer.o`, `Parser/lexer/lexer.o`, `Parser/lexer/state.o`, `Parser/myreadline.o`, `Parser/parser.o`, `Parser/peg_api.o`, `Parser/pegen.o`, `Parser/pegen_errors.o`, `Parser/string_parser.o`, `Parser/token.o`, `Parser/tokenizer/file_tokenizer.o`, `Parser/tokenizer/helpers.o`, `Parser/tokenizer/readline_tokenizer.o`, `Parser/tokenizer/string_tokenizer.o`, `Parser/tokenizer/utf8_tokenizer.o`, `Programs/_bootstrap_python.o`, `Programs/_freeze_module`, `Programs/_freeze_module.o`, `Programs/_testembed`, `Programs/_testembed.o`, `Programs/python.o`, `Python/Python-ast.o`, `Python/Python-tokenize.o`, `Python/_warnings.o`, `Python/asdl.o`, `Python/asm_trampoline.o`, `Python/assemble.o`, `Python/ast.o`, `Python/ast_opt.o`, `Python/ast_unparse.o`, `Python/bltinmodule.o`, `Python/bootstrap_hash.o`, `Python/brc.o`, `Python/ceval.o`, `Python/ceval_gil.o`, `Python/codecs.o`, `Python/compile.o`, `Python/context.o`, `Python/critical_section.o`, `Python/crossinterp.o`, `Python/dtoa.o`, `Python/dynamic_annotations.o`, `Python/dynload_shlib.o`, `Python/errors.o`, `Python/fileutils.o`, `Python/flowgraph.o`, `Python/formatter_unicode.o`, `Python/frame.o`, `Python/frozen.o`, `Python/frozen_modules/__hello__.h`, `Python/frozen_modules/__phello__.h`, `Python/frozen_modules/__phello__.ham.eggs.h`, `Python/frozen_modules/__phello__.ham.h`, `Python/frozen_modules/__phello__.spam.h`, `Python/frozen_modules/_collections_abc.h`, `Python/frozen_modules/_sitebuiltins.h`, `Python/frozen_modules/abc.h`, `Python/frozen_modules/codecs.h`, `Python/frozen_modules/frozen_only.h`, `Python/frozen_modules/genericpath.h`, `Python/frozen_modules/getpath.h`, `Python/frozen_modules/importlib._bootstrap.h`, `Python/frozen_modules/importlib._bootstrap_external.h`, `Python/frozen_modules/importlib.machinery.h`, `Python/frozen_modules/importlib.util.h`, `Python/frozen_modules/io.h`, `Python/frozen_modules/ntpath.h`, `Python/frozen_modules/os.h`, `Python/frozen_modules/posixpath.h`, `Python/frozen_modules/runpy.h`, `Python/frozen_modules/site.h`, `Python/frozen_modules/stat.h`, `Python/frozen_modules/zipimport.h`, `Python/frozenmain.o`, `Python/future.o`, `Python/gc.o`, `Python/gc_free_threading.o`, `Python/gc_gil.o`, `Python/getargs.o`, `Python/getcompiler.o`, `Python/getcopyright.o`, `Python/getopt.o`, `Python/getplatform.o`, `Python/getversion.o`, `Python/hamt.o`, `Python/hashtable.o`, `Python/import.o`, `Python/importdl.o`, `Python/initconfig.o`, `Python/instruction_sequence.o`, `Python/instrumentation.o`, `Python/interpconfig.o`, `Python/intrinsics.o`, `Python/jit.o`, `Python/legacy_tracing.o`, `Python/lock.o`, `Python/marshal.o`, `Python/modsupport.o`, `Python/mysnprintf.o`, `Python/mystrtoul.o`, `Python/object_stack.o`, `Python/optimizer.o`, `Python/optimizer_analysis.o`, `Python/optimizer_symbols.o`, `Python/parking_lot.o`, `Python/pathconfig.o`, `Python/perf_jit_trampoline.o`, `Python/perf_trampoline.o`, `Python/preconfig.o`, `Python/pyarena.o`, `Python/pyctype.o`, `Python/pyfpe.o`, `Python/pyhash.o`, `Python/pylifecycle.o`, `Python/pymath.o`, `Python/pystate.o`, `Python/pystrcmp.o`, `Python/pystrhex.o`, `Python/pystrtod.o`, `Python/pythonrun.o`, `Python/pytime.o`, `Python/qsbr.o`, `Python/specialize.o`, `Python/structmember.o`, `Python/suggestions.o`, `Python/symtable.o`, `Python/sysmodule.o`, `Python/thread.o`, `Python/traceback.o`, `Python/tracemalloc.o`, `_bootstrap_python`, `build/lib.linux-x86_64-3.13/__pycache__/_sysconfigdata__linux_x86_64-linux-gnu.cpython-313.pyc`, `build/lib.linux-x86_64-3.13/_asyncio.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_bisect.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_blake2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_bz2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_cn.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_hk.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_iso2022.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_jp.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_kr.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_tw.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_contextvars.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_csv.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_ctypes.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_ctypes_test.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_curses.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_curses_panel.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_datetime.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_decimal.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_elementtree.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_hashlib.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_heapq.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpchannels.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpqueues.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpreters.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_json.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_lsprof.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_lzma.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_md5.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_multibytecodec.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_multiprocessing.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_opcode.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_pickle.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_posixshmem.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_posixsubprocess.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_queue.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_random.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha1.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha3.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_socket.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sqlite3.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_statistics.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_struct.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sysconfigdata__linux_x86_64-linux-gnu.py`, `build/lib.linux-x86_64-3.13/_testbuffer.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testclinic.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testclinic_limited.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testexternalinspection.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testimportmultiple.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testinternalcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testlimitedcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testmultiphase.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testsinglephase.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_uuid.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_xxtestfuzz.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_zoneinfo.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/array.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/binascii.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/cmath.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/fcntl.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/grp.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/math.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/mmap.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/pyexpat.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/readline.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/resource.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/select.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/syslog.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/termios.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/unicodedata.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxlimited.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxlimited_35.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxsubtype.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/zlib.cpython-313-x86_64-linux-gnu.so`, `build/scripts-3.13/idle3.13`, `build/scripts-3.13/pydoc3.13`, `config.log`, `config.status`, `libpython3.13.a`, `platform`, `pybuilddir.txt`, `pyconfig.h`, `python`, `python-config`, `python-config.py`, `python-gdb.py`, but `## Git Add Paths` lists `None`. Update `## Git Add Paths` to match the real shipped file set exactly, and make sure `## Issue Connection` explains every functional file that remains in the patch.
2. Missing from `## Git Add Paths`: `Lib/__pycache__/__future__.cpython-313.pyc`, `Lib/__pycache__/_collections_abc.cpython-313.pyc`, `Lib/__pycache__/_colorize.cpython-313.pyc`, `Lib/__pycache__/_compat_pickle.cpython-313.pyc`, `Lib/__pycache__/_compression.cpython-313.pyc`, `Lib/__pycache__/_opcode_metadata.cpython-313.pyc`, `Lib/__pycache__/_sitebuiltins.cpython-313.pyc`, `Lib/__pycache__/_weakrefset.cpython-313.pyc`, `Lib/__pycache__/abc.cpython-313.pyc`, `Lib/__pycache__/argparse.cpython-313.pyc`, `Lib/__pycache__/ast.cpython-313.pyc`, `Lib/__pycache__/bz2.cpython-313.pyc`, `Lib/__pycache__/codecs.cpython-313.pyc`, `Lib/__pycache__/contextlib.cpython-313.pyc`, `Lib/__pycache__/contextvars.cpython-313.pyc`, `Lib/__pycache__/copy.cpython-313.pyc`, `Lib/__pycache__/copyreg.cpython-313.pyc`, `Lib/__pycache__/datetime.cpython-313.pyc`, `Lib/__pycache__/dis.cpython-313.pyc`, `Lib/__pycache__/enum.cpython-313.pyc`, `Lib/__pycache__/fnmatch.cpython-313.pyc`, `Lib/__pycache__/functools.cpython-313.pyc`, `Lib/__pycache__/genericpath.cpython-313.pyc`, `Lib/__pycache__/gettext.cpython-313.pyc`, `Lib/__pycache__/glob.cpython-313.pyc`, `Lib/__pycache__/heapq.cpython-313.pyc`, `Lib/__pycache__/inspect.cpython-313.pyc`, `Lib/__pycache__/io.cpython-313.pyc`, `Lib/__pycache__/keyword.cpython-313.pyc`, `Lib/__pycache__/linecache.cpython-313.pyc`, `Lib/__pycache__/locale.cpython-313.pyc`, `Lib/__pycache__/lzma.cpython-313.pyc`, `Lib/__pycache__/numbers.cpython-313.pyc`, `Lib/__pycache__/opcode.cpython-313.pyc`, `Lib/__pycache__/operator.cpython-313.pyc`, `Lib/__pycache__/os.cpython-313.pyc`, `Lib/__pycache__/posixpath.cpython-313.pyc`, `Lib/__pycache__/reprlib.cpython-313.pyc`, `Lib/__pycache__/selectors.cpython-313.pyc`, `Lib/__pycache__/shutil.cpython-313.pyc`, `Lib/__pycache__/signal.cpython-313.pyc`, `Lib/__pycache__/site.cpython-313.pyc`, `Lib/__pycache__/socket.cpython-313.pyc`, `Lib/__pycache__/ssl.cpython-313.pyc`, `Lib/__pycache__/stat.cpython-313.pyc`, `Lib/__pycache__/string.cpython-313.pyc`, `Lib/__pycache__/struct.cpython-313.pyc`, `Lib/__pycache__/subprocess.cpython-313.pyc`, `Lib/__pycache__/textwrap.cpython-313.pyc`, `Lib/__pycache__/threading.cpython-313.pyc`, `Lib/__pycache__/token.cpython-313.pyc`, `Lib/__pycache__/tokenize.cpython-313.pyc`, `Lib/__pycache__/traceback.cpython-313.pyc`, `Lib/__pycache__/types.cpython-313.pyc`, `Lib/__pycache__/typing.cpython-313.pyc`, `Lib/__pycache__/warnings.cpython-313.pyc`, `Lib/__pycache__/weakref.cpython-313.pyc`, `Lib/asyncio/__pycache__/__init__.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_events.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_futures.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_subprocess.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_tasks.cpython-313.pyc`, `Lib/asyncio/__pycache__/constants.cpython-313.pyc`, `Lib/asyncio/__pycache__/coroutines.cpython-313.pyc`, `Lib/asyncio/__pycache__/events.cpython-313.pyc`, `Lib/asyncio/__pycache__/exceptions.cpython-313.pyc`, `Lib/asyncio/__pycache__/format_helpers.cpython-313.pyc`, `Lib/asyncio/__pycache__/futures.cpython-313.pyc`, `Lib/asyncio/__pycache__/locks.cpython-313.pyc`, `Lib/asyncio/__pycache__/log.cpython-313.pyc`, `Lib/asyncio/__pycache__/mixins.cpython-313.pyc`, `Lib/asyncio/__pycache__/protocols.cpython-313.pyc`, `Lib/asyncio/__pycache__/queues.cpython-313.pyc`, `Lib/asyncio/__pycache__/runners.cpython-313.pyc`, `Lib/asyncio/__pycache__/selector_events.cpython-313.pyc`, `Lib/asyncio/__pycache__/sslproto.cpython-313.pyc`, `Lib/asyncio/__pycache__/staggered.cpython-313.pyc`, `Lib/asyncio/__pycache__/streams.cpython-313.pyc`, `Lib/asyncio/__pycache__/subprocess.cpython-313.pyc`, `Lib/asyncio/__pycache__/taskgroups.cpython-313.pyc`, `Lib/asyncio/__pycache__/tasks.cpython-313.pyc`, `Lib/asyncio/__pycache__/threads.cpython-313.pyc`, `Lib/asyncio/__pycache__/timeouts.cpython-313.pyc`, `Lib/asyncio/__pycache__/transports.cpython-313.pyc`, `Lib/asyncio/__pycache__/trsock.cpython-313.pyc`, `Lib/asyncio/__pycache__/unix_events.cpython-313.pyc`, `Lib/collections/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/futures/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/futures/__pycache__/_base.cpython-313.pyc`, `Lib/encodings/__pycache__/__init__.cpython-313.pyc`, `Lib/encodings/__pycache__/aliases.cpython-313.pyc`, `Lib/encodings/__pycache__/ascii.cpython-313.pyc`, `Lib/encodings/__pycache__/utf_8.cpython-313.pyc`, `Lib/importlib/__pycache__/__init__.cpython-313.pyc`, `Lib/importlib/__pycache__/_abc.cpython-313.pyc`, `Lib/logging/__pycache__/__init__.cpython-313.pyc`, `Lib/pathlib/__pycache__/__init__.cpython-313.pyc`, `Lib/pathlib/__pycache__/_abc.cpython-313.pyc`, `Lib/pathlib/__pycache__/_local.cpython-313.pyc`, `Lib/re/__pycache__/__init__.cpython-313.pyc`, `Lib/re/__pycache__/_casefix.cpython-313.pyc`, `Lib/re/__pycache__/_compiler.cpython-313.pyc`, `Lib/re/__pycache__/_constants.cpython-313.pyc`, `Lib/re/__pycache__/_parser.cpython-313.pyc`, `Lib/sysconfig/__pycache__/__init__.cpython-313.pyc`, `Lib/sysconfig/__pycache__/__main__.cpython-313.pyc`, `Lib/xml/__pycache__/__init__.cpython-313.pyc`, `Lib/xml/etree/__pycache__/ElementPath.cpython-313.pyc`, `Lib/xml/etree/__pycache__/__init__.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/__init__.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/_common.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/_tzpath.cpython-313.pyc`, `Makefile`, `Makefile.pre`, `Misc/python-config.sh`, `Misc/python-embed.pc`, `Misc/python.pc`, `Modules/Setup.bootstrap`, `Modules/Setup.local`, `Modules/Setup.stdlib`, `Modules/_abc.o`, `Modules/_asyncio.cpython-313-x86_64-linux-gnu.so`, `Modules/_asynciomodule.o`, `Modules/_bisect.cpython-313-x86_64-linux-gnu.so`, `Modules/_bisectmodule.o`, `Modules/_blake2.cpython-313-x86_64-linux-gnu.so`, `Modules/_blake2/blake2b_impl.o`, `Modules/_blake2/blake2module.o`, `Modules/_blake2/blake2s_impl.o`, `Modules/_bz2.cpython-313-x86_64-linux-gnu.so`, `Modules/_bz2module.o`, `Modules/_codecs_cn.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_hk.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_iso2022.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_jp.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_kr.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_tw.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecsmodule.o`, `Modules/_collectionsmodule.o`, `Modules/_contextvars.cpython-313-x86_64-linux-gnu.so`, `Modules/_contextvarsmodule.o`, `Modules/_csv.cpython-313-x86_64-linux-gnu.so`, `Modules/_csv.o`, `Modules/_ctypes.cpython-313-x86_64-linux-gnu.so`, `Modules/_ctypes/_ctypes.o`, `Modules/_ctypes/_ctypes_test.o`, `Modules/_ctypes/callbacks.o`, `Modules/_ctypes/callproc.o`, `Modules/_ctypes/cfield.o`, `Modules/_ctypes/stgdict.o`, `Modules/_ctypes_test.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses_panel.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses_panel.o`, `Modules/_cursesmodule.o`, `Modules/_datetime.cpython-313-x86_64-linux-gnu.so`, `Modules/_datetimemodule.o`, `Modules/_decimal.cpython-313-x86_64-linux-gnu.so`, `Modules/_decimal/_decimal.o`, `Modules/_decimal/libmpdec/basearith.o`, `Modules/_decimal/libmpdec/constants.o`, `Modules/_decimal/libmpdec/context.o`, `Modules/_decimal/libmpdec/convolute.o`, `Modules/_decimal/libmpdec/crt.o`, `Modules/_decimal/libmpdec/difradix2.o`, `Modules/_decimal/libmpdec/fnt.o`, `Modules/_decimal/libmpdec/fourstep.o`, `Modules/_decimal/libmpdec/io.o`, `Modules/_decimal/libmpdec/libmpdec.a`, `Modules/_decimal/libmpdec/mpalloc.o`, `Modules/_decimal/libmpdec/mpdecimal.o`, `Modules/_decimal/libmpdec/numbertheory.o`, `Modules/_decimal/libmpdec/sixstep.o`, `Modules/_decimal/libmpdec/transpose.o`, `Modules/_elementtree.cpython-313-x86_64-linux-gnu.so`, `Modules/_elementtree.o`, `Modules/_functoolsmodule.o`, `Modules/_hacl/Hacl_Hash_MD5.o`, `Modules/_hacl/Hacl_Hash_SHA1.o`, `Modules/_hacl/Hacl_Hash_SHA2.o`, `Modules/_hacl/Hacl_Hash_SHA3.o`, `Modules/_hacl/libHacl_Hash_SHA2.a`, `Modules/_hashlib.cpython-313-x86_64-linux-gnu.so`, `Modules/_hashopenssl.o`, `Modules/_heapq.cpython-313-x86_64-linux-gnu.so`, `Modules/_heapqmodule.o`, `Modules/_interpchannels.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpchannelsmodule.o`, `Modules/_interpqueues.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpqueuesmodule.o`, `Modules/_interpreters.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpretersmodule.o`, `Modules/_io/_iomodule.o`, `Modules/_io/bufferedio.o`, `Modules/_io/bytesio.o`, `Modules/_io/fileio.o`, `Modules/_io/iobase.o`, `Modules/_io/stringio.o`, `Modules/_io/textio.o`, `Modules/_json.cpython-313-x86_64-linux-gnu.so`, `Modules/_json.o`, `Modules/_localemodule.o`, `Modules/_lsprof.cpython-313-x86_64-linux-gnu.so`, `Modules/_lsprof.o`, `Modules/_lzma.cpython-313-x86_64-linux-gnu.so`, `Modules/_lzmamodule.o`, `Modules/_md5.cpython-313-x86_64-linux-gnu.so`, `Modules/_multibytecodec.cpython-313-x86_64-linux-gnu.so`, `Modules/_multiprocessing.cpython-313-x86_64-linux-gnu.so`, `Modules/_multiprocessing/multiprocessing.o`, `Modules/_multiprocessing/posixshmem.o`, `Modules/_multiprocessing/semaphore.o`, `Modules/_opcode.cpython-313-x86_64-linux-gnu.so`, `Modules/_opcode.o`, `Modules/_operator.o`, `Modules/_pickle.cpython-313-x86_64-linux-gnu.so`, `Modules/_pickle.o`, `Modules/_posixshmem.cpython-313-x86_64-linux-gnu.so`, `Modules/_posixsubprocess.cpython-313-x86_64-linux-gnu.so`, `Modules/_posixsubprocess.o`, `Modules/_queue.cpython-313-x86_64-linux-gnu.so`, `Modules/_queuemodule.o`, `Modules/_random.cpython-313-x86_64-linux-gnu.so`, `Modules/_randommodule.o`, `Modules/_sha1.cpython-313-x86_64-linux-gnu.so`, `Modules/_sha2.cpython-313-x86_64-linux-gnu.so`, `Modules/_sha3.cpython-313-x86_64-linux-gnu.so`, `Modules/_socket.cpython-313-x86_64-linux-gnu.so`, `Modules/_sqlite/blob.o`, `Modules/_sqlite/connection.o`, `Modules/_sqlite/cursor.o`, `Modules/_sqlite/microprotocols.o`, `Modules/_sqlite/module.o`, `Modules/_sqlite/prepare_protocol.o`, `Modules/_sqlite/row.o`, `Modules/_sqlite/statement.o`, `Modules/_sqlite/util.o`, `Modules/_sqlite3.cpython-313-x86_64-linux-gnu.so`, `Modules/_sre/sre.o`, `Modules/_ssl.o`, `Modules/_ssl_failed.cpython-313-x86_64-linux-gnu.so`, `Modules/_stat.o`, `Modules/_statistics.cpython-313-x86_64-linux-gnu.so`, `Modules/_statisticsmodule.o`, `Modules/_struct.cpython-313-x86_64-linux-gnu.so`, `Modules/_struct.o`, `Modules/_suggestions.o`, `Modules/_sysconfig.o`, `Modules/_testbuffer.cpython-313-x86_64-linux-gnu.so`, `Modules/_testbuffer.o`, `Modules/_testcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testcapi/abstract.o`, `Modules/_testcapi/buffer.o`, `Modules/_testcapi/bytes.o`, `Modules/_testcapi/code.o`, `Modules/_testcapi/codec.o`, `Modules/_testcapi/complex.o`, `Modules/_testcapi/datetime.o`, `Modules/_testcapi/dict.o`, `Modules/_testcapi/docstring.o`, `Modules/_testcapi/exceptions.o`, `Modules/_testcapi/file.o`, `Modules/_testcapi/float.o`, `Modules/_testcapi/gc.o`, `Modules/_testcapi/getargs.o`, `Modules/_testcapi/hash.o`, `Modules/_testcapi/heaptype.o`, `Modules/_testcapi/immortal.o`, `Modules/_testcapi/list.o`, `Modules/_testcapi/long.o`, `Modules/_testcapi/mem.o`, `Modules/_testcapi/monitoring.o`, `Modules/_testcapi/numbers.o`, `Modules/_testcapi/object.o`, `Modules/_testcapi/pyatomic.o`, `Modules/_testcapi/run.o`, `Modules/_testcapi/set.o`, `Modules/_testcapi/structmember.o`, `Modules/_testcapi/time.o`, `Modules/_testcapi/tuple.o`, `Modules/_testcapi/unicode.o`, `Modules/_testcapi/vectorcall.o`, `Modules/_testcapi/watchers.o`, `Modules/_testcapimodule.o`, `Modules/_testclinic.cpython-313-x86_64-linux-gnu.so`, `Modules/_testclinic.o`, `Modules/_testclinic_limited.cpython-313-x86_64-linux-gnu.so`, `Modules/_testclinic_limited.o`, `Modules/_testexternalinspection.cpython-313-x86_64-linux-gnu.so`, `Modules/_testexternalinspection.o`, `Modules/_testimportmultiple.cpython-313-x86_64-linux-gnu.so`, `Modules/_testimportmultiple.o`, `Modules/_testinternalcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testinternalcapi.o`, `Modules/_testinternalcapi/pytime.o`, `Modules/_testinternalcapi/set.o`, `Modules/_testinternalcapi/test_critical_sections.o`, `Modules/_testinternalcapi/test_lock.o`, `Modules/_testlimitedcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testlimitedcapi.o`, `Modules/_testlimitedcapi/abstract.o`, `Modules/_testlimitedcapi/bytearray.o`, `Modules/_testlimitedcapi/bytes.o`, `Modules/_testlimitedcapi/complex.o`, `Modules/_testlimitedcapi/dict.o`, `Modules/_testlimitedcapi/eval.o`, `Modules/_testlimitedcapi/file.o`, `Modules/_testlimitedcapi/float.o`, `Modules/_testlimitedcapi/heaptype_relative.o`, `Modules/_testlimitedcapi/import.o`, `Modules/_testlimitedcapi/list.o`, `Modules/_testlimitedcapi/long.o`, `Modules/_testlimitedcapi/object.o`, `Modules/_testlimitedcapi/pyos.o`, `Modules/_testlimitedcapi/set.o`, `Modules/_testlimitedcapi/sys.o`, `Modules/_testlimitedcapi/tuple.o`, `Modules/_testlimitedcapi/unicode.o`, `Modules/_testlimitedcapi/vectorcall_limited.o`, `Modules/_testmultiphase.cpython-313-x86_64-linux-gnu.so`, `Modules/_testmultiphase.o`, `Modules/_testsinglephase.cpython-313-x86_64-linux-gnu.so`, `Modules/_testsinglephase.o`, `Modules/_threadmodule.o`, `Modules/_tracemalloc.o`, `Modules/_typingmodule.o`, `Modules/_uuid.cpython-313-x86_64-linux-gnu.so`, `Modules/_uuidmodule.o`, `Modules/_weakref.o`, `Modules/_xxtestfuzz.cpython-313-x86_64-linux-gnu.so`, `Modules/_xxtestfuzz/_xxtestfuzz.o`, `Modules/_xxtestfuzz/fuzzer.o`, `Modules/_zoneinfo.cpython-313-x86_64-linux-gnu.so`, `Modules/_zoneinfo.o`, `Modules/array.cpython-313-x86_64-linux-gnu.so`, `Modules/arraymodule.o`, `Modules/atexitmodule.o`, `Modules/binascii.cpython-313-x86_64-linux-gnu.so`, `Modules/binascii.o`, `Modules/cjkcodecs/_codecs_cn.o`, `Modules/cjkcodecs/_codecs_hk.o`, `Modules/cjkcodecs/_codecs_iso2022.o`, `Modules/cjkcodecs/_codecs_jp.o`, `Modules/cjkcodecs/_codecs_kr.o`, `Modules/cjkcodecs/_codecs_tw.o`, `Modules/cjkcodecs/multibytecodec.o`, `Modules/cmath.cpython-313-x86_64-linux-gnu.so`, `Modules/cmathmodule.o`, `Modules/config.c`, `Modules/config.o`, `Modules/errnomodule.o`, `Modules/expat/libexpat.a`, `Modules/expat/xmlparse.o`, `Modules/expat/xmlrole.o`, `Modules/expat/xmltok.o`, `Modules/faulthandler.o`, `Modules/fcntl.cpython-313-x86_64-linux-gnu.so`, `Modules/fcntlmodule.o`, `Modules/gcmodule.o`, `Modules/getbuildinfo.o`, `Modules/getpath.o`, `Modules/getpath_noop.o`, `Modules/grp.cpython-313-x86_64-linux-gnu.so`, `Modules/grpmodule.o`, `Modules/itertoolsmodule.o`, `Modules/ld_so_aix`, `Modules/main.o`, `Modules/math.cpython-313-x86_64-linux-gnu.so`, `Modules/mathmodule.o`, `Modules/md5module.o`, `Modules/mmap.cpython-313-x86_64-linux-gnu.so`, `Modules/mmapmodule.o`, `Modules/posixmodule.o`, `Modules/pwdmodule.o`, `Modules/pyexpat.cpython-313-x86_64-linux-gnu.so`, `Modules/pyexpat.o`, `Modules/readline.cpython-313-x86_64-linux-gnu.so`, `Modules/readline.o`, `Modules/resource.cpython-313-x86_64-linux-gnu.so`, `Modules/resource.o`, `Modules/rotatingtree.o`, `Modules/select.cpython-313-x86_64-linux-gnu.so`, `Modules/selectmodule.o`, `Modules/sha1module.o`, `Modules/sha2module.o`, `Modules/sha3module.o`, `Modules/signalmodule.o`, `Modules/socketmodule.o`, `Modules/symtablemodule.o`, `Modules/syslog.cpython-313-x86_64-linux-gnu.so`, `Modules/syslogmodule.o`, `Modules/termios.cpython-313-x86_64-linux-gnu.so`, `Modules/termios.o`, `Modules/timemodule.o`, `Modules/unicodedata.cpython-313-x86_64-linux-gnu.so`, `Modules/unicodedata.o`, `Modules/xxlimited.cpython-313-x86_64-linux-gnu.so`, `Modules/xxlimited.o`, `Modules/xxlimited_35.cpython-313-x86_64-linux-gnu.so`, `Modules/xxlimited_35.o`, `Modules/xxsubtype.cpython-313-x86_64-linux-gnu.so`, `Modules/xxsubtype.o`, `Modules/zlib.cpython-313-x86_64-linux-gnu.so`, `Modules/zlibmodule.o`, `Objects/abstract.o`, `Objects/boolobject.o`, `Objects/bytearrayobject.o`, `Objects/bytes_methods.o`, `Objects/bytesobject.o`, `Objects/call.o`, `Objects/capsule.o`, `Objects/cellobject.o`, `Objects/classobject.o`, `Objects/codeobject.o`, `Objects/complexobject.o`, `Objects/descrobject.o`, `Objects/dictobject.o`, `Objects/enumobject.o`, `Objects/exceptions.o`, `Objects/fileobject.o`, `Objects/floatobject.o`, `Objects/frameobject.o`, `Objects/funcobject.o`, `Objects/genericaliasobject.o`, `Objects/genobject.o`, `Objects/iterobject.o`, `Objects/listobject.o`, `Objects/longobject.o`, `Objects/memoryobject.o`, `Objects/methodobject.o`, `Objects/moduleobject.o`, `Objects/namespaceobject.o`, `Objects/object.o`, `Objects/obmalloc.o`, `Objects/odictobject.o`, `Objects/picklebufobject.o`, `Objects/rangeobject.o`, `Objects/setobject.o`, `Objects/sliceobject.o`, `Objects/structseq.o`, `Objects/tupleobject.o`, `Objects/typeobject.o`, `Objects/typevarobject.o`, `Objects/unicodectype.o`, `Objects/unicodeobject.o`, `Objects/unionobject.o`, `Objects/weakrefobject.o`, `Parser/action_helpers.o`, `Parser/lexer/buffer.o`, `Parser/lexer/lexer.o`, `Parser/lexer/state.o`, `Parser/myreadline.o`, `Parser/parser.o`, `Parser/peg_api.o`, `Parser/pegen.o`, `Parser/pegen_errors.o`, `Parser/string_parser.o`, `Parser/token.o`, `Parser/tokenizer/file_tokenizer.o`, `Parser/tokenizer/helpers.o`, `Parser/tokenizer/readline_tokenizer.o`, `Parser/tokenizer/string_tokenizer.o`, `Parser/tokenizer/utf8_tokenizer.o`, `Programs/_bootstrap_python.o`, `Programs/_freeze_module`, `Programs/_freeze_module.o`, `Programs/_testembed`, `Programs/_testembed.o`, `Programs/python.o`, `Python/Python-ast.o`, `Python/Python-tokenize.o`, `Python/_warnings.o`, `Python/asdl.o`, `Python/asm_trampoline.o`, `Python/assemble.o`, `Python/ast.o`, `Python/ast_opt.o`, `Python/ast_unparse.o`, `Python/bltinmodule.o`, `Python/bootstrap_hash.o`, `Python/brc.o`, `Python/ceval.o`, `Python/ceval_gil.o`, `Python/codecs.o`, `Python/compile.o`, `Python/context.o`, `Python/critical_section.o`, `Python/crossinterp.o`, `Python/dtoa.o`, `Python/dynamic_annotations.o`, `Python/dynload_shlib.o`, `Python/errors.o`, `Python/fileutils.o`, `Python/flowgraph.o`, `Python/formatter_unicode.o`, `Python/frame.o`, `Python/frozen.o`, `Python/frozen_modules/__hello__.h`, `Python/frozen_modules/__phello__.h`, `Python/frozen_modules/__phello__.ham.eggs.h`, `Python/frozen_modules/__phello__.ham.h`, `Python/frozen_modules/__phello__.spam.h`, `Python/frozen_modules/_collections_abc.h`, `Python/frozen_modules/_sitebuiltins.h`, `Python/frozen_modules/abc.h`, `Python/frozen_modules/codecs.h`, `Python/frozen_modules/frozen_only.h`, `Python/frozen_modules/genericpath.h`, `Python/frozen_modules/getpath.h`, `Python/frozen_modules/importlib._bootstrap.h`, `Python/frozen_modules/importlib._bootstrap_external.h`, `Python/frozen_modules/importlib.machinery.h`, `Python/frozen_modules/importlib.util.h`, `Python/frozen_modules/io.h`, `Python/frozen_modules/ntpath.h`, `Python/frozen_modules/os.h`, `Python/frozen_modules/posixpath.h`, `Python/frozen_modules/runpy.h`, `Python/frozen_modules/site.h`, `Python/frozen_modules/stat.h`, `Python/frozen_modules/zipimport.h`, `Python/frozenmain.o`, `Python/future.o`, `Python/gc.o`, `Python/gc_free_threading.o`, `Python/gc_gil.o`, `Python/getargs.o`, `Python/getcompiler.o`, `Python/getcopyright.o`, `Python/getopt.o`, `Python/getplatform.o`, `Python/getversion.o`, `Python/hamt.o`, `Python/hashtable.o`, `Python/import.o`, `Python/importdl.o`, `Python/initconfig.o`, `Python/instruction_sequence.o`, `Python/instrumentation.o`, `Python/interpconfig.o`, `Python/intrinsics.o`, `Python/jit.o`, `Python/legacy_tracing.o`, `Python/lock.o`, `Python/marshal.o`, `Python/modsupport.o`, `Python/mysnprintf.o`, `Python/mystrtoul.o`, `Python/object_stack.o`, `Python/optimizer.o`, `Python/optimizer_analysis.o`, `Python/optimizer_symbols.o`, `Python/parking_lot.o`, `Python/pathconfig.o`, `Python/perf_jit_trampoline.o`, `Python/perf_trampoline.o`, `Python/preconfig.o`, `Python/pyarena.o`, `Python/pyctype.o`, `Python/pyfpe.o`, `Python/pyhash.o`, `Python/pylifecycle.o`, `Python/pymath.o`, `Python/pystate.o`, `Python/pystrcmp.o`, `Python/pystrhex.o`, `Python/pystrtod.o`, `Python/pythonrun.o`, `Python/pytime.o`, `Python/qsbr.o`, `Python/specialize.o`, `Python/structmember.o`, `Python/suggestions.o`, `Python/symtable.o`, `Python/sysmodule.o`, `Python/thread.o`, `Python/traceback.o`, `Python/tracemalloc.o`, `_bootstrap_python`, `build/lib.linux-x86_64-3.13/__pycache__/_sysconfigdata__linux_x86_64-linux-gnu.cpython-313.pyc`, `build/lib.linux-x86_64-3.13/_asyncio.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_bisect.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_blake2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_bz2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_cn.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_hk.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_iso2022.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_jp.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_kr.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_tw.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_contextvars.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_csv.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_ctypes.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_ctypes_test.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_curses.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_curses_panel.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_datetime.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_decimal.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_elementtree.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_hashlib.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_heapq.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpchannels.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpqueues.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpreters.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_json.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_lsprof.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_lzma.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_md5.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_multibytecodec.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_multiprocessing.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_opcode.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_pickle.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_posixshmem.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_posixsubprocess.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_queue.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_random.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha1.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha3.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_socket.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sqlite3.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_statistics.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_struct.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sysconfigdata__linux_x86_64-linux-gnu.py`, `build/lib.linux-x86_64-3.13/_testbuffer.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testclinic.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testclinic_limited.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testexternalinspection.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testimportmultiple.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testinternalcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testlimitedcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testmultiphase.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testsinglephase.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_uuid.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_xxtestfuzz.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_zoneinfo.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/array.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/binascii.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/cmath.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/fcntl.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/grp.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/math.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/mmap.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/pyexpat.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/readline.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/resource.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/select.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/syslog.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/termios.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/unicodedata.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxlimited.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxlimited_35.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxsubtype.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/zlib.cpython-313-x86_64-linux-gnu.so`, `build/scripts-3.13/idle3.13`, `build/scripts-3.13/pydoc3.13`, `config.log`, `config.status`, `libpython3.13.a`, `platform`, `pybuilddir.txt`, `pyconfig.h`, `python`, `python-config`, `python-config.py`, `python-gdb.py`.
2. Listed in `## Git Add Paths` but not actually changed: `None`.

## Refinement Pass 1

Subject: Diagnose supervisord polling evidence without CPython changes

## Commit Message
No source change. The collected signal points to a Python application process running `supervisord`, not to a confirmed CPython runtime defect. This refinement addresses the review finding by removing generated build artifacts from the earlier validation run so the workspace no longer has patch metadata drift.

## Evidence Confidence
inferred

## Issue Connection
Fixer collected perf, strace, and `/proc` evidence for `/usr/bin/python3.13` running `/usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf`. The strace excerpt shows repeated `wait4(-1, ..., WNOHANG)` calls returning `ECHILD`, followed by `poll(..., 1000)` timing out after about one second. The `/proc` kernel stack and `wchan` place the sampled thread in `poll_schedule_timeout`, which means the sampled thread was sleeping in the kernel poll path during capture.

The cautious inference is that the signal comes from a `supervisord` event loop or configuration, or from profiler attribution around an interpreted application, not from a demonstrated CPython runtime bug. I made no CPython source change. CPython conventions checked include `README.rst` and the local runtime patterns `_PyDeadline_*`/`Py_BEGIN_ALLOW_THREADS` in `selectmodule.c` and `_waitpid_lock` in `Lib/subprocess.py`; no local helper applies because no source patch is justified.

The expected effect is that no upstream CPython behavior is changed based on indirect evidence. The review finding was addressed by cleaning generated validation outputs, leaving no source diff.

## Git Add Paths
None

## Validation
Previously ran the project-level entrypoint from the workspace root:

`./configure && make`

Result: command exited 0. The build completed, but reported `_ssl` was built and then removed because it failed to import with `undefined symbol: TLSv1_method`; optional `_dbm`, `_gdbm`, and `_tkinter` dependencies were also missing.

For this refinement, ran `make distclean` to remove generated build outputs from validation. Then ran `git status --short` and `git diff --name-only`; both produced no output, confirming the workspace is clean.

Independent reproduction remains blocked: `/usr/bin/python3` exists, but `/usr/bin/supervisord` and `/etc/supervisor/supervisord.conf` are missing, so the exact captured command cannot be run under `strace` here. I did not run `make check` after cleanup because there is no source change and reconfiguring would recreate generated artifacts.

## Review Pass 2

RESULT: ok

diagnosis-only report

report

python3.13 likely remains stuck in a busy-poll loop. A diagnosis report and patch proposal were created locally.

state: readycreated: 2026-05-18 21:58 UTCvalidation: ready
Published session

Prompt

## Plan Pass

You are planning a fixer patch before any edits happen.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. The original pre-edit snapshot is available at `./source` if you need to inspect it. For interpreter processes, plan from the script/application entrypoint evidence first and include the runtime only as a second investigation target unless the evidence proves a runtime bug.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround. Inspect the relevant code, nearby callers, project contribution docs, and local helper/compat APIs, but do not edit files in this pass.

Return a short markdown plan with these exact sections:

## Problem
## Evidence Confidence
## Proposed Subject
## Patch Plan
## Risks
## Validation

Classify `## Evidence Confidence` as exactly one of `reproduced`, `observed`, or `inferred`. Use `inferred` only for a no-patch diagnosis/report plan unless you can name the extra evidence you will collect before editing; inferred source patches are blocked by Fixer because they are not pull-request-ready. For `observed` source-patch plans, plan to say in the final `## Issue Connection` that the failure was observed by Fixer and not independently reproduced. If the plan touches authentication, authorization, credentials, cryptography, sandboxing, permissions, or timing/throttling behavior, treat it as security-sensitive: do not plan a source patch unless validation can reproduce the behavior and analyze the security impact; otherwise plan a no-patch diagnosis/report. The plan must explain how the proposed code change addresses the observed issue evidence, call out any prior Fixer patch that should be improved or replaced, reject awkward control flow such as avoidable `goto` if there is a cleaner bounded alternative, name any local helper APIs or maintainer conventions the patch should follow, and keep the intended maintainer-facing explanation clear enough that someone unfamiliar with the local complaint wording can still follow the fix. In `## Validation`, name the reproducible configure/build/test entrypoint you will try from the workspace root before any focused leaf compile or smoke check, and include one bounded independent reproduction attempt for the collected failure signal when it is safe and cheap. Do not plan to claim `reproduced` unless that reproduction command or test can actually show the failure.

## Patch Pass

You are working on a bounded fixer proposal.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. Produce the smallest reasonable patch for the target repository, keep the change upstreamable, prefer the clearest control flow available, and do not keep avoidable `goto` when a simpler structure would read better. Before introducing new file, process, allocation, locking, networking, or platform APIs, inspect nearby code and project contribution docs for existing helpers or compatibility wrappers and use those local patterns unless you can explain why they do not fit. Validate from a reproducible workspace-root entrypoint before falling back to focused leaf commands; if a build or test cannot run, report the exact command, the exact blocker, and any narrower check you ran instead. During validation, also try one bounded independent reproduction of the collected failure signal when it is safe and cheap, such as a failing test, smoke command, perf/strace comparison, or before/after runtime check. Only use `reproduced` if that command or test actually reproduced the failure; otherwise keep `observed` and report the reproduction blocker. The final explanation must connect the observed issue evidence to the actual code change, not just paraphrase the diff. Write like a maintainer is going to read the patch mail cold: explain the bug in plain language, define subsystem-specific jargon the first time you need it, and make the causal story obvious. Explicitly classify evidence confidence as `reproduced`, `observed`, or `inferred`: `reproduced` means you reproduced the failure locally; `observed` means Fixer has direct crash/log/trace evidence but you did not independently reproduce it; `inferred` means the source patch is not pull-request-ready, so do not leave a source diff unless you first gather stronger observed/reproduced evidence; otherwise return a no-patch diagnosis/report. For any source-changing `observed` patch, say explicitly in `## Issue Connection` that the failure was observed by Fixer and not independently reproduced. Security-sensitive areas such as authentication, authorization, credentials, cryptography, sandboxing, permissions, and timing/throttling behavior need reproduced evidence plus explicit security-impact analysis before leaving a source diff; otherwise return a no-patch diagnosis/report for human review. If you introduce non-obvious state translation, index remapping, or backend split logic, add a short source comment that explains the invariant being preserved.

Start by explaining the likely root cause from the collected perf, strace, and /proc evidence. If you cannot land a safe patch, leave a diagnosis that is strong enough for an upstream bug report.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround. 

Keep the change narrowly scoped and summarize validation clearly.

In every authoring pass, your final response must start with `Subject: <single-line git commit subject>` and then include these markdown sections exactly:

## Commit Message
A short upstream-friendly explanation of what changed and why. Write it in plain language that a maintainer can follow without local complaint context. If you use subsystem jargon, define it immediately.

## Evidence Confidence
Exactly one word: `reproduced`, `observed`, or `inferred`. Use `reproduced` only when you reproduced the failure locally with a command or test, and include that command/test in `## Validation`. Use `observed` when Fixer has direct crash/log/trace evidence but you did not independently reproduce it. If `## Git Add Paths` lists source files for an `observed` patch, `## Issue Connection` must explicitly say the failure was observed by Fixer and not independently reproduced. Security-sensitive source changes touching authentication, authorization, credentials, cryptography, sandboxing, permissions, or timing/throttling behavior require reproduced evidence and explicit security-impact analysis; otherwise list `None` under `## Git Add Paths` and write a no-patch diagnosis/report. Use `inferred` for profiler/strace/indirect evidence; inferred responses may be no-patch diagnoses or reports, but inferred source patches are not pull-request-ready until stronger evidence is gathered.

## Issue Connection
Write this as maintainer-facing patch mail, not as local Fixer notes. Cover four things explicitly in readable sentences: the user-visible symptom or the exact collected signal, the code-level cause or the cautious inference from evidence, the specific change you made, and the expected effect. Do not invent a reproducer, command line, crash, or user-visible failure that is not present in the evidence bundle. If the evidence is direct-but-not-reproduced, say it was observed by Fixer and not independently reproduced. If the evidence is indirect and you did not gather stronger evidence, do not leave a source diff; write a no-patch diagnosis/report instead. Include an explicit effect sentence such as `The expected effect is ...`, `This should reduce ...`, or `This prevents ...` for source patches. If the logic is non-obvious in code, mention that you added a short explanatory comment.

## Git Add Paths
List the repo-relative paths that belong in the final patch, one per line. Use `None` only when you intentionally made no source changes. Include intentionally new files, and do not list generated build artifacts.

## Validation
List the checks you ran, or say clearly that you could not run them. Include the independent reproduction command/test and result when `## Evidence Confidence` is `reproduced`; if reproduction was attempted but blocked, name the exact blocker and keep confidence at `observed` or `inferred`.

Before editing, read the plan at `./plan-output.txt` and follow it unless the code proves part of it wrong. If you change course, say so explicitly in the final write-up instead of silently drifting from the plan.

## Review Pass 1 (local metadata check)

Local metadata consistency check

## Refinement Pass 1

You are refining a fixer patch after an explicit code review.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. Read the latest author response at `./patch-output.txt`. Read the review report at `./review-1-output.txt`. This is refinement round 1. The original pre-edit snapshot is available at `./source` if you need to compare the current patch against it. Re-read the planning pass at `./plan-output.txt` before editing. The workspace currently changes these repo-relative paths: Lib/__pycache__/__future__.cpython-313.pyc, Lib/__pycache__/_collections_abc.cpython-313.pyc, Lib/__pycache__/_colorize.cpython-313.pyc, Lib/__pycache__/_compat_pickle.cpython-313.pyc, Lib/__pycache__/_compression.cpython-313.pyc, Lib/__pycache__/_opcode_metadata.cpython-313.pyc, Lib/__pycache__/_sitebuiltins.cpython-313.pyc, Lib/__pycache__/_weakrefset.cpython-313.pyc, Lib/__pycache__/abc.cpython-313.pyc, Lib/__pycache__/argparse.cpython-313.pyc, Lib/__pycache__/ast.cpython-313.pyc, Lib/__pycache__/bz2.cpython-313.pyc, Lib/__pycache__/codecs.cpython-313.pyc, Lib/__pycache__/contextlib.cpython-313.pyc, Lib/__pycache__/contextvars.cpython-313.pyc, Lib/__pycache__/copy.cpython-313.pyc, Lib/__pycache__/copyreg.cpython-313.pyc, Lib/__pycache__/datetime.cpython-313.pyc, Lib/__pycache__/dis.cpython-313.pyc, Lib/__pycache__/enum.cpython-313.pyc, Lib/__pycache__/fnmatch.cpython-313.pyc, Lib/__pycache__/functools.cpython-313.pyc, Lib/__pycache__/genericpath.cpython-313.pyc, Lib/__pycache__/gettext.cpython-313.pyc, Lib/__pycache__/glob.cpython-313.pyc, Lib/__pycache__/heapq.cpython-313.pyc, Lib/__pycache__/inspect.cpython-313.pyc, Lib/__pycache__/io.cpython-313.pyc, Lib/__pycache__/keyword.cpython-313.pyc, Lib/__pycache__/linecache.cpython-313.pyc, Lib/__pycache__/locale.cpython-313.pyc, Lib/__pycache__/lzma.cpython-313.pyc, Lib/__pycache__/numbers.cpython-313.pyc, Lib/__pycache__/opcode.cpython-313.pyc, Lib/__pycache__/operator.cpython-313.pyc, Lib/__pycache__/os.cpython-313.pyc, Lib/__pycache__/posixpath.cpython-313.pyc, Lib/__pycache__/reprlib.cpython-313.pyc, Lib/__pycache__/selectors.cpython-313.pyc, Lib/__pycache__/shutil.cpython-313.pyc, Lib/__pycache__/signal.cpython-313.pyc, Lib/__pycache__/site.cpython-313.pyc, Lib/__pycache__/socket.cpython-313.pyc, Lib/__pycache__/ssl.cpython-313.pyc, Lib/__pycache__/stat.cpython-313.pyc, Lib/__pycache__/string.cpython-313.pyc, Lib/__pycache__/struct.cpython-313.pyc, Lib/__pycache__/subprocess.cpython-313.pyc, Lib/__pycache__/textwrap.cpython-313.pyc, Lib/__pycache__/threading.cpython-313.pyc, Lib/__pycache__/token.cpython-313.pyc, Lib/__pycache__/tokenize.cpython-313.pyc, Lib/__pycache__/traceback.cpython-313.pyc, Lib/__pycache__/types.cpython-313.pyc, Lib/__pycache__/typing.cpython-313.pyc, Lib/__pycache__/warnings.cpython-313.pyc, Lib/__pycache__/weakref.cpython-313.pyc, Lib/asyncio/__pycache__/__init__.cpython-313.pyc, Lib/asyncio/__pycache__/base_events.cpython-313.pyc, Lib/asyncio/__pycache__/base_futures.cpython-313.pyc, Lib/asyncio/__pycache__/base_subprocess.cpython-313.pyc, Lib/asyncio/__pycache__/base_tasks.cpython-313.pyc, Lib/asyncio/__pycache__/constants.cpython-313.pyc, Lib/asyncio/__pycache__/coroutines.cpython-313.pyc, Lib/asyncio/__pycache__/events.cpython-313.pyc, Lib/asyncio/__pycache__/exceptions.cpython-313.pyc, Lib/asyncio/__pycache__/format_helpers.cpython-313.pyc, Lib/asyncio/__pycache__/futures.cpython-313.pyc, Lib/asyncio/__pycache__/locks.cpython-313.pyc, Lib/asyncio/__pycache__/log.cpython-313.pyc, Lib/asyncio/__pycache__/mixins.cpython-313.pyc, Lib/asyncio/__pycache__/protocols.cpython-313.pyc, Lib/asyncio/__pycache__/queues.cpython-313.pyc, Lib/asyncio/__pycache__/runners.cpython-313.pyc, Lib/asyncio/__pycache__/selector_events.cpython-313.pyc, Lib/asyncio/__pycache__/sslproto.cpython-313.pyc, Lib/asyncio/__pycache__/staggered.cpython-313.pyc, Lib/asyncio/__pycache__/streams.cpython-313.pyc, Lib/asyncio/__pycache__/subprocess.cpython-313.pyc, Lib/asyncio/__pycache__/taskgroups.cpython-313.pyc, Lib/asyncio/__pycache__/tasks.cpython-313.pyc, Lib/asyncio/__pycache__/threads.cpython-313.pyc, Lib/asyncio/__pycache__/timeouts.cpython-313.pyc, Lib/asyncio/__pycache__/transports.cpython-313.pyc, Lib/asyncio/__pycache__/trsock.cpython-313.pyc, Lib/asyncio/__pycache__/unix_events.cpython-313.pyc, Lib/collections/__pycache__/__init__.cpython-313.pyc, Lib/concurrent/__pycache__/__init__.cpython-313.pyc, Lib/concurrent/futures/__pycache__/__init__.cpython-313.pyc, Lib/concurrent/futures/__pycache__/_base.cpython-313.pyc, Lib/encodings/__pycache__/__init__.cpython-313.pyc, Lib/encodings/__pycache__/aliases.cpython-313.pyc, Lib/encodings/__pycache__/ascii.cpython-313.pyc, Lib/encodings/__pycache__/utf_8.cpython-313.pyc, Lib/importlib/__pycache__/__init__.cpython-313.pyc, Lib/importlib/__pycache__/_abc.cpython-313.pyc, Lib/logging/__pycache__/__init__.cpython-313.pyc, Lib/pathlib/__pycache__/__init__.cpython-313.pyc, Lib/pathlib/__pycache__/_abc.cpython-313.pyc, Lib/pathlib/__pycache__/_local.cpython-313.pyc, Lib/re/__pycache__/__init__.cpython-313.pyc, Lib/re/__pycache__/_casefix.cpython-313.pyc, Lib/re/__pycache__/_compiler.cpython-313.pyc, Lib/re/__pycache__/_constants.cpyth

[truncated 29270 bytes]

Response

## Plan Pass

## Problem
Fixer observed high aggregate CPU for `python3.13`, but the sampled command line is `/usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf`. The syscall evidence shows `wait4(-1, ..., WNOHANG) = -1 ECHILD` followed by `poll(..., 1000) = 0` about once per second, which looks like supervisord’s application event loop rather than a CPython runtime spin. The bundled raw investigation files are not available in this workspace, so there is no direct reproducer or Python-level stack beyond the excerpt.

## Evidence Confidence
observed

## Proposed Subject
No CPython source patch for this pass: diagnose Fixer opportunity 88892 as insufficiently connected to a `python3.13` upstream defect, and recommend redirecting investigation to supervisord or collecting stronger interpreter evidence first.

## Patch Plan
Do not edit CPython source unless new evidence shows a runtime bug. The observed entrypoint is supervisord, and the `poll(..., 1000)` timeout indicates bounded sleeping, not a tight CPython busy loop.

Use the entrypoint evidence first: inspect supervisord behavior/config if available in a later pass, before treating `os.waitpid`, `select.poll`, or the evaluator as faulty.

If stronger evidence later implicates CPython, follow local conventions seen in `Modules/posixmodule.c` and `Modules/selectmodule.c`: syscall wrappers use `Py_BEGIN_ALLOW_THREADS` / `Py_END_ALLOW_THREADS`, retry on `EINTR`, call `PyErr_CheckSignals`, and report errors through `posix_error()` or `PyErr_SetFromErrno`. No relevant supervisord-specific helper exists in this Python source tree.

No prior Fixer patch was found in the workspace, and `git status --short` is clean. There is therefore no prior patch to improve or replace. Avoid awkward control flow such as adding `goto`-based handling around wait/poll paths; if a real CPython issue is later proven, keep any change local and structured around the existing bounded syscall loops.

## Risks
A CPython patch here would likely be speculative: the sampled process is an application daemon, the top native backtrace is unresolved/implausible around `pthread_attr_destroy`, and the syscall trace shows one-second blocking polls.

Changing `os.waitpid`, `select.poll`, `selectors`, or subprocess behavior without a reproducer risks regressions in stable, widely used APIs.

## Validation
Before reporting any final diagnosis, try the project-level entrypoint from the workspace root:

```sh
./configure && make
```

If it fails because Debian build dependencies or generated files are missing, record the exact command and failure reason.

Because no source patch is planned, use a bounded independent signal check rather than claiming reproduction: run a small Python wait/poll smoke under `strace` to confirm that `waitpid(-1, WNOHANG)` with no children plus `poll(..., 1000)` sleeps roughly one second and is not a tight loop. If a later runtime patch becomes justified, follow with the narrowest relevant CPython tests, likely `./python -m test test_os test_select test_subprocess`, after the project build attempt.

## Patch Pass

Subject: Diagnose supervisord wait/poll trace as not a CPython defect

## Commit Message
No source change is proposed. The collected trace is from `supervisord` running under Python, and the syscall pattern shows a bounded one-second `poll()` sleep between `wait4(..., WNOHANG)` checks. That does not identify a CPython runtime loop to patch upstream.

## Evidence Confidence
observed

## Issue Connection
Fixer observed high aggregate CPU attributed to `python3.13`, with `/proc` showing the sampled process named `supervisord`, state `S (sleeping)`, and `wchan` in `poll_schedule_timeout`. The strace excerpt shows repeated `wait4(-1, ..., WNOHANG) = -1 ECHILD` followed by `poll(..., 1000) = 0 <~1.001s>`.

The likely root cause is an application-level supervisord event loop checking for child exits and then sleeping for one second, not a tight CPython busy loop. The native backtrace is unresolved and does not provide a reliable CPython code-level fault. I followed the saved plan and did not change course: without stronger evidence tying the signal to `os.waitpid`, `select.poll`, or the interpreter, a CPython source patch would be speculative.

I inspected CPython contribution/build guidance in `README.rst`, Debian source notes in `debian/README.source`, and nearby wait/poll implementations. Relevant local conventions are the syscall wrappers in `Modules/posixmodule.c` and `Modules/selectmodule.c`, which use `Py_BEGIN_ALLOW_THREADS` / `Py_END_ALLOW_THREADS`, retry on `EINTR`, check `PyErr_CheckSignals()`, and report errors with local error helpers. No relevant supervisord-specific helper exists in this repository.

The expected effect of this no-patch diagnosis is to avoid landing an upstream CPython change for evidence that currently points at supervisord behavior or profiler attribution, and to redirect follow-up toward supervisord/config evidence or a stronger Python-level reproducer.

## Git Add Paths
None

## Validation
Ran workspace-root validation:

```sh
./configure && make
```

Result: exit code 0. The build completed, but reported optional module issues: `_ssl` was built then removed because importing it failed with `undefined symbol: TLSv1_method`; `_dbm`, `_gdbm`, and `_tkinter` were missing.

Bounded independent signal check:

```sh
./python - <<'PY'
import os, select, time
start = time.monotonic()
try:
    os.waitpid(-1, os.WNOHANG)
except ChildProcessError as exc:
    wait_result = type(exc).__name__
else:
    wait_result = 'no-error'
events = select.poll().poll(1000)
elapsed = time.monotonic() - start
print(f'wait={wait_result} events={events!r} elapsed={elapsed:.3f}')
PY
```

Result: `wait=ChildProcessError events=[] elapsed=1.001`, confirming the wait/no-child plus 1000 ms poll pattern is bounded sleeping, not a reproduced busy loop.

Attempted syscall-level smoke validation with:

```sh
strace -qq -tt -T -e trace=wait4,poll ./python ...
```

Blocked by sandbox ptrace restrictions: `PTRACE_TRACEME: Operation not permitted` and `ptrace(PTRACE_SEIZE, 5): Operation not permitted`. Therefore the original failure signal was not independently reproduced; it remains Fixer-observed trace evidence.

## Review Pass 1 (local metadata check)

RESULT: fix-needed

## Findings
1. Patch metadata drift: the workspace currently changes `Lib/__pycache__/__future__.cpython-313.pyc`, `Lib/__pycache__/_collections_abc.cpython-313.pyc`, `Lib/__pycache__/_colorize.cpython-313.pyc`, `Lib/__pycache__/_compat_pickle.cpython-313.pyc`, `Lib/__pycache__/_compression.cpython-313.pyc`, `Lib/__pycache__/_opcode_metadata.cpython-313.pyc`, `Lib/__pycache__/_sitebuiltins.cpython-313.pyc`, `Lib/__pycache__/_weakrefset.cpython-313.pyc`, `Lib/__pycache__/abc.cpython-313.pyc`, `Lib/__pycache__/argparse.cpython-313.pyc`, `Lib/__pycache__/ast.cpython-313.pyc`, `Lib/__pycache__/bz2.cpython-313.pyc`, `Lib/__pycache__/codecs.cpython-313.pyc`, `Lib/__pycache__/contextlib.cpython-313.pyc`, `Lib/__pycache__/contextvars.cpython-313.pyc`, `Lib/__pycache__/copy.cpython-313.pyc`, `Lib/__pycache__/copyreg.cpython-313.pyc`, `Lib/__pycache__/datetime.cpython-313.pyc`, `Lib/__pycache__/dis.cpython-313.pyc`, `Lib/__pycache__/enum.cpython-313.pyc`, `Lib/__pycache__/fnmatch.cpython-313.pyc`, `Lib/__pycache__/functools.cpython-313.pyc`, `Lib/__pycache__/genericpath.cpython-313.pyc`, `Lib/__pycache__/gettext.cpython-313.pyc`, `Lib/__pycache__/glob.cpython-313.pyc`, `Lib/__pycache__/heapq.cpython-313.pyc`, `Lib/__pycache__/inspect.cpython-313.pyc`, `Lib/__pycache__/io.cpython-313.pyc`, `Lib/__pycache__/keyword.cpython-313.pyc`, `Lib/__pycache__/linecache.cpython-313.pyc`, `Lib/__pycache__/locale.cpython-313.pyc`, `Lib/__pycache__/lzma.cpython-313.pyc`, `Lib/__pycache__/numbers.cpython-313.pyc`, `Lib/__pycache__/opcode.cpython-313.pyc`, `Lib/__pycache__/operator.cpython-313.pyc`, `Lib/__pycache__/os.cpython-313.pyc`, `Lib/__pycache__/posixpath.cpython-313.pyc`, `Lib/__pycache__/reprlib.cpython-313.pyc`, `Lib/__pycache__/selectors.cpython-313.pyc`, `Lib/__pycache__/shutil.cpython-313.pyc`, `Lib/__pycache__/signal.cpython-313.pyc`, `Lib/__pycache__/site.cpython-313.pyc`, `Lib/__pycache__/socket.cpython-313.pyc`, `Lib/__pycache__/ssl.cpython-313.pyc`, `Lib/__pycache__/stat.cpython-313.pyc`, `Lib/__pycache__/string.cpython-313.pyc`, `Lib/__pycache__/struct.cpython-313.pyc`, `Lib/__pycache__/subprocess.cpython-313.pyc`, `Lib/__pycache__/textwrap.cpython-313.pyc`, `Lib/__pycache__/threading.cpython-313.pyc`, `Lib/__pycache__/token.cpython-313.pyc`, `Lib/__pycache__/tokenize.cpython-313.pyc`, `Lib/__pycache__/traceback.cpython-313.pyc`, `Lib/__pycache__/types.cpython-313.pyc`, `Lib/__pycache__/typing.cpython-313.pyc`, `Lib/__pycache__/warnings.cpython-313.pyc`, `Lib/__pycache__/weakref.cpython-313.pyc`, `Lib/asyncio/__pycache__/__init__.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_events.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_futures.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_subprocess.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_tasks.cpython-313.pyc`, `Lib/asyncio/__pycache__/constants.cpython-313.pyc`, `Lib/asyncio/__pycache__/coroutines.cpython-313.pyc`, `Lib/asyncio/__pycache__/events.cpython-313.pyc`, `Lib/asyncio/__pycache__/exceptions.cpython-313.pyc`, `Lib/asyncio/__pycache__/format_helpers.cpython-313.pyc`, `Lib/asyncio/__pycache__/futures.cpython-313.pyc`, `Lib/asyncio/__pycache__/locks.cpython-313.pyc`, `Lib/asyncio/__pycache__/log.cpython-313.pyc`, `Lib/asyncio/__pycache__/mixins.cpython-313.pyc`, `Lib/asyncio/__pycache__/protocols.cpython-313.pyc`, `Lib/asyncio/__pycache__/queues.cpython-313.pyc`, `Lib/asyncio/__pycache__/runners.cpython-313.pyc`, `Lib/asyncio/__pycache__/selector_events.cpython-313.pyc`, `Lib/asyncio/__pycache__/sslproto.cpython-313.pyc`, `Lib/asyncio/__pycache__/staggered.cpython-313.pyc`, `Lib/asyncio/__pycache__/streams.cpython-313.pyc`, `Lib/asyncio/__pycache__/subprocess.cpython-313.pyc`, `Lib/asyncio/__pycache__/taskgroups.cpython-313.pyc`, `Lib/asyncio/__pycache__/tasks.cpython-313.pyc`, `Lib/asyncio/__pycache__/threads.cpython-313.pyc`, `Lib/asyncio/__pycache__/timeouts.cpython-313.pyc`, `Lib/asyncio/__pycache__/transports.cpython-313.pyc`, `Lib/asyncio/__pycache__/trsock.cpython-313.pyc`, `Lib/asyncio/__pycache__/unix_events.cpython-313.pyc`, `Lib/collections/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/futures/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/futures/__pycache__/_base.cpython-313.pyc`, `Lib/encodings/__pycache__/__init__.cpython-313.pyc`, `Lib/encodings/__pycache__/aliases.cpython-313.pyc`, `Lib/encodings/__pycache__/ascii.cpython-313.pyc`, `Lib/encodings/__pycache__/utf_8.cpython-313.pyc`, `Lib/importlib/__pycache__/__init__.cpython-313.pyc`, `Lib/importlib/__pycache__/_abc.cpython-313.pyc`, `Lib/logging/__pycache__/__init__.cpython-313.pyc`, `Lib/pathlib/__pycache__/__init__.cpython-313.pyc`, `Lib/pathlib/__pycache__/_abc.cpython-313.pyc`, `Lib/pathlib/__pycache__/_local.cpython-313.pyc`, `Lib/re/__pycache__/__init__.cpython-313.pyc`, `Lib/re/__pycache__/_casefix.cpython-313.pyc`, `Lib/re/__pycache__/_compiler.cpython-313.pyc`, `Lib/re/__pycache__/_constants.cpython-313.pyc`, `Lib/re/__pycache__/_parser.cpython-313.pyc`, `Lib/sysconfig/__pycache__/__init__.cpython-313.pyc`, `Lib/sysconfig/__pycache__/__main__.cpython-313.pyc`, `Lib/xml/__pycache__/__init__.cpython-313.pyc`, `Lib/xml/etree/__pycache__/ElementPath.cpython-313.pyc`, `Lib/xml/etree/__pycache__/__init__.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/__init__.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/_common.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/_tzpath.cpython-313.pyc`, `Makefile`, `Makefile.pre`, `Misc/python-config.sh`, `Misc/python-embed.pc`, `Misc/python.pc`, `Modules/Setup.bootstrap`, `Modules/Setup.local`, `Modules/Setup.stdlib`, `Modules/_abc.o`, `Modules/_asyncio.cpython-313-x86_64-linux-gnu.so`, `Modules/_asynciomodule.o`, `Modules/_bisect.cpython-313-x86_64-linux-gnu.so`, `Modules/_bisectmodule.o`, `Modules/_blake2.cpython-313-x86_64-linux-gnu.so`, `Modules/_blake2/blake2b_impl.o`, `Modules/_blake2/blake2module.o`, `Modules/_blake2/blake2s_impl.o`, `Modules/_bz2.cpython-313-x86_64-linux-gnu.so`, `Modules/_bz2module.o`, `Modules/_codecs_cn.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_hk.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_iso2022.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_jp.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_kr.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_tw.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecsmodule.o`, `Modules/_collectionsmodule.o`, `Modules/_contextvars.cpython-313-x86_64-linux-gnu.so`, `Modules/_contextvarsmodule.o`, `Modules/_csv.cpython-313-x86_64-linux-gnu.so`, `Modules/_csv.o`, `Modules/_ctypes.cpython-313-x86_64-linux-gnu.so`, `Modules/_ctypes/_ctypes.o`, `Modules/_ctypes/_ctypes_test.o`, `Modules/_ctypes/callbacks.o`, `Modules/_ctypes/callproc.o`, `Modules/_ctypes/cfield.o`, `Modules/_ctypes/stgdict.o`, `Modules/_ctypes_test.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses_panel.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses_panel.o`, `Modules/_cursesmodule.o`, `Modules/_datetime.cpython-313-x86_64-linux-gnu.so`, `Modules/_datetimemodule.o`, `Modules/_decimal.cpython-313-x86_64-linux-gnu.so`, `Modules/_decimal/_decimal.o`, `Modules/_decimal/libmpdec/basearith.o`, `Modules/_decimal/libmpdec/constants.o`, `Modules/_decimal/libmpdec/context.o`, `Modules/_decimal/libmpdec/convolute.o`, `Modules/_decimal/libmpdec/crt.o`, `Modules/_decimal/libmpdec/difradix2.o`, `Modules/_decimal/libmpdec/fnt.o`, `Modules/_decimal/libmpdec/fourstep.o`, `Modules/_decimal/libmpdec/io.o`, `Modules/_decimal/libmpdec/libmpdec.a`, `Modules/_decimal/libmpdec/mpalloc.o`, `Modules/_decimal/libmpdec/mpdecimal.o`, `Modules/_decimal/libmpdec/numbertheory.o`, `Modules/_decimal/libmpdec/sixstep.o`, `Modules/_decimal/libmpdec/transpose.o`, `Modules/_elementtree.cpython-313-x86_64-linux-gnu.so`, `Modules/_elementtree.o`, `Modules/_functoolsmodule.o`, `Modules/_hacl/Hacl_Hash_MD5.o`, `Modules/_hacl/Hacl_Hash_SHA1.o`, `Modules/_hacl/Hacl_Hash_SHA2.o`, `Modules/_hacl/Hacl_Hash_SHA3.o`, `Modules/_hacl/libHacl_Hash_SHA2.a`, `Modules/_hashlib.cpython-313-x86_64-linux-gnu.so`, `Modules/_hashopenssl.o`, `Modules/_heapq.cpython-313-x86_64-linux-gnu.so`, `Modules/_heapqmodule.o`, `Modules/_interpchannels.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpchannelsmodule.o`, `Modules/_interpqueues.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpqueuesmodule.o`, `Modules/_interpreters.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpretersmodule.o`, `Modules/_io/_iomodule.o`, `Modules/_io/bufferedio.o`, `Modules/_io/bytesio.o`, `Modules/_io/fileio.o`, `Modules/_io/iobase.o`, `Modules/_io/stringio.o`, `Modules/_io/textio.o`, `Modules/_json.cpython-313-x86_64-linux-gnu.so`, `Modules/_json.o`, `Modules/_localemodule.o`, `Modules/_lsprof.cpython-313-x86_64-linux-gnu.so`, `Modules/_lsprof.o`, `Modules/_lzma.cpython-313-x86_64-linux-gnu.so`, `Modules/_lzmamodule.o`, `Modules/_md5.cpython-313-x86_64-linux-gnu.so`, `Modules/_multibytecodec.cpython-313-x86_64-linux-gnu.so`, `Modules/_multiprocessing.cpython-313-x86_64-linux-gnu.so`, `Modules/_multiprocessing/multiprocessing.o`, `Modules/_multiprocessing/posixshmem.o`, `Modules/_multiprocessing/semaphore.o`, `Modules/_opcode.cpython-313-x86_64-linux-gnu.so`, `Modules/_opcode.o`, `Modules/_operator.o`, `Modules/_pickle.cpython-313-x86_64-linux-gnu.so`, `Modules/_pickle.o`, `Modules/_posixshmem.cpython-313-x86_64-linux-gnu.so`, `Modules/_posixsubprocess.cpython-313-x86_64-linux-gnu.so`, `Modules/_posixsubprocess.o`, `Modules/_queue.cpython-313-x86_64-linux-gnu.so`, `Modules/_queuemodule.o`, `Modules/_random.cpython-313-x86_64-linux-gnu.so`, `Modules/_randommodule.o`, `Modules/_sha1.cpython-313-x86_64-linux-gnu.so`, `Modules/_sha2.cpython-313-x86_64-linux-gnu.so`, `Modules/_sha3.cpython-313-x86_64-linux-gnu.so`, `Modules/_socket.cpython-313-x86_64-linux-gnu.so`, `Modules/_sqlite/blob.o`, `Modules/_sqlite/connection.o`, `Modules/_sqlite/cursor.o`, `Modules/_sqlite/microprotocols.o`, `Modules/_sqlite/module.o`, `Modules/_sqlite/prepare_protocol.o`, `Modules/_sqlite/row.o`, `Modules/_sqlite/statement.o`, `Modules/_sqlite/util.o`, `Modules/_sqlite3.cpython-313-x86_64-linux-gnu.so`, `Modules/_sre/sre.o`, `Modules/_ssl.o`, `Modules/_ssl_failed.cpython-313-x86_64-linux-gnu.so`, `Modules/_stat.o`, `Modules/_statistics.cpython-313-x86_64-linux-gnu.so`, `Modules/_statisticsmodule.o`, `Modules/_struct.cpython-313-x86_64-linux-gnu.so`, `Modules/_struct.o`, `Modules/_suggestions.o`, `Modules/_sysconfig.o`, `Modules/_testbuffer.cpython-313-x86_64-linux-gnu.so`, `Modules/_testbuffer.o`, `Modules/_testcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testcapi/abstract.o`, `Modules/_testcapi/buffer.o`, `Modules/_testcapi/bytes.o`, `Modules/_testcapi/code.o`, `Modules/_testcapi/codec.o`, `Modules/_testcapi/complex.o`, `Modules/_testcapi/datetime.o`, `Modules/_testcapi/dict.o`, `Modules/_testcapi/docstring.o`, `Modules/_testcapi/exceptions.o`, `Modules/_testcapi/file.o`, `Modules/_testcapi/float.o`, `Modules/_testcapi/gc.o`, `Modules/_testcapi/getargs.o`, `Modules/_testcapi/hash.o`, `Modules/_testcapi/heaptype.o`, `Modules/_testcapi/immortal.o`, `Modules/_testcapi/list.o`, `Modules/_testcapi/long.o`, `Modules/_testcapi/mem.o`, `Modules/_testcapi/monitoring.o`, `Modules/_testcapi/numbers.o`, `Modules/_testcapi/object.o`, `Modules/_testcapi/pyatomic.o`, `Modules/_testcapi/run.o`, `Modules/_testcapi/set.o`, `Modules/_testcapi/structmember.o`, `Modules/_testcapi/time.o`, `Modules/_testcapi/tuple.o`, `Modules/_testcapi/unicode.o`, `Modules/_testcapi/vectorcall.o`, `Modules/_testcapi/watchers.o`, `Modules/_testcapimodule.o`, `Modules/_testclinic.cpython-313-x86_64-linux-gnu.so`, `Modules/_testclinic.o`, `Modules/_testclinic_limited.cpython-313-x86_64-linux-gnu.so`, `Modules/_testclinic_limited.o`, `Modules/_testexternalinspection.cpython-313-x86_64-linux-gnu.so`, `Modules/_testexternalinspection.o`, `Modules/_testimportmultiple.cpython-313-x86_64-linux-gnu.so`, `Modules/_testimportmultiple.o`, `Modules/_testinternalcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testinternalcapi.o`, `Modules/_testinternalcapi/pytime.o`, `Modules/_testinternalcapi/set.o`, `Modules/_testinternalcapi/test_critical_sections.o`, `Modules/_testinternalcapi/test_lock.o`, `Modules/_testlimitedcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testlimitedcapi.o`, `Modules/_testlimitedcapi/abstract.o`, `Modules/_testlimitedcapi/bytearray.o`, `Modules/_testlimitedcapi/bytes.o`, `Modules/_testlimitedcapi/complex.o`, `Modules/_testlimitedcapi/dict.o`, `Modules/_testlimitedcapi/eval.o`, `Modules/_testlimitedcapi/file.o`, `Modules/_testlimitedcapi/float.o`, `Modules/_testlimitedcapi/heaptype_relative.o`, `Modules/_testlimitedcapi/import.o`, `Modules/_testlimitedcapi/list.o`, `Modules/_testlimitedcapi/long.o`, `Modules/_testlimitedcapi/object.o`, `Modules/_testlimitedcapi/pyos.o`, `Modules/_testlimitedcapi/set.o`, `Modules/_testlimitedcapi/sys.o`, `Modules/_testlimitedcapi/tuple.o`, `Modules/_testlimitedcapi/unicode.o`, `Modules/_testlimitedcapi/vectorcall_limited.o`, `Modules/_testmultiphase.cpython-313-x86_64-linux-gnu.so`, `Modules/_testmultiphase.o`, `Modules/_testsinglephase.cpython-313-x86_64-linux-gnu.so`, `Modules/_testsinglephase.o`, `Modules/_threadmodule.o`, `Modules/_tracemalloc.o`, `Modules/_typingmodule.o`, `Modules/_uuid.cpython-313-x86_64-linux-gnu.so`, `Modules/_uuidmodule.o`, `Modules/_weakref.o`, `Modules/_xxtestfuzz.cpython-313-x86_64-linux-gnu.so`, `Modules/_xxtestfuzz/_xxtestfuzz.o`, `Modules/_xxtestfuzz/fuzzer.o`, `Modules/_zoneinfo.cpython-313-x86_64-linux-gnu.so`, `Modules/_zoneinfo.o`, `Modules/array.cpython-313-x86_64-linux-gnu.so`, `Modules/arraymodule.o`, `Modules/atexitmodule.o`, `Modules/binascii.cpython-313-x86_64-linux-gnu.so`, `Modules/binascii.o`, `Modules/cjkcodecs/_codecs_cn.o`, `Modules/cjkcodecs/_codecs_hk.o`, `Modules/cjkcodecs/_codecs_iso2022.o`, `Modules/cjkcodecs/_codecs_jp.o`, `Modules/cjkcodecs/_codecs_kr.o`, `Modules/cjkcodecs/_codecs_tw.o`, `Modules/cjkcodecs/multibytecodec.o`, `Modules/cmath.cpython-313-x86_64-linux-gnu.so`, `Modules/cmathmodule.o`, `Modules/config.c`, `Modules/config.o`, `Modules/errnomodule.o`, `Modules/expat/libexpat.a`, `Modules/expat/xmlparse.o`, `Modules/expat/xmlrole.o`, `Modules/expat/xmltok.o`, `Modules/faulthandler.o`, `Modules/fcntl.cpython-313-x86_64-linux-gnu.so`, `Modules/fcntlmodule.o`, `Modules/gcmodule.o`, `Modules/getbuildinfo.o`, `Modules/getpath.o`, `Modules/getpath_noop.o`, `Modules/grp.cpython-313-x86_64-linux-gnu.so`, `Modules/grpmodule.o`, `Modules/itertoolsmodule.o`, `Modules/ld_so_aix`, `Modules/main.o`, `Modules/math.cpython-313-x86_64-linux-gnu.so`, `Modules/mathmodule.o`, `Modules/md5module.o`, `Modules/mmap.cpython-313-x86_64-linux-gnu.so`, `Modules/mmapmodule.o`, `Modules/posixmodule.o`, `Modules/pwdmodule.o`, `Modules/pyexpat.cpython-313-x86_64-linux-gnu.so`, `Modules/pyexpat.o`, `Modules/readline.cpython-313-x86_64-linux-gnu.so`, `Modules/readline.o`, `Modules/resource.cpython-313-x86_64-linux-gnu.so`, `Modules/resource.o`, `Modules/rotatingtree.o`, `Modules/select.cpython-313-x86_64-linux-gnu.so`, `Modules/selectmodule.o`, `Modules/sha1module.o`, `Modules/sha2module.o`, `Modules/sha3module.o`, `Modules/signalmodule.o`, `Modules/socketmodule.o`, `Modules/symtablemodule.o`, `Modules/syslog.cpython-313-x86_64-linux-gnu.so`, `Modules/syslogmodule.o`, `Modules/termios.cpython-313-x86_64-linux-gnu.so`, `Modules/termios.o`, `Modules/timemodule.o`, `Modules/unicodedata.cpython-313-x86_64-linux-gnu.so`, `Modules/unicodedata.o`, `Modules/xxlimited.cpython-313-x86_64-linux-gnu.so`, `Modules/xxlimited.o`, `Modules/xxlimited_35.cpython-313-x86_64-linux-gnu.so`, `Modules/xxlimited_35.o`, `Modules/xxsubtype.cpython-313-x86_64-linux-gnu.so`, `Modules/xxsubtype.o`, `Modules/zlib.cpython-313-x86_64-linux-gnu.so`, `Modules/zlibmodule.o`, `Objects/abstract.o`, `Objects/boolobject.o`, `Objects/bytearrayobject.o`, `Objects/bytes_methods.o`, `Objects/bytesobject.o`, `Objects/call.o`, `Objects/capsule.o`, `Objects/cellobject.o`, `Objects/classobject.o`, `Objects/codeobject.o`, `Objects/complexobject.o`, `Objects/descrobject.o`, `Objects/dictobject.o`, `Objects/enumobject.o`, `Objects/exceptions.o`, `Objects/fileobject.o`, `Objects/floatobject.o`, `Objects/frameobject.o`, `Objects/funcobject.o`, `Objects/genericaliasobject.o`, `Objects/genobject.o`, `Objects/iterobject.o`, `Objects/listobject.o`, `Objects/longobject.o`, `Objects/memoryobject.o`, `Objects/methodobject.o`, `Objects/moduleobject.o`, `Objects/namespaceobject.o`, `Objects/object.o`, `Objects/obmalloc.o`, `Objects/odictobject.o`, `Objects/picklebufobject.o`, `Objects/rangeobject.o`, `Objects/setobject.o`, `Objects/sliceobject.o`, `Objects/structseq.o`, `Objects/tupleobject.o`, `Objects/typeobject.o`, `Objects/typevarobject.o`, `Objects/unicodectype.o`, `Objects/unicodeobject.o`, `Objects/unionobject.o`, `Objects/weakrefobject.o`, `Parser/action_helpers.o`, `Parser/lexer/buffer.o`, `Parser/lexer/lexer.o`, `Parser/lexer/state.o`, `Parser/myreadline.o`, `Parser/parser.o`, `Parser/peg_api.o`, `Parser/pegen.o`, `Parser/pegen_errors.o`, `Parser/string_parser.o`, `Parser/token.o`, `Parser/tokenizer/file_tokenizer.o`, `Parser/tokenizer/helpers.o`, `Parser/tokenizer/readline_tokenizer.o`, `Parser/tokenizer/string_tokenizer.o`, `Parser/tokenizer/utf8_tokenizer.o`, `Programs/_bootstrap_python.o`, `Programs/_freeze_module`, `Programs/_freeze_module.o`, `Programs/_testembed`, `Programs/_testembed.o`, `Programs/python.o`, `Python/Python-ast.o`, `Python/Python-tokenize.o`, `Python/_warnings.o`, `Python/asdl.o`, `Python/asm_trampoline.o`, `Python/assemble.o`, `Python/ast.o`, `Python/ast_opt.o`, `Python/ast_unparse.o`, `Python/bltinmodule.o`, `Python/bootstrap_hash.o`, `Python/brc.o`, `Python/ceval.o`, `Python/ceval_gil.o`, `Python/codecs.o`, `Python/compile.o`, `Python/context.o`, `Python/critical_section.o`, `Python/crossinterp.o`, `Python/dtoa.o`, `Python/dynamic_annotations.o`, `Python/dynload_shlib.o`, `Python/errors.o`, `Python/fileutils.o`, `Python/flowgraph.o`, `Python/formatter_unicode.o`, `Python/frame.o`, `Python/frozen.o`, `Python/frozen_modules/__hello__.h`, `Python/frozen_modules/__phello__.h`, `Python/frozen_modules/__phello__.ham.eggs.h`, `Python/frozen_modules/__phello__.ham.h`, `Python/frozen_modules/__phello__.spam.h`, `Python/frozen_modules/_collections_abc.h`, `Python/frozen_modules/_sitebuiltins.h`, `Python/frozen_modules/abc.h`, `Python/frozen_modules/codecs.h`, `Python/frozen_modules/frozen_only.h`, `Python/frozen_modules/genericpath.h`, `Python/frozen_modules/getpath.h`, `Python/frozen_modules/importlib._bootstrap.h`, `Python/frozen_modules/importlib._bootstrap_external.h`, `Python/frozen_modules/importlib.machinery.h`, `Python/frozen_modules/importlib.util.h`, `Python/frozen_modules/io.h`, `Python/frozen_modules/ntpath.h`, `Python/frozen_modules/os.h`, `Python/frozen_modules/posixpath.h`, `Python/frozen_modules/runpy.h`, `Python/frozen_modules/site.h`, `Python/frozen_modules/stat.h`, `Python/frozen_modules/zipimport.h`, `Python/frozenmain.o`, `Python/future.o`, `Python/gc.o`, `Python/gc_free_threading.o`, `Python/gc_gil.o`, `Python/getargs.o`, `Python/getcompiler.o`, `Python/getcopyright.o`, `Python/getopt.o`, `Python/getplatform.o`, `Python/getversion.o`, `Python/hamt.o`, `Python/hashtable.o`, `Python/import.o`, `Python/importdl.o`, `Python/initconfig.o`, `Python/instruction_sequence.o`, `Python/instrumentation.o`, `Python/interpconfig.o`, `Python/intrinsics.o`, `Python/jit.o`, `Python/legacy_tracing.o`, `Python/lock.o`, `Python/marshal.o`, `Python/modsupport.o`, `Python/mysnprintf.o`, `Python/mystrtoul.o`, `Python/object_stack.o`, `Python/optimizer.o`, `Python/optimizer_analysis.o`, `Python/optimizer_symbols.o`, `Python/parking_lot.o`, `Python/pathconfig.o`, `Python/perf_jit_trampoline.o`, `Python/perf_trampoline.o`, `Python/preconfig.o`, `Python/pyarena.o`, `Python/pyctype.o`, `Python/pyfpe.o`, `Python/pyhash.o`, `Python/pylifecycle.o`, `Python/pymath.o`, `Python/pystate.o`, `Python/pystrcmp.o`, `Python/pystrhex.o`, `Python/pystrtod.o`, `Python/pythonrun.o`, `Python/pytime.o`, `Python/qsbr.o`, `Python/specialize.o`, `Python/structmember.o`, `Python/suggestions.o`, `Python/symtable.o`, `Python/sysmodule.o`, `Python/thread.o`, `Python/traceback.o`, `Python/tracemalloc.o`, `_bootstrap_python`, `build/lib.linux-x86_64-3.13/__pycache__/_sysconfigdata__linux_x86_64-linux-gnu.cpython-313.pyc`, `build/lib.linux-x86_64-3.13/_asyncio.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_bisect.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_blake2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_bz2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_cn.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_hk.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_iso2022.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_jp.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_kr.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_tw.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_contextvars.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_csv.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_ctypes.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_ctypes_test.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_curses.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_curses_panel.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_datetime.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_decimal.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_elementtree.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_hashlib.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_heapq.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpchannels.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpqueues.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpreters.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_json.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_lsprof.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_lzma.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_md5.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_multibytecodec.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_multiprocessing.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_opcode.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_pickle.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_posixshmem.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_posixsubprocess.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_queue.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_random.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha1.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha3.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_socket.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sqlite3.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_statistics.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_struct.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sysconfigdata__linux_x86_64-linux-gnu.py`, `build/lib.linux-x86_64-3.13/_testbuffer.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testclinic.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testclinic_limited.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testexternalinspection.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testimportmultiple.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testinternalcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testlimitedcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testmultiphase.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testsinglephase.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_uuid.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_xxtestfuzz.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_zoneinfo.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/array.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/binascii.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/cmath.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/fcntl.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/grp.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/math.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/mmap.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/pyexpat.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/readline.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/resource.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/select.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/syslog.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/termios.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/unicodedata.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxlimited.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxlimited_35.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxsubtype.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/zlib.cpython-313-x86_64-linux-gnu.so`, `build/scripts-3.13/idle3.13`, `build/scripts-3.13/pydoc3.13`, `config.log`, `config.status`, `libpython3.13.a`, `platform`, `pybuilddir.txt`, `pyconfig.h`, `python`, `python-config`, `python-config.py`, `python-gdb.py`, but `## Git Add Paths` lists `None`. Update `## Git Add Paths` to match the real shipped file set exactly, and make sure `## Issue Connection` explains every functional file that remains in the patch.
2. Missing from `## Git Add Paths`: `Lib/__pycache__/__future__.cpython-313.pyc`, `Lib/__pycache__/_collections_abc.cpython-313.pyc`, `Lib/__pycache__/_colorize.cpython-313.pyc`, `Lib/__pycache__/_compat_pickle.cpython-313.pyc`, `Lib/__pycache__/_compression.cpython-313.pyc`, `Lib/__pycache__/_opcode_metadata.cpython-313.pyc`, `Lib/__pycache__/_sitebuiltins.cpython-313.pyc`, `Lib/__pycache__/_weakrefset.cpython-313.pyc`, `Lib/__pycache__/abc.cpython-313.pyc`, `Lib/__pycache__/argparse.cpython-313.pyc`, `Lib/__pycache__/ast.cpython-313.pyc`, `Lib/__pycache__/bz2.cpython-313.pyc`, `Lib/__pycache__/codecs.cpython-313.pyc`, `Lib/__pycache__/contextlib.cpython-313.pyc`, `Lib/__pycache__/contextvars.cpython-313.pyc`, `Lib/__pycache__/copy.cpython-313.pyc`, `Lib/__pycache__/copyreg.cpython-313.pyc`, `Lib/__pycache__/datetime.cpython-313.pyc`, `Lib/__pycache__/dis.cpython-313.pyc`, `Lib/__pycache__/enum.cpython-313.pyc`, `Lib/__pycache__/fnmatch.cpython-313.pyc`, `Lib/__pycache__/functools.cpython-313.pyc`, `Lib/__pycache__/genericpath.cpython-313.pyc`, `Lib/__pycache__/gettext.cpython-313.pyc`, `Lib/__pycache__/glob.cpython-313.pyc`, `Lib/__pycache__/heapq.cpython-313.pyc`, `Lib/__pycache__/inspect.cpython-313.pyc`, `Lib/__pycache__/io.cpython-313.pyc`, `Lib/__pycache__/keyword.cpython-313.pyc`, `Lib/__pycache__/linecache.cpython-313.pyc`, `Lib/__pycache__/locale.cpython-313.pyc`, `Lib/__pycache__/lzma.cpython-313.pyc`, `Lib/__pycache__/numbers.cpython-313.pyc`, `Lib/__pycache__/opcode.cpython-313.pyc`, `Lib/__pycache__/operator.cpython-313.pyc`, `Lib/__pycache__/os.cpython-313.pyc`, `Lib/__pycache__/posixpath.cpython-313.pyc`, `Lib/__pycache__/reprlib.cpython-313.pyc`, `Lib/__pycache__/selectors.cpython-313.pyc`, `Lib/__pycache__/shutil.cpython-313.pyc`, `Lib/__pycache__/signal.cpython-313.pyc`, `Lib/__pycache__/site.cpython-313.pyc`, `Lib/__pycache__/socket.cpython-313.pyc`, `Lib/__pycache__/ssl.cpython-313.pyc`, `Lib/__pycache__/stat.cpython-313.pyc`, `Lib/__pycache__/string.cpython-313.pyc`, `Lib/__pycache__/struct.cpython-313.pyc`, `Lib/__pycache__/subprocess.cpython-313.pyc`, `Lib/__pycache__/textwrap.cpython-313.pyc`, `Lib/__pycache__/threading.cpython-313.pyc`, `Lib/__pycache__/token.cpython-313.pyc`, `Lib/__pycache__/tokenize.cpython-313.pyc`, `Lib/__pycache__/traceback.cpython-313.pyc`, `Lib/__pycache__/types.cpython-313.pyc`, `Lib/__pycache__/typing.cpython-313.pyc`, `Lib/__pycache__/warnings.cpython-313.pyc`, `Lib/__pycache__/weakref.cpython-313.pyc`, `Lib/asyncio/__pycache__/__init__.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_events.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_futures.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_subprocess.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_tasks.cpython-313.pyc`, `Lib/asyncio/__pycache__/constants.cpython-313.pyc`, `Lib/asyncio/__pycache__/coroutines.cpython-313.pyc`, `Lib/asyncio/__pycache__/events.cpython-313.pyc`, `Lib/asyncio/__pycache__/exceptions.cpython-313.pyc`, `Lib/asyncio/__pycache__/format_helpers.cpython-313.pyc`, `Lib/asyncio/__pycache__/futures.cpython-313.pyc`, `Lib/asyncio/__pycache__/locks.cpython-313.pyc`, `Lib/asyncio/__pycache__/log.cpython-313.pyc`, `Lib/asyncio/__pycache__/mixins.cpython-313.pyc`, `Lib/asyncio/__pycache__/protocols.cpython-313.pyc`, `Lib/asyncio/__pycache__/queues.cpython-313.pyc`, `Lib/asyncio/__pycache__/runners.cpython-313.pyc`, `Lib/asyncio/__pycache__/selector_events.cpython-313.pyc`, `Lib/asyncio/__pycache__/sslproto.cpython-313.pyc`, `Lib/asyncio/__pycache__/staggered.cpython-313.pyc`, `Lib/asyncio/__pycache__/streams.cpython-313.pyc`, `Lib/asyncio/__pycache__/subprocess.cpython-313.pyc`, `Lib/asyncio/__pycache__/taskgroups.cpython-313.pyc`, `Lib/asyncio/__pycache__/tasks.cpython-313.pyc`, `Lib/asyncio/__pycache__/threads.cpython-313.pyc`, `Lib/asyncio/__pycache__/timeouts.cpython-313.pyc`, `Lib/asyncio/__pycache__/transports.cpython-313.pyc`, `Lib/asyncio/__pycache__/trsock.cpython-313.pyc`, `Lib/asyncio/__pycache__/unix_events.cpython-313.pyc`, `Lib/collections/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/futures/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/futures/__pycache__/_base.cpython-313.pyc`, `Lib/encodings/__pycache__/__init__.cpython-313.pyc`, `Lib/encodings/__pycache__/aliases.cpython-313.pyc`, `Lib/encodings/__pycache__/ascii.cpython-313.pyc`, `Lib/encodings/__pycache__/utf_8.cpython-313.pyc`, `Lib/importlib/__pycache__/__init__.cpython-313.pyc`, `Lib/importlib/__pycache__/_abc.cpython-313.pyc`, `Lib/logging/__pycache__/__init__.cpython-313.pyc`, `Lib/pathlib/__pycache__/__init__.cpython-313.pyc`, `Lib/pathlib/__pycache__/_abc.cpython-313.pyc`, `Lib/pathlib/__pycache__/_local.cpython-313.pyc`, `Lib/re/__pycache__/__init__.cpython-313.pyc`, `Lib/re/__pycache__/_casefix.cpython-313.pyc`, `Lib/re/__pycache__/_compiler.cpython-313.pyc`, `Lib/re/__pycache__/_constants.cpython-313.pyc`, `Lib/re/__pycache__/_parser.cpython-313.pyc`, `Lib/sysconfig/__pycache__/__init__.cpython-313.pyc`, `Lib/sysconfig/__pycache__/__main__.cpython-313.pyc`, `Lib/xml/__pycache__/__init__.cpython-313.pyc`, `Lib/xml/etree/__pycache__/ElementPath.cpython-313.pyc`, `Lib/xml/etree/__pycache__/__init__.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/__init__.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/_common.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/_tzpath.cpython-313.pyc`, `Makefile`, `Makefile.pre`, `Misc/python-config.sh`, `Misc/python-embed.pc`, `Misc/python.pc`, `Modules/Setup.bootstrap`, `Modules/Setup.local`, `Modules/Setup.stdlib`, `Modules/_abc.o`, `Modules/_asyncio.cpython-313-x86_64-linux-gnu.so`, `Modules/_asynciomodule.o`, `Modules/_bisect.cpython-313-x86_64-linux-gnu.so`, `Modules/_bisectmodule.o`, `Modules/_blake2.cpython-313-x86_64-linux-gnu.so`, `Modules/_blake2/blake2b_impl.o`, `Modules/_blake2/blake2module.o`, `Modules/_blake2/blake2s_impl.o`, `Modules/_bz2.cpython-313-x86_64-linux-gnu.so`, `Modules/_bz2module.o`, `Modules/_codecs_cn.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_hk.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_iso2022.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_jp.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_kr.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_tw.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecsmodule.o`, `Modules/_collectionsmodule.o`, `Modules/_contextvars.cpython-313-x86_64-linux-gnu.so`, `Modules/_contextvarsmodule.o`, `Modules/_csv.cpython-313-x86_64-linux-gnu.so`, `Modules/_csv.o`, `Modules/_ctypes.cpython-313-x86_64-linux-gnu.so`, `Modules/_ctypes/_ctypes.o`, `Modules/_ctypes/_ctypes_test.o`, `Modules/_ctypes/callbacks.o`, `Modules/_ctypes/callproc.o`, `Modules/_ctypes/cfield.o`, `Modules/_ctypes/stgdict.o`, `Modules/_ctypes_test.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses_panel.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses_panel.o`, `Modules/_cursesmodule.o`, `Modules/_datetime.cpython-313-x86_64-linux-gnu.so`, `Modules/_datetimemodule.o`, `Modules/_decimal.cpython-313-x86_64-linux-gnu.so`, `Modules/_decimal/_decimal.o`, `Modules/_decimal/libmpdec/basearith.o`, `Modules/_decimal/libmpdec/constants.o`, `Modules/_decimal/libmpdec/context.o`, `Modules/_decimal/libmpdec/convolute.o`, `Modules/_decimal/libmpdec/crt.o`, `Modules/_decimal/libmpdec/difradix2.o`, `Modules/_decimal/libmpdec/fnt.o`, `Modules/_decimal/libmpdec/fourstep.o`, `Modules/_decimal/libmpdec/io.o`, `Modules/_decimal/libmpdec/libmpdec.a`, `Modules/_decimal/libmpdec/mpalloc.o`, `Modules/_decimal/libmpdec/mpdecimal.o`, `Modules/_decimal/libmpdec/numbertheory.o`, `Modules/_decimal/libmpdec/sixstep.o`, `Modules/_decimal/libmpdec/transpose.o`, `Modules/_elementtree.cpython-313-x86_64-linux-gnu.so`, `Modules/_elementtree.o`, `Modules/_functoolsmodule.o`, `Modules/_hacl/Hacl_Hash_MD5.o`, `Modules/_hacl/Hacl_Hash_SHA1.o`, `Modules/_hacl/Hacl_Hash_SHA2.o`, `Modules/_hacl/Hacl_Hash_SHA3.o`, `Modules/_hacl/libHacl_Hash_SHA2.a`, `Modules/_hashlib.cpython-313-x86_64-linux-gnu.so`, `Modules/_hashopenssl.o`, `Modules/_heapq.cpython-313-x86_64-linux-gnu.so`, `Modules/_heapqmodule.o`, `Modules/_interpchannels.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpchannelsmodule.o`, `Modules/_interpqueues.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpqueuesmodule.o`, `Modules/_interpreters.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpretersmodule.o`, `Modules/_io/_iomodule.o`, `Modules/_io/bufferedio.o`, `Modules/_io/bytesio.o`, `Modules/_io/fileio.o`, `Modules/_io/iobase.o`, `Modules/_io/stringio.o`, `Modules/_io/textio.o`, `Modules/_json.cpython-313-x86_64-linux-gnu.so`, `Modules/_json.o`, `Modules/_localemodule.o`, `Modules/_lsprof.cpython-313-x86_64-linux-gnu.so`, `Modules/_lsprof.o`, `Modules/_lzma.cpython-313-x86_64-linux-gnu.so`, `Modules/_lzmamodule.o`, `Modules/_md5.cpython-313-x86_64-linux-gnu.so`, `Modules/_multibytecodec.cpython-313-x86_64-linux-gnu.so`, `Modules/_multiprocessing.cpython-313-x86_64-linux-gnu.so`, `Modules/_multiprocessing/multiprocessing.o`, `Modules/_multiprocessing/posixshmem.o`, `Modules/_multiprocessing/semaphore.o`, `Modules/_opcode.cpython-313-x86_64-linux-gnu.so`, `Modules/_opcode.o`, `Modules/_operator.o`, `Modules/_pickle.cpython-313-x86_64-linux-gnu.so`, `Modules/_pickle.o`, `Modules/_posixshmem.cpython-313-x86_64-linux-gnu.so`, `Modules/_posixsubprocess.cpython-313-x86_64-linux-gnu.so`, `Modules/_posixsubprocess.o`, `Modules/_queue.cpython-313-x86_64-linux-gnu.so`, `Modules/_queuemodule.o`, `Modules/_random.cpython-313-x86_64-linux-gnu.so`, `Modules/_randommodule.o`, `Modules/_sha1.cpython-313-x86_64-linux-gnu.so`, `Modules/_sha2.cpython-313-x86_64-linux-gnu.so`, `Modules/_sha3.cpython-313-x86_64-linux-gnu.so`, `Modules/_socket.cpython-313-x86_64-linux-gnu.so`, `Modules/_sqlite/blob.o`, `Modules/_sqlite/connection.o`, `Modules/_sqlite/cursor.o`, `Modules/_sqlite/microprotocols.o`, `Modules/_sqlite/module.o`, `Modules/_sqlite/prepare_protocol.o`, `Modules/_sqlite/row.o`, `Modules/_sqlite/statement.o`, `Modules/_sqlite/util.o`, `Modules/_sqlite3.cpython-313-x86_64-linux-gnu.so`, `Modules/_sre/sre.o`, `Modules/_ssl.o`, `Modules/_ssl_failed.cpython-313-x86_64-linux-gnu.so`, `Modules/_stat.o`, `Modules/_statistics.cpython-313-x86_64-linux-gnu.so`, `Modules/_statisticsmodule.o`, `Modules/_struct.cpython-313-x86_64-linux-gnu.so`, `Modules/_struct.o`, `Modules/_suggestions.o`, `Modules/_sysconfig.o`, `Modules/_testbuffer.cpython-313-x86_64-linux-gnu.so`, `Modules/_testbuffer.o`, `Modules/_testcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testcapi/abstract.o`, `Modules/_testcapi/buffer.o`, `Modules/_testcapi/bytes.o`, `Modules/_testcapi/code.o`, `Modules/_testcapi/codec.o`, `Modules/_testcapi/complex.o`, `Modules/_testcapi/datetime.o`, `Modules/_testcapi/dict.o`, `Modules/_testcapi/docstring.o`, `Modules/_testcapi/exceptions.o`, `Modules/_testcapi/file.o`, `Modules/_testcapi/float.o`, `Modules/_testcapi/gc.o`, `Modules/_testcapi/getargs.o`, `Modules/_testcapi/hash.o`, `Modules/_testcapi/heaptype.o`, `Modules/_testcapi/immortal.o`, `Modules/_testcapi/list.o`, `Modules/_testcapi/long.o`, `Modules/_testcapi/mem.o`, `Modules/_testcapi/monitoring.o`, `Modules/_testcapi/numbers.o`, `Modules/_testcapi/object.o`, `Modules/_testcapi/pyatomic.o`, `Modules/_testcapi/run.o`, `Modules/_testcapi/set.o`, `Modules/_testcapi/structmember.o`, `Modules/_testcapi/time.o`, `Modules/_testcapi/tuple.o`, `Modules/_testcapi/unicode.o`, `Modules/_testcapi/vectorcall.o`, `Modules/_testcapi/watchers.o`, `Modules/_testcapimodule.o`, `Modules/_testclinic.cpython-313-x86_64-linux-gnu.so`, `Modules/_testclinic.o`, `Modules/_testclinic_limited.cpython-313-x86_64-linux-gnu.so`, `Modules/_testclinic_limited.o`, `Modules/_testexternalinspection.cpython-313-x86_64-linux-gnu.so`, `Modules/_testexternalinspection.o`, `Modules/_testimportmultiple.cpython-313-x86_64-linux-gnu.so`, `Modules/_testimportmultiple.o`, `Modules/_testinternalcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testinternalcapi.o`, `Modules/_testinternalcapi/pytime.o`, `Modules/_testinternalcapi/set.o`, `Modules/_testinternalcapi/test_critical_sections.o`, `Modules/_testinternalcapi/test_lock.o`, `Modules/_testlimitedcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testlimitedcapi.o`, `Modules/_testlimitedcapi/abstract.o`, `Modules/_testlimitedcapi/bytearray.o`, `Modules/_testlimitedcapi/bytes.o`, `Modules/_testlimitedcapi/complex.o`, `Modules/_testlimitedcapi/dict.o`, `Modules/_testlimitedcapi/eval.o`, `Modules/_testlimitedcapi/file.o`, `Modules/_testlimitedcapi/float.o`, `Modules/_testlimitedcapi/heaptype_relative.o`, `Modules/_testlimitedcapi/import.o`, `Modules/_testlimitedcapi/list.o`, `Modules/_testlimitedcapi/long.o`, `Modules/_testlimitedcapi/object.o`, `Modules/_testlimitedcapi/pyos.o`, `Modules/_testlimitedcapi/set.o`, `Modules/_testlimitedcapi/sys.o`, `Modules/_testlimitedcapi/tuple.o`, `Modules/_testlimitedcapi/unicode.o`, `Modules/_testlimitedcapi/vectorcall_limited.o`, `Modules/_testmultiphase.cpython-313-x86_64-linux-gnu.so`, `Modules/_testmultiphase.o`, `Modules/_testsinglephase.cpython-313-x86_64-linux-gnu.so`, `Modules/_testsinglephase.o`, `Modules/_threadmodule.o`, `Modules/_tracemalloc.o`, `Modules/_typingmodule.o`, `Modules/_uuid.cpython-313-x86_64-linux-gnu.so`, `Modules/_uuidmodule.o`, `Modules/_weakref.o`, `Modules/_xxtestfuzz.cpython-313-x86_64-linux-gnu.so`, `Modules/_xxtestfuzz/_xxtestfuzz.o`, `Modules/_xxtestfuzz/fuzzer.o`, `Modules/_zoneinfo.cpython-313-x86_64-linux-gnu.so`, `Modules/_zoneinfo.o`, `Modules/array.cpython-313-x86_64-linux-gnu.so`, `Modules/arraymodule.o`, `Modules/atexitmodule.o`, `Modules/binascii.cpython-313-x86_64-linux-gnu.so`, `Modules/binascii.o`, `Modules/cjkcodecs/_codecs_cn.o`, `Modules/cjkcodecs/_codecs_hk.o`, `Modules/cjkcodecs/_codecs_iso2022.o`, `Modules/cjkcodecs/_codecs_jp.o`, `Modules/cjkcodecs/_codecs_kr.o`, `Modules/cjkcodecs/_codecs_tw.o`, `Modules/cjkcodecs/multibytecodec.o`, `Modules/cmath.cpython-313-x86_64-linux-gnu.so`, `Modules/cmathmodule.o`, `Modules/config.c`, `Modules/config.o`, `Modules/errnomodule.o`, `Modules/expat/libexpat.a`, `Modules/expat/xmlparse.o`, `Modules/expat/xmlrole.o`, `Modules/expat/xmltok.o`, `Modules/faulthandler.o`, `Modules/fcntl.cpython-313-x86_64-linux-gnu.so`, `Modules/fcntlmodule.o`, `Modules/gcmodule.o`, `Modules/getbuildinfo.o`, `Modules/getpath.o`, `Modules/getpath_noop.o`, `Modules/grp.cpython-313-x86_64-linux-gnu.so`, `Modules/grpmodule.o`, `Modules/itertoolsmodule.o`, `Modules/ld_so_aix`, `Modules/main.o`, `Modules/math.cpython-313-x86_64-linux-gnu.so`, `Modules/mathmodule.o`, `Modules/md5module.o`, `Modules/mmap.cpython-313-x86_64-linux-gnu.so`, `Modules/mmapmodule.o`, `Modules/posixmodule.o`, `Modules/pwdmodule.o`, `Modules/pyexpat.cpython-313-x86_64-linux-gnu.so`, `Modules/pyexpat.o`, `Modules/readline.cpython-313-x86_64-linux-gnu.so`, `Modules/readline.o`, `Modules/resource.cpython-313-x86_64-linux-gnu.so`, `Modules/resource.o`, `Modules/rotatingtree.o`, `Modules/select.cpython-313-x86_64-linux-gnu.so`, `Modules/selectmodule.o`, `Modules/sha1module.o`, `Modules/sha2module.o`, `Modules/sha3module.o`, `Modules/signalmodule.o`, `Modules/socketmodule.o`, `Modules/symtablemodule.o`, `Modules/syslog.cpython-313-x86_64-linux-gnu.so`, `Modules/syslogmodule.o`, `Modules/termios.cpython-313-x86_64-linux-gnu.so`, `Modules/termios.o`, `Modules/timemodule.o`, `Modules/unicodedata.cpython-313-x86_64-linux-gnu.so`, `Modules/unicodedata.o`, `Modules/xxlimited.cpython-313-x86_64-linux-gnu.so`, `Modules/xxlimited.o`, `Modules/xxlimited_35.cpython-313-x86_64-linux-gnu.so`, `Modules/xxlimited_35.o`, `Modules/xxsubtype.cpython-313-x86_64-linux-gnu.so`, `Modules/xxsubtype.o`, `Modules/zlib.cpython-313-x86_64-linux-gnu.so`, `Modules/zlibmodule.o`, `Objects/abstract.o`, `Objects/boolobject.o`, `Objects/bytearrayobject.o`, `Objects/bytes_methods.o`, `Objects/bytesobject.o`, `Objects/call.o`, `Objects/capsule.o`, `Objects/cellobject.o`, `Objects/classobject.o`, `Objects/codeobject.o`, `Objects/complexobject.o`, `Objects/descrobject.o`, `Objects/dictobject.o`, `Objects/enumobject.o`, `Objects/exceptions.o`, `Objects/fileobject.o`, `Objects/floatobject.o`, `Objects/frameobject.o`, `Objects/funcobject.o`, `Objects/genericaliasobject.o`, `Objects/genobject.o`, `Objects/iterobject.o`, `Objects/listobject.o`, `Objects/longobject.o`, `Objects/memoryobject.o`, `Objects/methodobject.o`, `Objects/moduleobject.o`, `Objects/namespaceobject.o`, `Objects/object.o`, `Objects/obmalloc.o`, `Objects/odictobject.o`, `Objects/picklebufobject.o`, `Objects/rangeobject.o`, `Objects/setobject.o`, `Objects/sliceobject.o`, `Objects/structseq.o`, `Objects/tupleobject.o`, `Objects/typeobject.o`, `Objects/typevarobject.o`, `Objects/unicodectype.o`, `Objects/unicodeobject.o`, `Objects/unionobject.o`, `Objects/weakrefobject.o`, `Parser/action_helpers.o`, `Parser/lexer/buffer.o`, `Parser/lexer/lexer.o`, `Parser/lexer/state.o`, `Parser/myreadline.o`, `Parser/parser.o`, `Parser/peg_api.o`, `Parser/pegen.o`, `Parser/pegen_errors.o`, `Parser/string_parser.o`, `Parser/token.o`, `Parser/tokenizer/file_tokenizer.o`, `Parser/tokenizer/helpers.o`, `Parser/tokenizer/readline_tokenizer.o`, `Parser/tokenizer/string_tokenizer.o`, `Parser/tokenizer/utf8_tokenizer.o`, `Programs/_bootstrap_python.o`, `Programs/_freeze_module`, `Programs/_freeze_module.o`, `Programs/_testembed`, `Programs/_testembed.o`, `Programs/python.o`, `Python/Python-ast.o`, `Python/Python-tokenize.o`, `Python/_warnings.o`, `Python/asdl.o`, `Python/asm_trampoline.o`, `Python/assemble.o`, `Python/ast.o`, `Python/ast_opt.o`, `Python/ast_unparse.o`, `Python/bltinmodule.o`, `Python/bootstrap_hash.o`, `Python/brc.o`, `Python/ceval.o`, `Python/ceval_gil.o`, `Python/codecs.o`, `Python/compile.o`, `Python/context.o`, `Python/critical_section.o`, `Python/crossinterp.o`, `Python/dtoa.o`, `Python/dynamic_annotations.o`, `Python/dynload_shlib.o`, `Python/errors.o`, `Python/fileutils.o`, `Python/flowgraph.o`, `Python/formatter_unicode.o`, `Python/frame.o`, `Python/frozen.o`, `Python/frozen_modules/__hello__.h`, `Python/frozen_modules/__phello__.h`, `Python/frozen_modules/__phello__.ham.eggs.h`, `Python/frozen_modules/__phello__.ham.h`, `Python/frozen_modules/__phello__.spam.h`, `Python/frozen_modules/_collections_abc.h`, `Python/frozen_modules/_sitebuiltins.h`, `Python/frozen_modules/abc.h`, `Python/frozen_modules/codecs.h`, `Python/frozen_modules/frozen_only.h`, `Python/frozen_modules/genericpath.h`, `Python/frozen_modules/getpath.h`, `Python/frozen_modules/importlib._bootstrap.h`, `Python/frozen_modules/importlib._bootstrap_external.h`, `Python/frozen_modules/importlib.machinery.h`, `Python/frozen_modules/importlib.util.h`, `Python/frozen_modules/io.h`, `Python/frozen_modules/ntpath.h`, `Python/frozen_modules/os.h`, `Python/frozen_modules/posixpath.h`, `Python/frozen_modules/runpy.h`, `Python/frozen_modules/site.h`, `Python/frozen_modules/stat.h`, `Python/frozen_modules/zipimport.h`, `Python/frozenmain.o`, `Python/future.o`, `Python/gc.o`, `Python/gc_free_threading.o`, `Python/gc_gil.o`, `Python/getargs.o`, `Python/getcompiler.o`, `Python/getcopyright.o`, `Python/getopt.o`, `Python/getplatform.o`, `Python/getversion.o`, `Python/hamt.o`, `Python/hashtable.o`, `Python/import.o`, `Python/importdl.o`, `Python/initconfig.o`, `Python/instruction_sequence.o`, `Python/instrumentation.o`, `Python/interpconfig.o`, `Python/intrinsics.o`, `Python/jit.o`, `Python/legacy_tracing.o`, `Python/lock.o`, `Python/marshal.o`, `Python/modsupport.o`, `Python/mysnprintf.o`, `Python/mystrtoul.o`, `Python/object_stack.o`, `Python/optimizer.o`, `Python/optimizer_analysis.o`, `Python/optimizer_symbols.o`, `Python/parking_lot.o`, `Python/pathconfig.o`, `Python/perf_jit_trampoline.o`, `Python/perf_trampoline.o`, `Python/preconfig.o`, `Python/pyarena.o`, `Python/pyctype.o`, `Python/pyfpe.o`, `Python/pyhash.o`, `Python/pylifecycle.o`, `Python/pymath.o`, `Python/pystate.o`, `Python/pystrcmp.o`, `Python/pystrhex.o`, `Python/pystrtod.o`, `Python/pythonrun.o`, `Python/pytime.o`, `Python/qsbr.o`, `Python/specialize.o`, `Python/structmember.o`, `Python/suggestions.o`, `Python/symtable.o`, `Python/sysmodule.o`, `Python/thread.o`, `Python/traceback.o`, `Python/tracemalloc.o`, `_bootstrap_python`, `build/lib.linux-x86_64-3.13/__pycache__/_sysconfigdata__linux_x86_64-linux-gnu.cpython-313.pyc`, `build/lib.linux-x86_64-3.13/_asyncio.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_bisect.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_blake2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_bz2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_cn.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_hk.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_iso2022.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_jp.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_kr.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_tw.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_contextvars.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_csv.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_ctypes.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_ctypes_test.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_curses.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_curses_panel.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_datetime.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_decimal.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_elementtree.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_hashlib.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_heapq.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpchannels.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpqueues.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpreters.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_json.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_lsprof.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_lzma.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_md5.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_multibytecodec.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_multiprocessing.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_opcode.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_pickle.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_posixshmem.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_posixsubprocess.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_queue.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_random.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha1.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha3.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_socket.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sqlite3.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_statistics.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_struct.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sysconfigdata__linux_x86_64-linux-gnu.py`, `build/lib.linux-x86_64-3.13/_testbuffer.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testclinic.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testclinic_limited.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testexternalinspection.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testimportmultiple.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testinternalcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testlimitedcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testmultiphase.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testsinglephase.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_uuid.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_xxtestfuzz.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_zoneinfo.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/array.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/binascii.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/cmath.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/fcntl.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/grp.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/math.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/mmap.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/pyexpat.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/readline.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/resource.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/select.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/syslog.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/termios.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/unicodedata.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxlimited.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxlimited_35.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxsubtype.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/zlib.cpython-313-x86_64-linux-gnu.so`, `build/scripts-3.13/idle3.13`, `build/scripts-3.13/pydoc3.13`, `config.log`, `config.status`, `libpython3.13.a`, `platform`, `pybuilddir.txt`, `pyconfig.h`, `python`, `python-config`, `python-config.py`, `python-gdb.py`.
2. Listed in `## Git Add Paths` but not actually changed: `None`.

## Refinement Pass 1

Subject: Diagnose supervisord wait/poll trace as not a CPython defect

## Commit Message
No source change is proposed. The collected signal is from `supervisord` running under Python: it checks for exited child processes with `wait4(..., WNOHANG)` and then sleeps in `poll()` for about one second. That evidence does not identify a CPython runtime loop to patch upstream.

## Evidence Confidence
observed

## Issue Connection
Fixer observed high aggregate CPU attributed to `python3.13`, but the sampled command line was `/usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf`. The `/proc` evidence shows the process named `supervisord`, state `S (sleeping)`, with `wchan` in `poll_schedule_timeout`; the strace excerpt shows repeated `wait4(-1, ..., WNOHANG) = -1 ECHILD` followed by `poll(..., 1000) = 0` after about one second.

The cautious code-level inference is that this is supervisord’s application event loop checking for child exits and then blocking with a one-second timeout, not a tight loop in CPython. The unresolved native backtrace does not provide a reliable CPython fault location. I kept the planned no-patch diagnosis and made no source change.

I addressed the review finding by removing the generated build artifacts from the prior validation run, so `## Git Add Paths` now matches the clean workspace. I rechecked CPython’s contribution/build guidance in `README.rst`, Debian source notes in `debian/README.source`, and the nearby wait/poll implementations. Relevant local conventions remain the syscall wrappers in `Modules/posixmodule.c` and `Modules/selectmodule.c`, which release the GIL around blocking syscalls, retry on `EINTR`, check `PyErr_CheckSignals()`, and report errors through local helpers. No relevant supervisord-specific helper exists in this repository.

The expected effect of this no-patch diagnosis is to avoid sending an upstream CPython change for evidence that currently points at application-level supervisord behavior or profiler attribution, and to redirect follow-up toward supervisord/config evidence or a stronger Python-level reproducer.

## Git Add Paths
None

## Validation
Reviewed inputs: `plan-output.txt`, `patch-output.txt`, `review-1-output.txt`, and `evidence.json`.

Addressed review drift:

```sh
make distclean
git status --short
```

Result: generated validation artifacts were removed; `git status --short` is clean.

Project-level validation from the prior authoring pass:

```sh
./configure && make
```

Result: exit code 0. The build completed, but reported optional module issues: `_ssl` was built then removed because importing it failed with `undefined symbol: TLSv1_method`; `_dbm`, `_gdbm`, and `_tkinter` were missing.

Bounded independent signal check from the prior authoring pass:

```sh
./python - <<'PY'
import os, select, time
start = time.monotonic()
try:
    os.waitpid(-1, os.WNOHANG)
except ChildProcessError as exc:
    wait_result = type(exc).__name__
else:
    wait_result = 'no-error'
events = select.poll().poll(1000)
elapsed = time.monotonic() - start
print(f'wait={wait_result} events={events!r} elapsed={elapsed:.3f}')
PY
```

Result: `wait=ChildProcessError events=[] elapsed=1.001`, which shows the wait/no-child plus 1000 ms poll pattern is bounded sleeping, not a reproduced busy loop.

Attempted syscall-level smoke validation with `strace -qq -tt -T -e trace=wait4,poll ./python ...`, but ptrace is blocked in this sandbox: `PTRACE_TRACEME: Operation not permitted` and `ptrace(PTRACE_SEIZE, 5): Operation not permitted`. The original failure signal was therefore not independently reproduced.

## Review Pass 2

RESULT: ok

The workspace is clean (`git status --short` and `git diff --name-status` show no changed paths), so `## Git Add Paths: None` is now synchronized with the actual patch state.

The latest response is a no-patch diagnosis, not a source patch. It keeps evidence confidence at `observed`, avoids claiming local reproduction, explains the Fixer-collected `/proc` and strace signal without inventing a new failure, and connects the evidence to the decision not to patch CPython. It also names the relevant CPython wait/poll conventions and documents the validation limits, including the ptrace blocker for `strace`.

diagnosis-only report

report

python3.13 likely remains stuck in a busy-poll loop. A diagnosis report and patch proposal were created locally.

state: readycreated: 2026-05-18 21:58 UTCvalidation: ready
Published session

Prompt

## Plan Pass

You are planning a fixer patch before any edits happen.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. The original pre-edit snapshot is available at `./source` if you need to inspect it. For interpreter processes, plan from the script/application entrypoint evidence first and include the runtime only as a second investigation target unless the evidence proves a runtime bug.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround. Inspect the relevant code, nearby callers, project contribution docs, and local helper/compat APIs, but do not edit files in this pass.

Return a short markdown plan with these exact sections:

## Problem
## Evidence Confidence
## Proposed Subject
## Patch Plan
## Risks
## Validation

Classify `## Evidence Confidence` as exactly one of `reproduced`, `observed`, or `inferred`. Use `inferred` only for a no-patch diagnosis/report plan unless you can name the extra evidence you will collect before editing; inferred source patches are blocked by Fixer because they are not pull-request-ready. For `observed` source-patch plans, plan to say in the final `## Issue Connection` that the failure was observed by Fixer and not independently reproduced. If the plan touches authentication, authorization, credentials, cryptography, sandboxing, permissions, or timing/throttling behavior, treat it as security-sensitive: do not plan a source patch unless validation can reproduce the behavior and analyze the security impact; otherwise plan a no-patch diagnosis/report. The plan must explain how the proposed code change addresses the observed issue evidence, call out any prior Fixer patch that should be improved or replaced, reject awkward control flow such as avoidable `goto` if there is a cleaner bounded alternative, name any local helper APIs or maintainer conventions the patch should follow, and keep the intended maintainer-facing explanation clear enough that someone unfamiliar with the local complaint wording can still follow the fix. In `## Validation`, name the reproducible configure/build/test entrypoint you will try from the workspace root before any focused leaf compile or smoke check, and include one bounded independent reproduction attempt for the collected failure signal when it is safe and cheap. Do not plan to claim `reproduced` unless that reproduction command or test can actually show the failure.

## Patch Pass

You are working on a bounded fixer proposal.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. Produce the smallest reasonable patch for the target repository, keep the change upstreamable, prefer the clearest control flow available, and do not keep avoidable `goto` when a simpler structure would read better. Before introducing new file, process, allocation, locking, networking, or platform APIs, inspect nearby code and project contribution docs for existing helpers or compatibility wrappers and use those local patterns unless you can explain why they do not fit. Validate from a reproducible workspace-root entrypoint before falling back to focused leaf commands; if a build or test cannot run, report the exact command, the exact blocker, and any narrower check you ran instead. During validation, also try one bounded independent reproduction of the collected failure signal when it is safe and cheap, such as a failing test, smoke command, perf/strace comparison, or before/after runtime check. Only use `reproduced` if that command or test actually reproduced the failure; otherwise keep `observed` and report the reproduction blocker. The final explanation must connect the observed issue evidence to the actual code change, not just paraphrase the diff. Write like a maintainer is going to read the patch mail cold: explain the bug in plain language, define subsystem-specific jargon the first time you need it, and make the causal story obvious. Explicitly classify evidence confidence as `reproduced`, `observed`, or `inferred`: `reproduced` means you reproduced the failure locally; `observed` means Fixer has direct crash/log/trace evidence but you did not independently reproduce it; `inferred` means the source patch is not pull-request-ready, so do not leave a source diff unless you first gather stronger observed/reproduced evidence; otherwise return a no-patch diagnosis/report. For any source-changing `observed` patch, say explicitly in `## Issue Connection` that the failure was observed by Fixer and not independently reproduced. Security-sensitive areas such as authentication, authorization, credentials, cryptography, sandboxing, permissions, and timing/throttling behavior need reproduced evidence plus explicit security-impact analysis before leaving a source diff; otherwise return a no-patch diagnosis/report for human review. If you introduce non-obvious state translation, index remapping, or backend split logic, add a short source comment that explains the invariant being preserved.

Start by explaining the likely root cause from the collected perf, strace, and /proc evidence. If you cannot land a safe patch, leave a diagnosis that is strong enough for an upstream bug report.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround. 

Keep the change narrowly scoped and summarize validation clearly.

In every authoring pass, your final response must start with `Subject: <single-line git commit subject>` and then include these markdown sections exactly:

## Commit Message
A short upstream-friendly explanation of what changed and why. Write it in plain language that a maintainer can follow without local complaint context. If you use subsystem jargon, define it immediately.

## Evidence Confidence
Exactly one word: `reproduced`, `observed`, or `inferred`. Use `reproduced` only when you reproduced the failure locally with a command or test, and include that command/test in `## Validation`. Use `observed` when Fixer has direct crash/log/trace evidence but you did not independently reproduce it. If `## Git Add Paths` lists source files for an `observed` patch, `## Issue Connection` must explicitly say the failure was observed by Fixer and not independently reproduced. Security-sensitive source changes touching authentication, authorization, credentials, cryptography, sandboxing, permissions, or timing/throttling behavior require reproduced evidence and explicit security-impact analysis; otherwise list `None` under `## Git Add Paths` and write a no-patch diagnosis/report. Use `inferred` for profiler/strace/indirect evidence; inferred responses may be no-patch diagnoses or reports, but inferred source patches are not pull-request-ready until stronger evidence is gathered.

## Issue Connection
Write this as maintainer-facing patch mail, not as local Fixer notes. Cover four things explicitly in readable sentences: the user-visible symptom or the exact collected signal, the code-level cause or the cautious inference from evidence, the specific change you made, and the expected effect. Do not invent a reproducer, command line, crash, or user-visible failure that is not present in the evidence bundle. If the evidence is direct-but-not-reproduced, say it was observed by Fixer and not independently reproduced. If the evidence is indirect and you did not gather stronger evidence, do not leave a source diff; write a no-patch diagnosis/report instead. Include an explicit effect sentence such as `The expected effect is ...`, `This should reduce ...`, or `This prevents ...` for source patches. If the logic is non-obvious in code, mention that you added a short explanatory comment.

## Git Add Paths
List the repo-relative paths that belong in the final patch, one per line. Use `None` only when you intentionally made no source changes. Include intentionally new files, and do not list generated build artifacts.

## Validation
List the checks you ran, or say clearly that you could not run them. Include the independent reproduction command/test and result when `## Evidence Confidence` is `reproduced`; if reproduction was attempted but blocked, name the exact blocker and keep confidence at `observed` or `inferred`.

Before editing, read the plan at `./plan-output.txt` and follow it unless the code proves part of it wrong. If you change course, say so explicitly in the final write-up instead of silently drifting from the plan.

## Review Pass 1 (local metadata check)

Local metadata consistency check

## Refinement Pass 1

You are refining a fixer patch after an explicit code review.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. Read the latest author response at `./patch-output.txt`. Read the review report at `./review-1-output.txt`. This is refinement round 1. The original pre-edit snapshot is available at `./source` if you need to compare the current patch against it. Re-read the planning pass at `./plan-output.txt` before editing. The workspace currently changes these repo-relative paths: Lib/__pycache__/__future__.cpython-313.pyc, Lib/__pycache__/_collections_abc.cpython-313.pyc, Lib/__pycache__/_colorize.cpython-313.pyc, Lib/__pycache__/_compat_pickle.cpython-313.pyc, Lib/__pycache__/_compression.cpython-313.pyc, Lib/__pycache__/_opcode_metadata.cpython-313.pyc, Lib/__pycache__/_sitebuiltins.cpython-313.pyc, Lib/__pycache__/_weakrefset.cpython-313.pyc, Lib/__pycache__/abc.cpython-313.pyc, Lib/__pycache__/argparse.cpython-313.pyc, Lib/__pycache__/ast.cpython-313.pyc, Lib/__pycache__/bz2.cpython-313.pyc, Lib/__pycache__/codecs.cpython-313.pyc, Lib/__pycache__/contextlib.cpython-313.pyc, Lib/__pycache__/contextvars.cpython-313.pyc, Lib/__pycache__/copy.cpython-313.pyc, Lib/__pycache__/copyreg.cpython-313.pyc, Lib/__pycache__/datetime.cpython-313.pyc, Lib/__pycache__/dis.cpython-313.pyc, Lib/__pycache__/enum.cpython-313.pyc, Lib/__pycache__/fnmatch.cpython-313.pyc, Lib/__pycache__/functools.cpython-313.pyc, Lib/__pycache__/genericpath.cpython-313.pyc, Lib/__pycache__/gettext.cpython-313.pyc, Lib/__pycache__/glob.cpython-313.pyc, Lib/__pycache__/heapq.cpython-313.pyc, Lib/__pycache__/inspect.cpython-313.pyc, Lib/__pycache__/io.cpython-313.pyc, Lib/__pycache__/keyword.cpython-313.pyc, Lib/__pycache__/linecache.cpython-313.pyc, Lib/__pycache__/locale.cpython-313.pyc, Lib/__pycache__/lzma.cpython-313.pyc, Lib/__pycache__/numbers.cpython-313.pyc, Lib/__pycache__/opcode.cpython-313.pyc, Lib/__pycache__/operator.cpython-313.pyc, Lib/__pycache__/os.cpython-313.pyc, Lib/__pycache__/posixpath.cpython-313.pyc, Lib/__pycache__/reprlib.cpython-313.pyc, Lib/__pycache__/selectors.cpython-313.pyc, Lib/__pycache__/shutil.cpython-313.pyc, Lib/__pycache__/signal.cpython-313.pyc, Lib/__pycache__/site.cpython-313.pyc, Lib/__pycache__/socket.cpython-313.pyc, Lib/__pycache__/ssl.cpython-313.pyc, Lib/__pycache__/stat.cpython-313.pyc, Lib/__pycache__/string.cpython-313.pyc, Lib/__pycache__/struct.cpython-313.pyc, Lib/__pycache__/subprocess.cpython-313.pyc, Lib/__pycache__/textwrap.cpython-313.pyc, Lib/__pycache__/threading.cpython-313.pyc, Lib/__pycache__/token.cpython-313.pyc, Lib/__pycache__/tokenize.cpython-313.pyc, Lib/__pycache__/traceback.cpython-313.pyc, Lib/__pycache__/types.cpython-313.pyc, Lib/__pycache__/typing.cpython-313.pyc, Lib/__pycache__/warnings.cpython-313.pyc, Lib/__pycache__/weakref.cpython-313.pyc, Lib/asyncio/__pycache__/__init__.cpython-313.pyc, Lib/asyncio/__pycache__/base_events.cpython-313.pyc, Lib/asyncio/__pycache__/base_futures.cpython-313.pyc, Lib/asyncio/__pycache__/base_subprocess.cpython-313.pyc, Lib/asyncio/__pycache__/base_tasks.cpython-313.pyc, Lib/asyncio/__pycache__/constants.cpython-313.pyc, Lib/asyncio/__pycache__/coroutines.cpython-313.pyc, Lib/asyncio/__pycache__/events.cpython-313.pyc, Lib/asyncio/__pycache__/exceptions.cpython-313.pyc, Lib/asyncio/__pycache__/format_helpers.cpython-313.pyc, Lib/asyncio/__pycache__/futures.cpython-313.pyc, Lib/asyncio/__pycache__/locks.cpython-313.pyc, Lib/asyncio/__pycache__/log.cpython-313.pyc, Lib/asyncio/__pycache__/mixins.cpython-313.pyc, Lib/asyncio/__pycache__/protocols.cpython-313.pyc, Lib/asyncio/__pycache__/queues.cpython-313.pyc, Lib/asyncio/__pycache__/runners.cpython-313.pyc, Lib/asyncio/__pycache__/selector_events.cpython-313.pyc, Lib/asyncio/__pycache__/sslproto.cpython-313.pyc, Lib/asyncio/__pycache__/staggered.cpython-313.pyc, Lib/asyncio/__pycache__/streams.cpython-313.pyc, Lib/asyncio/__pycache__/subprocess.cpython-313.pyc, Lib/asyncio/__pycache__/taskgroups.cpython-313.pyc, Lib/asyncio/__pycache__/tasks.cpython-313.pyc, Lib/asyncio/__pycache__/threads.cpython-313.pyc, Lib/asyncio/__pycache__/timeouts.cpython-313.pyc, Lib/asyncio/__pycache__/transports.cpython-313.pyc, Lib/asyncio/__pycache__/trsock.cpython-313.pyc, Lib/asyncio/__pycache__/unix_events.cpython-313.pyc, Lib/collections/__pycache__/__init__.cpython-313.pyc, Lib/concurrent/__pycache__/__init__.cpython-313.pyc, Lib/concurrent/futures/__pycache__/__init__.cpython-313.pyc, Lib/concurrent/futures/__pycache__/_base.cpython-313.pyc, Lib/encodings/__pycache__/__init__.cpython-313.pyc, Lib/encodings/__pycache__/aliases.cpython-313.pyc, Lib/encodings/__pycache__/ascii.cpython-313.pyc, Lib/encodings/__pycache__/utf_8.cpython-313.pyc, Lib/importlib/__pycache__/__init__.cpython-313.pyc, Lib/importlib/__pycache__/_abc.cpython-313.pyc, Lib/logging/__pycache__/__init__.cpython-313.pyc, Lib/pathlib/__pycache__/__init__.cpython-313.pyc, Lib/pathlib/__pycache__/_abc.cpython-313.pyc, Lib/pathlib/__pycache__/_local.cpython-313.pyc, Lib/re/__pycache__/__init__.cpython-313.pyc, Lib/re/__pycache__/_casefix.cpython-313.pyc, Lib/re/__pycache__/_compiler.cpython-313.pyc, Lib/re/__pycache__/_constants.cpyth

[truncated 29270 bytes]

Response

## Plan Pass

## Problem
Fixer observed high aggregate CPU for `python3.13`, but the sampled command line is `/usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf`. The syscall evidence shows `wait4(-1, ..., WNOHANG) = -1 ECHILD` followed by `poll(..., 1000) = 0` about once per second, which looks like supervisord’s application event loop rather than a CPython runtime spin. The bundled raw investigation files are not available in this workspace, so there is no direct reproducer or Python-level stack beyond the excerpt.

## Evidence Confidence
observed

## Proposed Subject
No CPython source patch for this pass: diagnose Fixer opportunity 88892 as insufficiently connected to a `python3.13` upstream defect, and recommend redirecting investigation to supervisord or collecting stronger interpreter evidence first.

## Patch Plan
Do not edit CPython source unless new evidence shows a runtime bug. The observed entrypoint is supervisord, and the `poll(..., 1000)` timeout indicates bounded sleeping, not a tight CPython busy loop.

Use the entrypoint evidence first: inspect supervisord behavior/config if available in a later pass, before treating `os.waitpid`, `select.poll`, or the evaluator as faulty.

If stronger evidence later implicates CPython, follow local conventions seen in `Modules/posixmodule.c` and `Modules/selectmodule.c`: syscall wrappers use `Py_BEGIN_ALLOW_THREADS` / `Py_END_ALLOW_THREADS`, retry on `EINTR`, call `PyErr_CheckSignals`, and report errors through `posix_error()` or `PyErr_SetFromErrno`. No relevant supervisord-specific helper exists in this Python source tree.

No prior Fixer patch was found in the workspace, and `git status --short` is clean. There is therefore no prior patch to improve or replace. Avoid awkward control flow such as adding `goto`-based handling around wait/poll paths; if a real CPython issue is later proven, keep any change local and structured around the existing bounded syscall loops.

## Risks
A CPython patch here would likely be speculative: the sampled process is an application daemon, the top native backtrace is unresolved/implausible around `pthread_attr_destroy`, and the syscall trace shows one-second blocking polls.

Changing `os.waitpid`, `select.poll`, `selectors`, or subprocess behavior without a reproducer risks regressions in stable, widely used APIs.

## Validation
Before reporting any final diagnosis, try the project-level entrypoint from the workspace root:

```sh
./configure && make
```

If it fails because Debian build dependencies or generated files are missing, record the exact command and failure reason.

Because no source patch is planned, use a bounded independent signal check rather than claiming reproduction: run a small Python wait/poll smoke under `strace` to confirm that `waitpid(-1, WNOHANG)` with no children plus `poll(..., 1000)` sleeps roughly one second and is not a tight loop. If a later runtime patch becomes justified, follow with the narrowest relevant CPython tests, likely `./python -m test test_os test_select test_subprocess`, after the project build attempt.

## Patch Pass

Subject: Diagnose supervisord wait/poll trace as not a CPython defect

## Commit Message
No source change is proposed. The collected trace is from `supervisord` running under Python, and the syscall pattern shows a bounded one-second `poll()` sleep between `wait4(..., WNOHANG)` checks. That does not identify a CPython runtime loop to patch upstream.

## Evidence Confidence
observed

## Issue Connection
Fixer observed high aggregate CPU attributed to `python3.13`, with `/proc` showing the sampled process named `supervisord`, state `S (sleeping)`, and `wchan` in `poll_schedule_timeout`. The strace excerpt shows repeated `wait4(-1, ..., WNOHANG) = -1 ECHILD` followed by `poll(..., 1000) = 0 <~1.001s>`.

The likely root cause is an application-level supervisord event loop checking for child exits and then sleeping for one second, not a tight CPython busy loop. The native backtrace is unresolved and does not provide a reliable CPython code-level fault. I followed the saved plan and did not change course: without stronger evidence tying the signal to `os.waitpid`, `select.poll`, or the interpreter, a CPython source patch would be speculative.

I inspected CPython contribution/build guidance in `README.rst`, Debian source notes in `debian/README.source`, and nearby wait/poll implementations. Relevant local conventions are the syscall wrappers in `Modules/posixmodule.c` and `Modules/selectmodule.c`, which use `Py_BEGIN_ALLOW_THREADS` / `Py_END_ALLOW_THREADS`, retry on `EINTR`, check `PyErr_CheckSignals()`, and report errors with local error helpers. No relevant supervisord-specific helper exists in this repository.

The expected effect of this no-patch diagnosis is to avoid landing an upstream CPython change for evidence that currently points at supervisord behavior or profiler attribution, and to redirect follow-up toward supervisord/config evidence or a stronger Python-level reproducer.

## Git Add Paths
None

## Validation
Ran workspace-root validation:

```sh
./configure && make
```

Result: exit code 0. The build completed, but reported optional module issues: `_ssl` was built then removed because importing it failed with `undefined symbol: TLSv1_method`; `_dbm`, `_gdbm`, and `_tkinter` were missing.

Bounded independent signal check:

```sh
./python - <<'PY'
import os, select, time
start = time.monotonic()
try:
    os.waitpid(-1, os.WNOHANG)
except ChildProcessError as exc:
    wait_result = type(exc).__name__
else:
    wait_result = 'no-error'
events = select.poll().poll(1000)
elapsed = time.monotonic() - start
print(f'wait={wait_result} events={events!r} elapsed={elapsed:.3f}')
PY
```

Result: `wait=ChildProcessError events=[] elapsed=1.001`, confirming the wait/no-child plus 1000 ms poll pattern is bounded sleeping, not a reproduced busy loop.

Attempted syscall-level smoke validation with:

```sh
strace -qq -tt -T -e trace=wait4,poll ./python ...
```

Blocked by sandbox ptrace restrictions: `PTRACE_TRACEME: Operation not permitted` and `ptrace(PTRACE_SEIZE, 5): Operation not permitted`. Therefore the original failure signal was not independently reproduced; it remains Fixer-observed trace evidence.

## Review Pass 1 (local metadata check)

RESULT: fix-needed

## Findings
1. Patch metadata drift: the workspace currently changes `Lib/__pycache__/__future__.cpython-313.pyc`, `Lib/__pycache__/_collections_abc.cpython-313.pyc`, `Lib/__pycache__/_colorize.cpython-313.pyc`, `Lib/__pycache__/_compat_pickle.cpython-313.pyc`, `Lib/__pycache__/_compression.cpython-313.pyc`, `Lib/__pycache__/_opcode_metadata.cpython-313.pyc`, `Lib/__pycache__/_sitebuiltins.cpython-313.pyc`, `Lib/__pycache__/_weakrefset.cpython-313.pyc`, `Lib/__pycache__/abc.cpython-313.pyc`, `Lib/__pycache__/argparse.cpython-313.pyc`, `Lib/__pycache__/ast.cpython-313.pyc`, `Lib/__pycache__/bz2.cpython-313.pyc`, `Lib/__pycache__/codecs.cpython-313.pyc`, `Lib/__pycache__/contextlib.cpython-313.pyc`, `Lib/__pycache__/contextvars.cpython-313.pyc`, `Lib/__pycache__/copy.cpython-313.pyc`, `Lib/__pycache__/copyreg.cpython-313.pyc`, `Lib/__pycache__/datetime.cpython-313.pyc`, `Lib/__pycache__/dis.cpython-313.pyc`, `Lib/__pycache__/enum.cpython-313.pyc`, `Lib/__pycache__/fnmatch.cpython-313.pyc`, `Lib/__pycache__/functools.cpython-313.pyc`, `Lib/__pycache__/genericpath.cpython-313.pyc`, `Lib/__pycache__/gettext.cpython-313.pyc`, `Lib/__pycache__/glob.cpython-313.pyc`, `Lib/__pycache__/heapq.cpython-313.pyc`, `Lib/__pycache__/inspect.cpython-313.pyc`, `Lib/__pycache__/io.cpython-313.pyc`, `Lib/__pycache__/keyword.cpython-313.pyc`, `Lib/__pycache__/linecache.cpython-313.pyc`, `Lib/__pycache__/locale.cpython-313.pyc`, `Lib/__pycache__/lzma.cpython-313.pyc`, `Lib/__pycache__/numbers.cpython-313.pyc`, `Lib/__pycache__/opcode.cpython-313.pyc`, `Lib/__pycache__/operator.cpython-313.pyc`, `Lib/__pycache__/os.cpython-313.pyc`, `Lib/__pycache__/posixpath.cpython-313.pyc`, `Lib/__pycache__/reprlib.cpython-313.pyc`, `Lib/__pycache__/selectors.cpython-313.pyc`, `Lib/__pycache__/shutil.cpython-313.pyc`, `Lib/__pycache__/signal.cpython-313.pyc`, `Lib/__pycache__/site.cpython-313.pyc`, `Lib/__pycache__/socket.cpython-313.pyc`, `Lib/__pycache__/ssl.cpython-313.pyc`, `Lib/__pycache__/stat.cpython-313.pyc`, `Lib/__pycache__/string.cpython-313.pyc`, `Lib/__pycache__/struct.cpython-313.pyc`, `Lib/__pycache__/subprocess.cpython-313.pyc`, `Lib/__pycache__/textwrap.cpython-313.pyc`, `Lib/__pycache__/threading.cpython-313.pyc`, `Lib/__pycache__/token.cpython-313.pyc`, `Lib/__pycache__/tokenize.cpython-313.pyc`, `Lib/__pycache__/traceback.cpython-313.pyc`, `Lib/__pycache__/types.cpython-313.pyc`, `Lib/__pycache__/typing.cpython-313.pyc`, `Lib/__pycache__/warnings.cpython-313.pyc`, `Lib/__pycache__/weakref.cpython-313.pyc`, `Lib/asyncio/__pycache__/__init__.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_events.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_futures.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_subprocess.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_tasks.cpython-313.pyc`, `Lib/asyncio/__pycache__/constants.cpython-313.pyc`, `Lib/asyncio/__pycache__/coroutines.cpython-313.pyc`, `Lib/asyncio/__pycache__/events.cpython-313.pyc`, `Lib/asyncio/__pycache__/exceptions.cpython-313.pyc`, `Lib/asyncio/__pycache__/format_helpers.cpython-313.pyc`, `Lib/asyncio/__pycache__/futures.cpython-313.pyc`, `Lib/asyncio/__pycache__/locks.cpython-313.pyc`, `Lib/asyncio/__pycache__/log.cpython-313.pyc`, `Lib/asyncio/__pycache__/mixins.cpython-313.pyc`, `Lib/asyncio/__pycache__/protocols.cpython-313.pyc`, `Lib/asyncio/__pycache__/queues.cpython-313.pyc`, `Lib/asyncio/__pycache__/runners.cpython-313.pyc`, `Lib/asyncio/__pycache__/selector_events.cpython-313.pyc`, `Lib/asyncio/__pycache__/sslproto.cpython-313.pyc`, `Lib/asyncio/__pycache__/staggered.cpython-313.pyc`, `Lib/asyncio/__pycache__/streams.cpython-313.pyc`, `Lib/asyncio/__pycache__/subprocess.cpython-313.pyc`, `Lib/asyncio/__pycache__/taskgroups.cpython-313.pyc`, `Lib/asyncio/__pycache__/tasks.cpython-313.pyc`, `Lib/asyncio/__pycache__/threads.cpython-313.pyc`, `Lib/asyncio/__pycache__/timeouts.cpython-313.pyc`, `Lib/asyncio/__pycache__/transports.cpython-313.pyc`, `Lib/asyncio/__pycache__/trsock.cpython-313.pyc`, `Lib/asyncio/__pycache__/unix_events.cpython-313.pyc`, `Lib/collections/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/futures/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/futures/__pycache__/_base.cpython-313.pyc`, `Lib/encodings/__pycache__/__init__.cpython-313.pyc`, `Lib/encodings/__pycache__/aliases.cpython-313.pyc`, `Lib/encodings/__pycache__/ascii.cpython-313.pyc`, `Lib/encodings/__pycache__/utf_8.cpython-313.pyc`, `Lib/importlib/__pycache__/__init__.cpython-313.pyc`, `Lib/importlib/__pycache__/_abc.cpython-313.pyc`, `Lib/logging/__pycache__/__init__.cpython-313.pyc`, `Lib/pathlib/__pycache__/__init__.cpython-313.pyc`, `Lib/pathlib/__pycache__/_abc.cpython-313.pyc`, `Lib/pathlib/__pycache__/_local.cpython-313.pyc`, `Lib/re/__pycache__/__init__.cpython-313.pyc`, `Lib/re/__pycache__/_casefix.cpython-313.pyc`, `Lib/re/__pycache__/_compiler.cpython-313.pyc`, `Lib/re/__pycache__/_constants.cpython-313.pyc`, `Lib/re/__pycache__/_parser.cpython-313.pyc`, `Lib/sysconfig/__pycache__/__init__.cpython-313.pyc`, `Lib/sysconfig/__pycache__/__main__.cpython-313.pyc`, `Lib/xml/__pycache__/__init__.cpython-313.pyc`, `Lib/xml/etree/__pycache__/ElementPath.cpython-313.pyc`, `Lib/xml/etree/__pycache__/__init__.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/__init__.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/_common.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/_tzpath.cpython-313.pyc`, `Makefile`, `Makefile.pre`, `Misc/python-config.sh`, `Misc/python-embed.pc`, `Misc/python.pc`, `Modules/Setup.bootstrap`, `Modules/Setup.local`, `Modules/Setup.stdlib`, `Modules/_abc.o`, `Modules/_asyncio.cpython-313-x86_64-linux-gnu.so`, `Modules/_asynciomodule.o`, `Modules/_bisect.cpython-313-x86_64-linux-gnu.so`, `Modules/_bisectmodule.o`, `Modules/_blake2.cpython-313-x86_64-linux-gnu.so`, `Modules/_blake2/blake2b_impl.o`, `Modules/_blake2/blake2module.o`, `Modules/_blake2/blake2s_impl.o`, `Modules/_bz2.cpython-313-x86_64-linux-gnu.so`, `Modules/_bz2module.o`, `Modules/_codecs_cn.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_hk.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_iso2022.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_jp.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_kr.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_tw.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecsmodule.o`, `Modules/_collectionsmodule.o`, `Modules/_contextvars.cpython-313-x86_64-linux-gnu.so`, `Modules/_contextvarsmodule.o`, `Modules/_csv.cpython-313-x86_64-linux-gnu.so`, `Modules/_csv.o`, `Modules/_ctypes.cpython-313-x86_64-linux-gnu.so`, `Modules/_ctypes/_ctypes.o`, `Modules/_ctypes/_ctypes_test.o`, `Modules/_ctypes/callbacks.o`, `Modules/_ctypes/callproc.o`, `Modules/_ctypes/cfield.o`, `Modules/_ctypes/stgdict.o`, `Modules/_ctypes_test.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses_panel.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses_panel.o`, `Modules/_cursesmodule.o`, `Modules/_datetime.cpython-313-x86_64-linux-gnu.so`, `Modules/_datetimemodule.o`, `Modules/_decimal.cpython-313-x86_64-linux-gnu.so`, `Modules/_decimal/_decimal.o`, `Modules/_decimal/libmpdec/basearith.o`, `Modules/_decimal/libmpdec/constants.o`, `Modules/_decimal/libmpdec/context.o`, `Modules/_decimal/libmpdec/convolute.o`, `Modules/_decimal/libmpdec/crt.o`, `Modules/_decimal/libmpdec/difradix2.o`, `Modules/_decimal/libmpdec/fnt.o`, `Modules/_decimal/libmpdec/fourstep.o`, `Modules/_decimal/libmpdec/io.o`, `Modules/_decimal/libmpdec/libmpdec.a`, `Modules/_decimal/libmpdec/mpalloc.o`, `Modules/_decimal/libmpdec/mpdecimal.o`, `Modules/_decimal/libmpdec/numbertheory.o`, `Modules/_decimal/libmpdec/sixstep.o`, `Modules/_decimal/libmpdec/transpose.o`, `Modules/_elementtree.cpython-313-x86_64-linux-gnu.so`, `Modules/_elementtree.o`, `Modules/_functoolsmodule.o`, `Modules/_hacl/Hacl_Hash_MD5.o`, `Modules/_hacl/Hacl_Hash_SHA1.o`, `Modules/_hacl/Hacl_Hash_SHA2.o`, `Modules/_hacl/Hacl_Hash_SHA3.o`, `Modules/_hacl/libHacl_Hash_SHA2.a`, `Modules/_hashlib.cpython-313-x86_64-linux-gnu.so`, `Modules/_hashopenssl.o`, `Modules/_heapq.cpython-313-x86_64-linux-gnu.so`, `Modules/_heapqmodule.o`, `Modules/_interpchannels.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpchannelsmodule.o`, `Modules/_interpqueues.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpqueuesmodule.o`, `Modules/_interpreters.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpretersmodule.o`, `Modules/_io/_iomodule.o`, `Modules/_io/bufferedio.o`, `Modules/_io/bytesio.o`, `Modules/_io/fileio.o`, `Modules/_io/iobase.o`, `Modules/_io/stringio.o`, `Modules/_io/textio.o`, `Modules/_json.cpython-313-x86_64-linux-gnu.so`, `Modules/_json.o`, `Modules/_localemodule.o`, `Modules/_lsprof.cpython-313-x86_64-linux-gnu.so`, `Modules/_lsprof.o`, `Modules/_lzma.cpython-313-x86_64-linux-gnu.so`, `Modules/_lzmamodule.o`, `Modules/_md5.cpython-313-x86_64-linux-gnu.so`, `Modules/_multibytecodec.cpython-313-x86_64-linux-gnu.so`, `Modules/_multiprocessing.cpython-313-x86_64-linux-gnu.so`, `Modules/_multiprocessing/multiprocessing.o`, `Modules/_multiprocessing/posixshmem.o`, `Modules/_multiprocessing/semaphore.o`, `Modules/_opcode.cpython-313-x86_64-linux-gnu.so`, `Modules/_opcode.o`, `Modules/_operator.o`, `Modules/_pickle.cpython-313-x86_64-linux-gnu.so`, `Modules/_pickle.o`, `Modules/_posixshmem.cpython-313-x86_64-linux-gnu.so`, `Modules/_posixsubprocess.cpython-313-x86_64-linux-gnu.so`, `Modules/_posixsubprocess.o`, `Modules/_queue.cpython-313-x86_64-linux-gnu.so`, `Modules/_queuemodule.o`, `Modules/_random.cpython-313-x86_64-linux-gnu.so`, `Modules/_randommodule.o`, `Modules/_sha1.cpython-313-x86_64-linux-gnu.so`, `Modules/_sha2.cpython-313-x86_64-linux-gnu.so`, `Modules/_sha3.cpython-313-x86_64-linux-gnu.so`, `Modules/_socket.cpython-313-x86_64-linux-gnu.so`, `Modules/_sqlite/blob.o`, `Modules/_sqlite/connection.o`, `Modules/_sqlite/cursor.o`, `Modules/_sqlite/microprotocols.o`, `Modules/_sqlite/module.o`, `Modules/_sqlite/prepare_protocol.o`, `Modules/_sqlite/row.o`, `Modules/_sqlite/statement.o`, `Modules/_sqlite/util.o`, `Modules/_sqlite3.cpython-313-x86_64-linux-gnu.so`, `Modules/_sre/sre.o`, `Modules/_ssl.o`, `Modules/_ssl_failed.cpython-313-x86_64-linux-gnu.so`, `Modules/_stat.o`, `Modules/_statistics.cpython-313-x86_64-linux-gnu.so`, `Modules/_statisticsmodule.o`, `Modules/_struct.cpython-313-x86_64-linux-gnu.so`, `Modules/_struct.o`, `Modules/_suggestions.o`, `Modules/_sysconfig.o`, `Modules/_testbuffer.cpython-313-x86_64-linux-gnu.so`, `Modules/_testbuffer.o`, `Modules/_testcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testcapi/abstract.o`, `Modules/_testcapi/buffer.o`, `Modules/_testcapi/bytes.o`, `Modules/_testcapi/code.o`, `Modules/_testcapi/codec.o`, `Modules/_testcapi/complex.o`, `Modules/_testcapi/datetime.o`, `Modules/_testcapi/dict.o`, `Modules/_testcapi/docstring.o`, `Modules/_testcapi/exceptions.o`, `Modules/_testcapi/file.o`, `Modules/_testcapi/float.o`, `Modules/_testcapi/gc.o`, `Modules/_testcapi/getargs.o`, `Modules/_testcapi/hash.o`, `Modules/_testcapi/heaptype.o`, `Modules/_testcapi/immortal.o`, `Modules/_testcapi/list.o`, `Modules/_testcapi/long.o`, `Modules/_testcapi/mem.o`, `Modules/_testcapi/monitoring.o`, `Modules/_testcapi/numbers.o`, `Modules/_testcapi/object.o`, `Modules/_testcapi/pyatomic.o`, `Modules/_testcapi/run.o`, `Modules/_testcapi/set.o`, `Modules/_testcapi/structmember.o`, `Modules/_testcapi/time.o`, `Modules/_testcapi/tuple.o`, `Modules/_testcapi/unicode.o`, `Modules/_testcapi/vectorcall.o`, `Modules/_testcapi/watchers.o`, `Modules/_testcapimodule.o`, `Modules/_testclinic.cpython-313-x86_64-linux-gnu.so`, `Modules/_testclinic.o`, `Modules/_testclinic_limited.cpython-313-x86_64-linux-gnu.so`, `Modules/_testclinic_limited.o`, `Modules/_testexternalinspection.cpython-313-x86_64-linux-gnu.so`, `Modules/_testexternalinspection.o`, `Modules/_testimportmultiple.cpython-313-x86_64-linux-gnu.so`, `Modules/_testimportmultiple.o`, `Modules/_testinternalcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testinternalcapi.o`, `Modules/_testinternalcapi/pytime.o`, `Modules/_testinternalcapi/set.o`, `Modules/_testinternalcapi/test_critical_sections.o`, `Modules/_testinternalcapi/test_lock.o`, `Modules/_testlimitedcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testlimitedcapi.o`, `Modules/_testlimitedcapi/abstract.o`, `Modules/_testlimitedcapi/bytearray.o`, `Modules/_testlimitedcapi/bytes.o`, `Modules/_testlimitedcapi/complex.o`, `Modules/_testlimitedcapi/dict.o`, `Modules/_testlimitedcapi/eval.o`, `Modules/_testlimitedcapi/file.o`, `Modules/_testlimitedcapi/float.o`, `Modules/_testlimitedcapi/heaptype_relative.o`, `Modules/_testlimitedcapi/import.o`, `Modules/_testlimitedcapi/list.o`, `Modules/_testlimitedcapi/long.o`, `Modules/_testlimitedcapi/object.o`, `Modules/_testlimitedcapi/pyos.o`, `Modules/_testlimitedcapi/set.o`, `Modules/_testlimitedcapi/sys.o`, `Modules/_testlimitedcapi/tuple.o`, `Modules/_testlimitedcapi/unicode.o`, `Modules/_testlimitedcapi/vectorcall_limited.o`, `Modules/_testmultiphase.cpython-313-x86_64-linux-gnu.so`, `Modules/_testmultiphase.o`, `Modules/_testsinglephase.cpython-313-x86_64-linux-gnu.so`, `Modules/_testsinglephase.o`, `Modules/_threadmodule.o`, `Modules/_tracemalloc.o`, `Modules/_typingmodule.o`, `Modules/_uuid.cpython-313-x86_64-linux-gnu.so`, `Modules/_uuidmodule.o`, `Modules/_weakref.o`, `Modules/_xxtestfuzz.cpython-313-x86_64-linux-gnu.so`, `Modules/_xxtestfuzz/_xxtestfuzz.o`, `Modules/_xxtestfuzz/fuzzer.o`, `Modules/_zoneinfo.cpython-313-x86_64-linux-gnu.so`, `Modules/_zoneinfo.o`, `Modules/array.cpython-313-x86_64-linux-gnu.so`, `Modules/arraymodule.o`, `Modules/atexitmodule.o`, `Modules/binascii.cpython-313-x86_64-linux-gnu.so`, `Modules/binascii.o`, `Modules/cjkcodecs/_codecs_cn.o`, `Modules/cjkcodecs/_codecs_hk.o`, `Modules/cjkcodecs/_codecs_iso2022.o`, `Modules/cjkcodecs/_codecs_jp.o`, `Modules/cjkcodecs/_codecs_kr.o`, `Modules/cjkcodecs/_codecs_tw.o`, `Modules/cjkcodecs/multibytecodec.o`, `Modules/cmath.cpython-313-x86_64-linux-gnu.so`, `Modules/cmathmodule.o`, `Modules/config.c`, `Modules/config.o`, `Modules/errnomodule.o`, `Modules/expat/libexpat.a`, `Modules/expat/xmlparse.o`, `Modules/expat/xmlrole.o`, `Modules/expat/xmltok.o`, `Modules/faulthandler.o`, `Modules/fcntl.cpython-313-x86_64-linux-gnu.so`, `Modules/fcntlmodule.o`, `Modules/gcmodule.o`, `Modules/getbuildinfo.o`, `Modules/getpath.o`, `Modules/getpath_noop.o`, `Modules/grp.cpython-313-x86_64-linux-gnu.so`, `Modules/grpmodule.o`, `Modules/itertoolsmodule.o`, `Modules/ld_so_aix`, `Modules/main.o`, `Modules/math.cpython-313-x86_64-linux-gnu.so`, `Modules/mathmodule.o`, `Modules/md5module.o`, `Modules/mmap.cpython-313-x86_64-linux-gnu.so`, `Modules/mmapmodule.o`, `Modules/posixmodule.o`, `Modules/pwdmodule.o`, `Modules/pyexpat.cpython-313-x86_64-linux-gnu.so`, `Modules/pyexpat.o`, `Modules/readline.cpython-313-x86_64-linux-gnu.so`, `Modules/readline.o`, `Modules/resource.cpython-313-x86_64-linux-gnu.so`, `Modules/resource.o`, `Modules/rotatingtree.o`, `Modules/select.cpython-313-x86_64-linux-gnu.so`, `Modules/selectmodule.o`, `Modules/sha1module.o`, `Modules/sha2module.o`, `Modules/sha3module.o`, `Modules/signalmodule.o`, `Modules/socketmodule.o`, `Modules/symtablemodule.o`, `Modules/syslog.cpython-313-x86_64-linux-gnu.so`, `Modules/syslogmodule.o`, `Modules/termios.cpython-313-x86_64-linux-gnu.so`, `Modules/termios.o`, `Modules/timemodule.o`, `Modules/unicodedata.cpython-313-x86_64-linux-gnu.so`, `Modules/unicodedata.o`, `Modules/xxlimited.cpython-313-x86_64-linux-gnu.so`, `Modules/xxlimited.o`, `Modules/xxlimited_35.cpython-313-x86_64-linux-gnu.so`, `Modules/xxlimited_35.o`, `Modules/xxsubtype.cpython-313-x86_64-linux-gnu.so`, `Modules/xxsubtype.o`, `Modules/zlib.cpython-313-x86_64-linux-gnu.so`, `Modules/zlibmodule.o`, `Objects/abstract.o`, `Objects/boolobject.o`, `Objects/bytearrayobject.o`, `Objects/bytes_methods.o`, `Objects/bytesobject.o`, `Objects/call.o`, `Objects/capsule.o`, `Objects/cellobject.o`, `Objects/classobject.o`, `Objects/codeobject.o`, `Objects/complexobject.o`, `Objects/descrobject.o`, `Objects/dictobject.o`, `Objects/enumobject.o`, `Objects/exceptions.o`, `Objects/fileobject.o`, `Objects/floatobject.o`, `Objects/frameobject.o`, `Objects/funcobject.o`, `Objects/genericaliasobject.o`, `Objects/genobject.o`, `Objects/iterobject.o`, `Objects/listobject.o`, `Objects/longobject.o`, `Objects/memoryobject.o`, `Objects/methodobject.o`, `Objects/moduleobject.o`, `Objects/namespaceobject.o`, `Objects/object.o`, `Objects/obmalloc.o`, `Objects/odictobject.o`, `Objects/picklebufobject.o`, `Objects/rangeobject.o`, `Objects/setobject.o`, `Objects/sliceobject.o`, `Objects/structseq.o`, `Objects/tupleobject.o`, `Objects/typeobject.o`, `Objects/typevarobject.o`, `Objects/unicodectype.o`, `Objects/unicodeobject.o`, `Objects/unionobject.o`, `Objects/weakrefobject.o`, `Parser/action_helpers.o`, `Parser/lexer/buffer.o`, `Parser/lexer/lexer.o`, `Parser/lexer/state.o`, `Parser/myreadline.o`, `Parser/parser.o`, `Parser/peg_api.o`, `Parser/pegen.o`, `Parser/pegen_errors.o`, `Parser/string_parser.o`, `Parser/token.o`, `Parser/tokenizer/file_tokenizer.o`, `Parser/tokenizer/helpers.o`, `Parser/tokenizer/readline_tokenizer.o`, `Parser/tokenizer/string_tokenizer.o`, `Parser/tokenizer/utf8_tokenizer.o`, `Programs/_bootstrap_python.o`, `Programs/_freeze_module`, `Programs/_freeze_module.o`, `Programs/_testembed`, `Programs/_testembed.o`, `Programs/python.o`, `Python/Python-ast.o`, `Python/Python-tokenize.o`, `Python/_warnings.o`, `Python/asdl.o`, `Python/asm_trampoline.o`, `Python/assemble.o`, `Python/ast.o`, `Python/ast_opt.o`, `Python/ast_unparse.o`, `Python/bltinmodule.o`, `Python/bootstrap_hash.o`, `Python/brc.o`, `Python/ceval.o`, `Python/ceval_gil.o`, `Python/codecs.o`, `Python/compile.o`, `Python/context.o`, `Python/critical_section.o`, `Python/crossinterp.o`, `Python/dtoa.o`, `Python/dynamic_annotations.o`, `Python/dynload_shlib.o`, `Python/errors.o`, `Python/fileutils.o`, `Python/flowgraph.o`, `Python/formatter_unicode.o`, `Python/frame.o`, `Python/frozen.o`, `Python/frozen_modules/__hello__.h`, `Python/frozen_modules/__phello__.h`, `Python/frozen_modules/__phello__.ham.eggs.h`, `Python/frozen_modules/__phello__.ham.h`, `Python/frozen_modules/__phello__.spam.h`, `Python/frozen_modules/_collections_abc.h`, `Python/frozen_modules/_sitebuiltins.h`, `Python/frozen_modules/abc.h`, `Python/frozen_modules/codecs.h`, `Python/frozen_modules/frozen_only.h`, `Python/frozen_modules/genericpath.h`, `Python/frozen_modules/getpath.h`, `Python/frozen_modules/importlib._bootstrap.h`, `Python/frozen_modules/importlib._bootstrap_external.h`, `Python/frozen_modules/importlib.machinery.h`, `Python/frozen_modules/importlib.util.h`, `Python/frozen_modules/io.h`, `Python/frozen_modules/ntpath.h`, `Python/frozen_modules/os.h`, `Python/frozen_modules/posixpath.h`, `Python/frozen_modules/runpy.h`, `Python/frozen_modules/site.h`, `Python/frozen_modules/stat.h`, `Python/frozen_modules/zipimport.h`, `Python/frozenmain.o`, `Python/future.o`, `Python/gc.o`, `Python/gc_free_threading.o`, `Python/gc_gil.o`, `Python/getargs.o`, `Python/getcompiler.o`, `Python/getcopyright.o`, `Python/getopt.o`, `Python/getplatform.o`, `Python/getversion.o`, `Python/hamt.o`, `Python/hashtable.o`, `Python/import.o`, `Python/importdl.o`, `Python/initconfig.o`, `Python/instruction_sequence.o`, `Python/instrumentation.o`, `Python/interpconfig.o`, `Python/intrinsics.o`, `Python/jit.o`, `Python/legacy_tracing.o`, `Python/lock.o`, `Python/marshal.o`, `Python/modsupport.o`, `Python/mysnprintf.o`, `Python/mystrtoul.o`, `Python/object_stack.o`, `Python/optimizer.o`, `Python/optimizer_analysis.o`, `Python/optimizer_symbols.o`, `Python/parking_lot.o`, `Python/pathconfig.o`, `Python/perf_jit_trampoline.o`, `Python/perf_trampoline.o`, `Python/preconfig.o`, `Python/pyarena.o`, `Python/pyctype.o`, `Python/pyfpe.o`, `Python/pyhash.o`, `Python/pylifecycle.o`, `Python/pymath.o`, `Python/pystate.o`, `Python/pystrcmp.o`, `Python/pystrhex.o`, `Python/pystrtod.o`, `Python/pythonrun.o`, `Python/pytime.o`, `Python/qsbr.o`, `Python/specialize.o`, `Python/structmember.o`, `Python/suggestions.o`, `Python/symtable.o`, `Python/sysmodule.o`, `Python/thread.o`, `Python/traceback.o`, `Python/tracemalloc.o`, `_bootstrap_python`, `build/lib.linux-x86_64-3.13/__pycache__/_sysconfigdata__linux_x86_64-linux-gnu.cpython-313.pyc`, `build/lib.linux-x86_64-3.13/_asyncio.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_bisect.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_blake2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_bz2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_cn.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_hk.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_iso2022.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_jp.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_kr.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_tw.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_contextvars.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_csv.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_ctypes.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_ctypes_test.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_curses.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_curses_panel.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_datetime.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_decimal.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_elementtree.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_hashlib.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_heapq.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpchannels.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpqueues.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpreters.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_json.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_lsprof.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_lzma.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_md5.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_multibytecodec.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_multiprocessing.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_opcode.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_pickle.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_posixshmem.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_posixsubprocess.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_queue.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_random.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha1.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha3.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_socket.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sqlite3.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_statistics.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_struct.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sysconfigdata__linux_x86_64-linux-gnu.py`, `build/lib.linux-x86_64-3.13/_testbuffer.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testclinic.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testclinic_limited.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testexternalinspection.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testimportmultiple.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testinternalcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testlimitedcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testmultiphase.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testsinglephase.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_uuid.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_xxtestfuzz.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_zoneinfo.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/array.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/binascii.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/cmath.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/fcntl.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/grp.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/math.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/mmap.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/pyexpat.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/readline.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/resource.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/select.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/syslog.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/termios.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/unicodedata.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxlimited.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxlimited_35.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxsubtype.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/zlib.cpython-313-x86_64-linux-gnu.so`, `build/scripts-3.13/idle3.13`, `build/scripts-3.13/pydoc3.13`, `config.log`, `config.status`, `libpython3.13.a`, `platform`, `pybuilddir.txt`, `pyconfig.h`, `python`, `python-config`, `python-config.py`, `python-gdb.py`, but `## Git Add Paths` lists `None`. Update `## Git Add Paths` to match the real shipped file set exactly, and make sure `## Issue Connection` explains every functional file that remains in the patch.
2. Missing from `## Git Add Paths`: `Lib/__pycache__/__future__.cpython-313.pyc`, `Lib/__pycache__/_collections_abc.cpython-313.pyc`, `Lib/__pycache__/_colorize.cpython-313.pyc`, `Lib/__pycache__/_compat_pickle.cpython-313.pyc`, `Lib/__pycache__/_compression.cpython-313.pyc`, `Lib/__pycache__/_opcode_metadata.cpython-313.pyc`, `Lib/__pycache__/_sitebuiltins.cpython-313.pyc`, `Lib/__pycache__/_weakrefset.cpython-313.pyc`, `Lib/__pycache__/abc.cpython-313.pyc`, `Lib/__pycache__/argparse.cpython-313.pyc`, `Lib/__pycache__/ast.cpython-313.pyc`, `Lib/__pycache__/bz2.cpython-313.pyc`, `Lib/__pycache__/codecs.cpython-313.pyc`, `Lib/__pycache__/contextlib.cpython-313.pyc`, `Lib/__pycache__/contextvars.cpython-313.pyc`, `Lib/__pycache__/copy.cpython-313.pyc`, `Lib/__pycache__/copyreg.cpython-313.pyc`, `Lib/__pycache__/datetime.cpython-313.pyc`, `Lib/__pycache__/dis.cpython-313.pyc`, `Lib/__pycache__/enum.cpython-313.pyc`, `Lib/__pycache__/fnmatch.cpython-313.pyc`, `Lib/__pycache__/functools.cpython-313.pyc`, `Lib/__pycache__/genericpath.cpython-313.pyc`, `Lib/__pycache__/gettext.cpython-313.pyc`, `Lib/__pycache__/glob.cpython-313.pyc`, `Lib/__pycache__/heapq.cpython-313.pyc`, `Lib/__pycache__/inspect.cpython-313.pyc`, `Lib/__pycache__/io.cpython-313.pyc`, `Lib/__pycache__/keyword.cpython-313.pyc`, `Lib/__pycache__/linecache.cpython-313.pyc`, `Lib/__pycache__/locale.cpython-313.pyc`, `Lib/__pycache__/lzma.cpython-313.pyc`, `Lib/__pycache__/numbers.cpython-313.pyc`, `Lib/__pycache__/opcode.cpython-313.pyc`, `Lib/__pycache__/operator.cpython-313.pyc`, `Lib/__pycache__/os.cpython-313.pyc`, `Lib/__pycache__/posixpath.cpython-313.pyc`, `Lib/__pycache__/reprlib.cpython-313.pyc`, `Lib/__pycache__/selectors.cpython-313.pyc`, `Lib/__pycache__/shutil.cpython-313.pyc`, `Lib/__pycache__/signal.cpython-313.pyc`, `Lib/__pycache__/site.cpython-313.pyc`, `Lib/__pycache__/socket.cpython-313.pyc`, `Lib/__pycache__/ssl.cpython-313.pyc`, `Lib/__pycache__/stat.cpython-313.pyc`, `Lib/__pycache__/string.cpython-313.pyc`, `Lib/__pycache__/struct.cpython-313.pyc`, `Lib/__pycache__/subprocess.cpython-313.pyc`, `Lib/__pycache__/textwrap.cpython-313.pyc`, `Lib/__pycache__/threading.cpython-313.pyc`, `Lib/__pycache__/token.cpython-313.pyc`, `Lib/__pycache__/tokenize.cpython-313.pyc`, `Lib/__pycache__/traceback.cpython-313.pyc`, `Lib/__pycache__/types.cpython-313.pyc`, `Lib/__pycache__/typing.cpython-313.pyc`, `Lib/__pycache__/warnings.cpython-313.pyc`, `Lib/__pycache__/weakref.cpython-313.pyc`, `Lib/asyncio/__pycache__/__init__.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_events.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_futures.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_subprocess.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_tasks.cpython-313.pyc`, `Lib/asyncio/__pycache__/constants.cpython-313.pyc`, `Lib/asyncio/__pycache__/coroutines.cpython-313.pyc`, `Lib/asyncio/__pycache__/events.cpython-313.pyc`, `Lib/asyncio/__pycache__/exceptions.cpython-313.pyc`, `Lib/asyncio/__pycache__/format_helpers.cpython-313.pyc`, `Lib/asyncio/__pycache__/futures.cpython-313.pyc`, `Lib/asyncio/__pycache__/locks.cpython-313.pyc`, `Lib/asyncio/__pycache__/log.cpython-313.pyc`, `Lib/asyncio/__pycache__/mixins.cpython-313.pyc`, `Lib/asyncio/__pycache__/protocols.cpython-313.pyc`, `Lib/asyncio/__pycache__/queues.cpython-313.pyc`, `Lib/asyncio/__pycache__/runners.cpython-313.pyc`, `Lib/asyncio/__pycache__/selector_events.cpython-313.pyc`, `Lib/asyncio/__pycache__/sslproto.cpython-313.pyc`, `Lib/asyncio/__pycache__/staggered.cpython-313.pyc`, `Lib/asyncio/__pycache__/streams.cpython-313.pyc`, `Lib/asyncio/__pycache__/subprocess.cpython-313.pyc`, `Lib/asyncio/__pycache__/taskgroups.cpython-313.pyc`, `Lib/asyncio/__pycache__/tasks.cpython-313.pyc`, `Lib/asyncio/__pycache__/threads.cpython-313.pyc`, `Lib/asyncio/__pycache__/timeouts.cpython-313.pyc`, `Lib/asyncio/__pycache__/transports.cpython-313.pyc`, `Lib/asyncio/__pycache__/trsock.cpython-313.pyc`, `Lib/asyncio/__pycache__/unix_events.cpython-313.pyc`, `Lib/collections/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/futures/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/futures/__pycache__/_base.cpython-313.pyc`, `Lib/encodings/__pycache__/__init__.cpython-313.pyc`, `Lib/encodings/__pycache__/aliases.cpython-313.pyc`, `Lib/encodings/__pycache__/ascii.cpython-313.pyc`, `Lib/encodings/__pycache__/utf_8.cpython-313.pyc`, `Lib/importlib/__pycache__/__init__.cpython-313.pyc`, `Lib/importlib/__pycache__/_abc.cpython-313.pyc`, `Lib/logging/__pycache__/__init__.cpython-313.pyc`, `Lib/pathlib/__pycache__/__init__.cpython-313.pyc`, `Lib/pathlib/__pycache__/_abc.cpython-313.pyc`, `Lib/pathlib/__pycache__/_local.cpython-313.pyc`, `Lib/re/__pycache__/__init__.cpython-313.pyc`, `Lib/re/__pycache__/_casefix.cpython-313.pyc`, `Lib/re/__pycache__/_compiler.cpython-313.pyc`, `Lib/re/__pycache__/_constants.cpython-313.pyc`, `Lib/re/__pycache__/_parser.cpython-313.pyc`, `Lib/sysconfig/__pycache__/__init__.cpython-313.pyc`, `Lib/sysconfig/__pycache__/__main__.cpython-313.pyc`, `Lib/xml/__pycache__/__init__.cpython-313.pyc`, `Lib/xml/etree/__pycache__/ElementPath.cpython-313.pyc`, `Lib/xml/etree/__pycache__/__init__.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/__init__.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/_common.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/_tzpath.cpython-313.pyc`, `Makefile`, `Makefile.pre`, `Misc/python-config.sh`, `Misc/python-embed.pc`, `Misc/python.pc`, `Modules/Setup.bootstrap`, `Modules/Setup.local`, `Modules/Setup.stdlib`, `Modules/_abc.o`, `Modules/_asyncio.cpython-313-x86_64-linux-gnu.so`, `Modules/_asynciomodule.o`, `Modules/_bisect.cpython-313-x86_64-linux-gnu.so`, `Modules/_bisectmodule.o`, `Modules/_blake2.cpython-313-x86_64-linux-gnu.so`, `Modules/_blake2/blake2b_impl.o`, `Modules/_blake2/blake2module.o`, `Modules/_blake2/blake2s_impl.o`, `Modules/_bz2.cpython-313-x86_64-linux-gnu.so`, `Modules/_bz2module.o`, `Modules/_codecs_cn.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_hk.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_iso2022.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_jp.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_kr.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_tw.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecsmodule.o`, `Modules/_collectionsmodule.o`, `Modules/_contextvars.cpython-313-x86_64-linux-gnu.so`, `Modules/_contextvarsmodule.o`, `Modules/_csv.cpython-313-x86_64-linux-gnu.so`, `Modules/_csv.o`, `Modules/_ctypes.cpython-313-x86_64-linux-gnu.so`, `Modules/_ctypes/_ctypes.o`, `Modules/_ctypes/_ctypes_test.o`, `Modules/_ctypes/callbacks.o`, `Modules/_ctypes/callproc.o`, `Modules/_ctypes/cfield.o`, `Modules/_ctypes/stgdict.o`, `Modules/_ctypes_test.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses_panel.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses_panel.o`, `Modules/_cursesmodule.o`, `Modules/_datetime.cpython-313-x86_64-linux-gnu.so`, `Modules/_datetimemodule.o`, `Modules/_decimal.cpython-313-x86_64-linux-gnu.so`, `Modules/_decimal/_decimal.o`, `Modules/_decimal/libmpdec/basearith.o`, `Modules/_decimal/libmpdec/constants.o`, `Modules/_decimal/libmpdec/context.o`, `Modules/_decimal/libmpdec/convolute.o`, `Modules/_decimal/libmpdec/crt.o`, `Modules/_decimal/libmpdec/difradix2.o`, `Modules/_decimal/libmpdec/fnt.o`, `Modules/_decimal/libmpdec/fourstep.o`, `Modules/_decimal/libmpdec/io.o`, `Modules/_decimal/libmpdec/libmpdec.a`, `Modules/_decimal/libmpdec/mpalloc.o`, `Modules/_decimal/libmpdec/mpdecimal.o`, `Modules/_decimal/libmpdec/numbertheory.o`, `Modules/_decimal/libmpdec/sixstep.o`, `Modules/_decimal/libmpdec/transpose.o`, `Modules/_elementtree.cpython-313-x86_64-linux-gnu.so`, `Modules/_elementtree.o`, `Modules/_functoolsmodule.o`, `Modules/_hacl/Hacl_Hash_MD5.o`, `Modules/_hacl/Hacl_Hash_SHA1.o`, `Modules/_hacl/Hacl_Hash_SHA2.o`, `Modules/_hacl/Hacl_Hash_SHA3.o`, `Modules/_hacl/libHacl_Hash_SHA2.a`, `Modules/_hashlib.cpython-313-x86_64-linux-gnu.so`, `Modules/_hashopenssl.o`, `Modules/_heapq.cpython-313-x86_64-linux-gnu.so`, `Modules/_heapqmodule.o`, `Modules/_interpchannels.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpchannelsmodule.o`, `Modules/_interpqueues.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpqueuesmodule.o`, `Modules/_interpreters.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpretersmodule.o`, `Modules/_io/_iomodule.o`, `Modules/_io/bufferedio.o`, `Modules/_io/bytesio.o`, `Modules/_io/fileio.o`, `Modules/_io/iobase.o`, `Modules/_io/stringio.o`, `Modules/_io/textio.o`, `Modules/_json.cpython-313-x86_64-linux-gnu.so`, `Modules/_json.o`, `Modules/_localemodule.o`, `Modules/_lsprof.cpython-313-x86_64-linux-gnu.so`, `Modules/_lsprof.o`, `Modules/_lzma.cpython-313-x86_64-linux-gnu.so`, `Modules/_lzmamodule.o`, `Modules/_md5.cpython-313-x86_64-linux-gnu.so`, `Modules/_multibytecodec.cpython-313-x86_64-linux-gnu.so`, `Modules/_multiprocessing.cpython-313-x86_64-linux-gnu.so`, `Modules/_multiprocessing/multiprocessing.o`, `Modules/_multiprocessing/posixshmem.o`, `Modules/_multiprocessing/semaphore.o`, `Modules/_opcode.cpython-313-x86_64-linux-gnu.so`, `Modules/_opcode.o`, `Modules/_operator.o`, `Modules/_pickle.cpython-313-x86_64-linux-gnu.so`, `Modules/_pickle.o`, `Modules/_posixshmem.cpython-313-x86_64-linux-gnu.so`, `Modules/_posixsubprocess.cpython-313-x86_64-linux-gnu.so`, `Modules/_posixsubprocess.o`, `Modules/_queue.cpython-313-x86_64-linux-gnu.so`, `Modules/_queuemodule.o`, `Modules/_random.cpython-313-x86_64-linux-gnu.so`, `Modules/_randommodule.o`, `Modules/_sha1.cpython-313-x86_64-linux-gnu.so`, `Modules/_sha2.cpython-313-x86_64-linux-gnu.so`, `Modules/_sha3.cpython-313-x86_64-linux-gnu.so`, `Modules/_socket.cpython-313-x86_64-linux-gnu.so`, `Modules/_sqlite/blob.o`, `Modules/_sqlite/connection.o`, `Modules/_sqlite/cursor.o`, `Modules/_sqlite/microprotocols.o`, `Modules/_sqlite/module.o`, `Modules/_sqlite/prepare_protocol.o`, `Modules/_sqlite/row.o`, `Modules/_sqlite/statement.o`, `Modules/_sqlite/util.o`, `Modules/_sqlite3.cpython-313-x86_64-linux-gnu.so`, `Modules/_sre/sre.o`, `Modules/_ssl.o`, `Modules/_ssl_failed.cpython-313-x86_64-linux-gnu.so`, `Modules/_stat.o`, `Modules/_statistics.cpython-313-x86_64-linux-gnu.so`, `Modules/_statisticsmodule.o`, `Modules/_struct.cpython-313-x86_64-linux-gnu.so`, `Modules/_struct.o`, `Modules/_suggestions.o`, `Modules/_sysconfig.o`, `Modules/_testbuffer.cpython-313-x86_64-linux-gnu.so`, `Modules/_testbuffer.o`, `Modules/_testcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testcapi/abstract.o`, `Modules/_testcapi/buffer.o`, `Modules/_testcapi/bytes.o`, `Modules/_testcapi/code.o`, `Modules/_testcapi/codec.o`, `Modules/_testcapi/complex.o`, `Modules/_testcapi/datetime.o`, `Modules/_testcapi/dict.o`, `Modules/_testcapi/docstring.o`, `Modules/_testcapi/exceptions.o`, `Modules/_testcapi/file.o`, `Modules/_testcapi/float.o`, `Modules/_testcapi/gc.o`, `Modules/_testcapi/getargs.o`, `Modules/_testcapi/hash.o`, `Modules/_testcapi/heaptype.o`, `Modules/_testcapi/immortal.o`, `Modules/_testcapi/list.o`, `Modules/_testcapi/long.o`, `Modules/_testcapi/mem.o`, `Modules/_testcapi/monitoring.o`, `Modules/_testcapi/numbers.o`, `Modules/_testcapi/object.o`, `Modules/_testcapi/pyatomic.o`, `Modules/_testcapi/run.o`, `Modules/_testcapi/set.o`, `Modules/_testcapi/structmember.o`, `Modules/_testcapi/time.o`, `Modules/_testcapi/tuple.o`, `Modules/_testcapi/unicode.o`, `Modules/_testcapi/vectorcall.o`, `Modules/_testcapi/watchers.o`, `Modules/_testcapimodule.o`, `Modules/_testclinic.cpython-313-x86_64-linux-gnu.so`, `Modules/_testclinic.o`, `Modules/_testclinic_limited.cpython-313-x86_64-linux-gnu.so`, `Modules/_testclinic_limited.o`, `Modules/_testexternalinspection.cpython-313-x86_64-linux-gnu.so`, `Modules/_testexternalinspection.o`, `Modules/_testimportmultiple.cpython-313-x86_64-linux-gnu.so`, `Modules/_testimportmultiple.o`, `Modules/_testinternalcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testinternalcapi.o`, `Modules/_testinternalcapi/pytime.o`, `Modules/_testinternalcapi/set.o`, `Modules/_testinternalcapi/test_critical_sections.o`, `Modules/_testinternalcapi/test_lock.o`, `Modules/_testlimitedcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testlimitedcapi.o`, `Modules/_testlimitedcapi/abstract.o`, `Modules/_testlimitedcapi/bytearray.o`, `Modules/_testlimitedcapi/bytes.o`, `Modules/_testlimitedcapi/complex.o`, `Modules/_testlimitedcapi/dict.o`, `Modules/_testlimitedcapi/eval.o`, `Modules/_testlimitedcapi/file.o`, `Modules/_testlimitedcapi/float.o`, `Modules/_testlimitedcapi/heaptype_relative.o`, `Modules/_testlimitedcapi/import.o`, `Modules/_testlimitedcapi/list.o`, `Modules/_testlimitedcapi/long.o`, `Modules/_testlimitedcapi/object.o`, `Modules/_testlimitedcapi/pyos.o`, `Modules/_testlimitedcapi/set.o`, `Modules/_testlimitedcapi/sys.o`, `Modules/_testlimitedcapi/tuple.o`, `Modules/_testlimitedcapi/unicode.o`, `Modules/_testlimitedcapi/vectorcall_limited.o`, `Modules/_testmultiphase.cpython-313-x86_64-linux-gnu.so`, `Modules/_testmultiphase.o`, `Modules/_testsinglephase.cpython-313-x86_64-linux-gnu.so`, `Modules/_testsinglephase.o`, `Modules/_threadmodule.o`, `Modules/_tracemalloc.o`, `Modules/_typingmodule.o`, `Modules/_uuid.cpython-313-x86_64-linux-gnu.so`, `Modules/_uuidmodule.o`, `Modules/_weakref.o`, `Modules/_xxtestfuzz.cpython-313-x86_64-linux-gnu.so`, `Modules/_xxtestfuzz/_xxtestfuzz.o`, `Modules/_xxtestfuzz/fuzzer.o`, `Modules/_zoneinfo.cpython-313-x86_64-linux-gnu.so`, `Modules/_zoneinfo.o`, `Modules/array.cpython-313-x86_64-linux-gnu.so`, `Modules/arraymodule.o`, `Modules/atexitmodule.o`, `Modules/binascii.cpython-313-x86_64-linux-gnu.so`, `Modules/binascii.o`, `Modules/cjkcodecs/_codecs_cn.o`, `Modules/cjkcodecs/_codecs_hk.o`, `Modules/cjkcodecs/_codecs_iso2022.o`, `Modules/cjkcodecs/_codecs_jp.o`, `Modules/cjkcodecs/_codecs_kr.o`, `Modules/cjkcodecs/_codecs_tw.o`, `Modules/cjkcodecs/multibytecodec.o`, `Modules/cmath.cpython-313-x86_64-linux-gnu.so`, `Modules/cmathmodule.o`, `Modules/config.c`, `Modules/config.o`, `Modules/errnomodule.o`, `Modules/expat/libexpat.a`, `Modules/expat/xmlparse.o`, `Modules/expat/xmlrole.o`, `Modules/expat/xmltok.o`, `Modules/faulthandler.o`, `Modules/fcntl.cpython-313-x86_64-linux-gnu.so`, `Modules/fcntlmodule.o`, `Modules/gcmodule.o`, `Modules/getbuildinfo.o`, `Modules/getpath.o`, `Modules/getpath_noop.o`, `Modules/grp.cpython-313-x86_64-linux-gnu.so`, `Modules/grpmodule.o`, `Modules/itertoolsmodule.o`, `Modules/ld_so_aix`, `Modules/main.o`, `Modules/math.cpython-313-x86_64-linux-gnu.so`, `Modules/mathmodule.o`, `Modules/md5module.o`, `Modules/mmap.cpython-313-x86_64-linux-gnu.so`, `Modules/mmapmodule.o`, `Modules/posixmodule.o`, `Modules/pwdmodule.o`, `Modules/pyexpat.cpython-313-x86_64-linux-gnu.so`, `Modules/pyexpat.o`, `Modules/readline.cpython-313-x86_64-linux-gnu.so`, `Modules/readline.o`, `Modules/resource.cpython-313-x86_64-linux-gnu.so`, `Modules/resource.o`, `Modules/rotatingtree.o`, `Modules/select.cpython-313-x86_64-linux-gnu.so`, `Modules/selectmodule.o`, `Modules/sha1module.o`, `Modules/sha2module.o`, `Modules/sha3module.o`, `Modules/signalmodule.o`, `Modules/socketmodule.o`, `Modules/symtablemodule.o`, `Modules/syslog.cpython-313-x86_64-linux-gnu.so`, `Modules/syslogmodule.o`, `Modules/termios.cpython-313-x86_64-linux-gnu.so`, `Modules/termios.o`, `Modules/timemodule.o`, `Modules/unicodedata.cpython-313-x86_64-linux-gnu.so`, `Modules/unicodedata.o`, `Modules/xxlimited.cpython-313-x86_64-linux-gnu.so`, `Modules/xxlimited.o`, `Modules/xxlimited_35.cpython-313-x86_64-linux-gnu.so`, `Modules/xxlimited_35.o`, `Modules/xxsubtype.cpython-313-x86_64-linux-gnu.so`, `Modules/xxsubtype.o`, `Modules/zlib.cpython-313-x86_64-linux-gnu.so`, `Modules/zlibmodule.o`, `Objects/abstract.o`, `Objects/boolobject.o`, `Objects/bytearrayobject.o`, `Objects/bytes_methods.o`, `Objects/bytesobject.o`, `Objects/call.o`, `Objects/capsule.o`, `Objects/cellobject.o`, `Objects/classobject.o`, `Objects/codeobject.o`, `Objects/complexobject.o`, `Objects/descrobject.o`, `Objects/dictobject.o`, `Objects/enumobject.o`, `Objects/exceptions.o`, `Objects/fileobject.o`, `Objects/floatobject.o`, `Objects/frameobject.o`, `Objects/funcobject.o`, `Objects/genericaliasobject.o`, `Objects/genobject.o`, `Objects/iterobject.o`, `Objects/listobject.o`, `Objects/longobject.o`, `Objects/memoryobject.o`, `Objects/methodobject.o`, `Objects/moduleobject.o`, `Objects/namespaceobject.o`, `Objects/object.o`, `Objects/obmalloc.o`, `Objects/odictobject.o`, `Objects/picklebufobject.o`, `Objects/rangeobject.o`, `Objects/setobject.o`, `Objects/sliceobject.o`, `Objects/structseq.o`, `Objects/tupleobject.o`, `Objects/typeobject.o`, `Objects/typevarobject.o`, `Objects/unicodectype.o`, `Objects/unicodeobject.o`, `Objects/unionobject.o`, `Objects/weakrefobject.o`, `Parser/action_helpers.o`, `Parser/lexer/buffer.o`, `Parser/lexer/lexer.o`, `Parser/lexer/state.o`, `Parser/myreadline.o`, `Parser/parser.o`, `Parser/peg_api.o`, `Parser/pegen.o`, `Parser/pegen_errors.o`, `Parser/string_parser.o`, `Parser/token.o`, `Parser/tokenizer/file_tokenizer.o`, `Parser/tokenizer/helpers.o`, `Parser/tokenizer/readline_tokenizer.o`, `Parser/tokenizer/string_tokenizer.o`, `Parser/tokenizer/utf8_tokenizer.o`, `Programs/_bootstrap_python.o`, `Programs/_freeze_module`, `Programs/_freeze_module.o`, `Programs/_testembed`, `Programs/_testembed.o`, `Programs/python.o`, `Python/Python-ast.o`, `Python/Python-tokenize.o`, `Python/_warnings.o`, `Python/asdl.o`, `Python/asm_trampoline.o`, `Python/assemble.o`, `Python/ast.o`, `Python/ast_opt.o`, `Python/ast_unparse.o`, `Python/bltinmodule.o`, `Python/bootstrap_hash.o`, `Python/brc.o`, `Python/ceval.o`, `Python/ceval_gil.o`, `Python/codecs.o`, `Python/compile.o`, `Python/context.o`, `Python/critical_section.o`, `Python/crossinterp.o`, `Python/dtoa.o`, `Python/dynamic_annotations.o`, `Python/dynload_shlib.o`, `Python/errors.o`, `Python/fileutils.o`, `Python/flowgraph.o`, `Python/formatter_unicode.o`, `Python/frame.o`, `Python/frozen.o`, `Python/frozen_modules/__hello__.h`, `Python/frozen_modules/__phello__.h`, `Python/frozen_modules/__phello__.ham.eggs.h`, `Python/frozen_modules/__phello__.ham.h`, `Python/frozen_modules/__phello__.spam.h`, `Python/frozen_modules/_collections_abc.h`, `Python/frozen_modules/_sitebuiltins.h`, `Python/frozen_modules/abc.h`, `Python/frozen_modules/codecs.h`, `Python/frozen_modules/frozen_only.h`, `Python/frozen_modules/genericpath.h`, `Python/frozen_modules/getpath.h`, `Python/frozen_modules/importlib._bootstrap.h`, `Python/frozen_modules/importlib._bootstrap_external.h`, `Python/frozen_modules/importlib.machinery.h`, `Python/frozen_modules/importlib.util.h`, `Python/frozen_modules/io.h`, `Python/frozen_modules/ntpath.h`, `Python/frozen_modules/os.h`, `Python/frozen_modules/posixpath.h`, `Python/frozen_modules/runpy.h`, `Python/frozen_modules/site.h`, `Python/frozen_modules/stat.h`, `Python/frozen_modules/zipimport.h`, `Python/frozenmain.o`, `Python/future.o`, `Python/gc.o`, `Python/gc_free_threading.o`, `Python/gc_gil.o`, `Python/getargs.o`, `Python/getcompiler.o`, `Python/getcopyright.o`, `Python/getopt.o`, `Python/getplatform.o`, `Python/getversion.o`, `Python/hamt.o`, `Python/hashtable.o`, `Python/import.o`, `Python/importdl.o`, `Python/initconfig.o`, `Python/instruction_sequence.o`, `Python/instrumentation.o`, `Python/interpconfig.o`, `Python/intrinsics.o`, `Python/jit.o`, `Python/legacy_tracing.o`, `Python/lock.o`, `Python/marshal.o`, `Python/modsupport.o`, `Python/mysnprintf.o`, `Python/mystrtoul.o`, `Python/object_stack.o`, `Python/optimizer.o`, `Python/optimizer_analysis.o`, `Python/optimizer_symbols.o`, `Python/parking_lot.o`, `Python/pathconfig.o`, `Python/perf_jit_trampoline.o`, `Python/perf_trampoline.o`, `Python/preconfig.o`, `Python/pyarena.o`, `Python/pyctype.o`, `Python/pyfpe.o`, `Python/pyhash.o`, `Python/pylifecycle.o`, `Python/pymath.o`, `Python/pystate.o`, `Python/pystrcmp.o`, `Python/pystrhex.o`, `Python/pystrtod.o`, `Python/pythonrun.o`, `Python/pytime.o`, `Python/qsbr.o`, `Python/specialize.o`, `Python/structmember.o`, `Python/suggestions.o`, `Python/symtable.o`, `Python/sysmodule.o`, `Python/thread.o`, `Python/traceback.o`, `Python/tracemalloc.o`, `_bootstrap_python`, `build/lib.linux-x86_64-3.13/__pycache__/_sysconfigdata__linux_x86_64-linux-gnu.cpython-313.pyc`, `build/lib.linux-x86_64-3.13/_asyncio.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_bisect.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_blake2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_bz2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_cn.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_hk.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_iso2022.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_jp.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_kr.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_tw.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_contextvars.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_csv.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_ctypes.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_ctypes_test.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_curses.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_curses_panel.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_datetime.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_decimal.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_elementtree.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_hashlib.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_heapq.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpchannels.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpqueues.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpreters.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_json.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_lsprof.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_lzma.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_md5.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_multibytecodec.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_multiprocessing.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_opcode.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_pickle.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_posixshmem.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_posixsubprocess.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_queue.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_random.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha1.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha3.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_socket.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sqlite3.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_statistics.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_struct.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sysconfigdata__linux_x86_64-linux-gnu.py`, `build/lib.linux-x86_64-3.13/_testbuffer.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testclinic.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testclinic_limited.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testexternalinspection.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testimportmultiple.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testinternalcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testlimitedcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testmultiphase.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testsinglephase.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_uuid.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_xxtestfuzz.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_zoneinfo.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/array.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/binascii.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/cmath.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/fcntl.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/grp.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/math.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/mmap.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/pyexpat.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/readline.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/resource.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/select.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/syslog.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/termios.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/unicodedata.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxlimited.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxlimited_35.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxsubtype.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/zlib.cpython-313-x86_64-linux-gnu.so`, `build/scripts-3.13/idle3.13`, `build/scripts-3.13/pydoc3.13`, `config.log`, `config.status`, `libpython3.13.a`, `platform`, `pybuilddir.txt`, `pyconfig.h`, `python`, `python-config`, `python-config.py`, `python-gdb.py`.
2. Listed in `## Git Add Paths` but not actually changed: `None`.

## Refinement Pass 1

Subject: Diagnose supervisord wait/poll trace as not a CPython defect

## Commit Message
No source change is proposed. The collected signal is from `supervisord` running under Python: it checks for exited child processes with `wait4(..., WNOHANG)` and then sleeps in `poll()` for about one second. That evidence does not identify a CPython runtime loop to patch upstream.

## Evidence Confidence
observed

## Issue Connection
Fixer observed high aggregate CPU attributed to `python3.13`, but the sampled command line was `/usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf`. The `/proc` evidence shows the process named `supervisord`, state `S (sleeping)`, with `wchan` in `poll_schedule_timeout`; the strace excerpt shows repeated `wait4(-1, ..., WNOHANG) = -1 ECHILD` followed by `poll(..., 1000) = 0` after about one second.

The cautious code-level inference is that this is supervisord’s application event loop checking for child exits and then blocking with a one-second timeout, not a tight loop in CPython. The unresolved native backtrace does not provide a reliable CPython fault location. I kept the planned no-patch diagnosis and made no source change.

I addressed the review finding by removing the generated build artifacts from the prior validation run, so `## Git Add Paths` now matches the clean workspace. I rechecked CPython’s contribution/build guidance in `README.rst`, Debian source notes in `debian/README.source`, and the nearby wait/poll implementations. Relevant local conventions remain the syscall wrappers in `Modules/posixmodule.c` and `Modules/selectmodule.c`, which release the GIL around blocking syscalls, retry on `EINTR`, check `PyErr_CheckSignals()`, and report errors through local helpers. No relevant supervisord-specific helper exists in this repository.

The expected effect of this no-patch diagnosis is to avoid sending an upstream CPython change for evidence that currently points at application-level supervisord behavior or profiler attribution, and to redirect follow-up toward supervisord/config evidence or a stronger Python-level reproducer.

## Git Add Paths
None

## Validation
Reviewed inputs: `plan-output.txt`, `patch-output.txt`, `review-1-output.txt`, and `evidence.json`.

Addressed review drift:

```sh
make distclean
git status --short
```

Result: generated validation artifacts were removed; `git status --short` is clean.

Project-level validation from the prior authoring pass:

```sh
./configure && make
```

Result: exit code 0. The build completed, but reported optional module issues: `_ssl` was built then removed because importing it failed with `undefined symbol: TLSv1_method`; `_dbm`, `_gdbm`, and `_tkinter` were missing.

Bounded independent signal check from the prior authoring pass:

```sh
./python - <<'PY'
import os, select, time
start = time.monotonic()
try:
    os.waitpid(-1, os.WNOHANG)
except ChildProcessError as exc:
    wait_result = type(exc).__name__
else:
    wait_result = 'no-error'
events = select.poll().poll(1000)
elapsed = time.monotonic() - start
print(f'wait={wait_result} events={events!r} elapsed={elapsed:.3f}')
PY
```

Result: `wait=ChildProcessError events=[] elapsed=1.001`, which shows the wait/no-child plus 1000 ms poll pattern is bounded sleeping, not a reproduced busy loop.

Attempted syscall-level smoke validation with `strace -qq -tt -T -e trace=wait4,poll ./python ...`, but ptrace is blocked in this sandbox: `PTRACE_TRACEME: Operation not permitted` and `ptrace(PTRACE_SEIZE, 5): Operation not permitted`. The original failure signal was therefore not independently reproduced.

## Review Pass 2

RESULT: ok

The workspace is clean (`git status --short` and `git diff --name-status` show no changed paths), so `## Git Add Paths: None` is now synchronized with the actual patch state.

The latest response is a no-patch diagnosis, not a source patch. It keeps evidence confidence at `observed`, avoids claiming local reproduction, explains the Fixer-collected `/proc` and strace signal without inventing a new failure, and connects the evidence to the decision not to patch CPython. It also names the relevant CPython wait/poll conventions and documents the validation limits, including the ptrace blocker for `strace`.

diagnosis-only report

report

python3.13 likely remains stuck in a busy-poll loop. A diagnosis report and patch proposal were created locally.

state: readycreated: 2026-05-18 20:37 UTCvalidation: ready
Published session

Prompt

## Plan Pass

You are planning a fixer patch before any edits happen.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. The original pre-edit snapshot is available at `./source` if you need to inspect it. For interpreter processes, plan from the script/application entrypoint evidence first and include the runtime only as a second investigation target unless the evidence proves a runtime bug.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround. Inspect the relevant code, nearby callers, project contribution docs, and local helper/compat APIs, but do not edit files in this pass.

Return a short markdown plan with these exact sections:

## Problem
## Evidence Confidence
## Proposed Subject
## Patch Plan
## Risks
## Validation

Classify `## Evidence Confidence` as exactly one of `reproduced`, `observed`, or `inferred`. Use `inferred` only for a no-patch diagnosis/report plan unless you can name the extra evidence you will collect before editing; inferred source patches are blocked by Fixer because they are not pull-request-ready. For `observed` source-patch plans, plan to say in the final `## Issue Connection` that the failure was observed by Fixer and not independently reproduced. If the plan touches authentication, authorization, credentials, cryptography, sandboxing, permissions, or timing/throttling behavior, treat it as security-sensitive: do not plan a source patch unless validation can reproduce the behavior and analyze the security impact; otherwise plan a no-patch diagnosis/report. The plan must explain how the proposed code change addresses the observed issue evidence, call out any prior Fixer patch that should be improved or replaced, reject awkward control flow such as avoidable `goto` if there is a cleaner bounded alternative, name any local helper APIs or maintainer conventions the patch should follow, and keep the intended maintainer-facing explanation clear enough that someone unfamiliar with the local complaint wording can still follow the fix. In `## Validation`, name the reproducible configure/build/test entrypoint you will try from the workspace root before any focused leaf compile or smoke check, and include one bounded independent reproduction attempt for the collected failure signal when it is safe and cheap. Do not plan to claim `reproduced` unless that reproduction command or test can actually show the failure.

## Patch Pass

You are working on a bounded fixer proposal.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. Produce the smallest reasonable patch for the target repository, keep the change upstreamable, prefer the clearest control flow available, and do not keep avoidable `goto` when a simpler structure would read better. Before introducing new file, process, allocation, locking, networking, or platform APIs, inspect nearby code and project contribution docs for existing helpers or compatibility wrappers and use those local patterns unless you can explain why they do not fit. Validate from a reproducible workspace-root entrypoint before falling back to focused leaf commands; if a build or test cannot run, report the exact command, the exact blocker, and any narrower check you ran instead. During validation, also try one bounded independent reproduction of the collected failure signal when it is safe and cheap, such as a failing test, smoke command, perf/strace comparison, or before/after runtime check. Only use `reproduced` if that command or test actually reproduced the failure; otherwise keep `observed` and report the reproduction blocker. The final explanation must connect the observed issue evidence to the actual code change, not just paraphrase the diff. Write like a maintainer is going to read the patch mail cold: explain the bug in plain language, define subsystem-specific jargon the first time you need it, and make the causal story obvious. Explicitly classify evidence confidence as `reproduced`, `observed`, or `inferred`: `reproduced` means you reproduced the failure locally; `observed` means Fixer has direct crash/log/trace evidence but you did not independently reproduce it; `inferred` means the source patch is not pull-request-ready, so do not leave a source diff unless you first gather stronger observed/reproduced evidence; otherwise return a no-patch diagnosis/report. For any source-changing `observed` patch, say explicitly in `## Issue Connection` that the failure was observed by Fixer and not independently reproduced. Security-sensitive areas such as authentication, authorization, credentials, cryptography, sandboxing, permissions, and timing/throttling behavior need reproduced evidence plus explicit security-impact analysis before leaving a source diff; otherwise return a no-patch diagnosis/report for human review. If you introduce non-obvious state translation, index remapping, or backend split logic, add a short source comment that explains the invariant being preserved.

Start by explaining the likely root cause from the collected perf, strace, and /proc evidence. If you cannot land a safe patch, leave a diagnosis that is strong enough for an upstream bug report.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround. 

Keep the change narrowly scoped and summarize validation clearly.

In every authoring pass, your final response must start with `Subject: <single-line git commit subject>` and then include these markdown sections exactly:

## Commit Message
A short upstream-friendly explanation of what changed and why. Write it in plain language that a maintainer can follow without local complaint context. If you use subsystem jargon, define it immediately.

## Evidence Confidence
Exactly one word: `reproduced`, `observed`, or `inferred`. Use `reproduced` only when you reproduced the failure locally with a command or test, and include that command/test in `## Validation`. Use `observed` when Fixer has direct crash/log/trace evidence but you did not independently reproduce it. If `## Git Add Paths` lists source files for an `observed` patch, `## Issue Connection` must explicitly say the failure was observed by Fixer and not independently reproduced. Security-sensitive source changes touching authentication, authorization, credentials, cryptography, sandboxing, permissions, or timing/throttling behavior require reproduced evidence and explicit security-impact analysis; otherwise list `None` under `## Git Add Paths` and write a no-patch diagnosis/report. Use `inferred` for profiler/strace/indirect evidence; inferred responses may be no-patch diagnoses or reports, but inferred source patches are not pull-request-ready until stronger evidence is gathered.

## Issue Connection
Write this as maintainer-facing patch mail, not as local Fixer notes. Cover four things explicitly in readable sentences: the user-visible symptom or the exact collected signal, the code-level cause or the cautious inference from evidence, the specific change you made, and the expected effect. Do not invent a reproducer, command line, crash, or user-visible failure that is not present in the evidence bundle. If the evidence is direct-but-not-reproduced, say it was observed by Fixer and not independently reproduced. If the evidence is indirect and you did not gather stronger evidence, do not leave a source diff; write a no-patch diagnosis/report instead. Include an explicit effect sentence such as `The expected effect is ...`, `This should reduce ...`, or `This prevents ...` for source patches. If the logic is non-obvious in code, mention that you added a short explanatory comment.

## Git Add Paths
List the repo-relative paths that belong in the final patch, one per line. Use `None` only when you intentionally made no source changes. Include intentionally new files, and do not list generated build artifacts.

## Validation
List the checks you ran, or say clearly that you could not run them. Include the independent reproduction command/test and result when `## Evidence Confidence` is `reproduced`; if reproduction was attempted but blocked, name the exact blocker and keep confidence at `observed` or `inferred`.

Before editing, read the plan at `./plan-output.txt` and follow it unless the code proves part of it wrong. If you change course, say so explicitly in the final write-up instead of silently drifting from the plan.

## Review Pass 1 (local metadata check)

Local metadata consistency check

## Refinement Pass 1

You are refining a fixer patch after an explicit code review.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. Read the latest author response at `./patch-output.txt`. Read the review report at `./review-1-output.txt`. This is refinement round 1. The original pre-edit snapshot is available at `./source` if you need to compare the current patch against it. Re-read the planning pass at `./plan-output.txt` before editing. The workspace currently changes these repo-relative paths: Lib/__pycache__/__future__.cpython-313.pyc, Lib/__pycache__/_collections_abc.cpython-313.pyc, Lib/__pycache__/_colorize.cpython-313.pyc, Lib/__pycache__/_compat_pickle.cpython-313.pyc, Lib/__pycache__/_compression.cpython-313.pyc, Lib/__pycache__/_opcode_metadata.cpython-313.pyc, Lib/__pycache__/_sitebuiltins.cpython-313.pyc, Lib/__pycache__/_weakrefset.cpython-313.pyc, Lib/__pycache__/abc.cpython-313.pyc, Lib/__pycache__/argparse.cpython-313.pyc, Lib/__pycache__/ast.cpython-313.pyc, Lib/__pycache__/bz2.cpython-313.pyc, Lib/__pycache__/codecs.cpython-313.pyc, Lib/__pycache__/contextlib.cpython-313.pyc, Lib/__pycache__/contextvars.cpython-313.pyc, Lib/__pycache__/copy.cpython-313.pyc, Lib/__pycache__/copyreg.cpython-313.pyc, Lib/__pycache__/datetime.cpython-313.pyc, Lib/__pycache__/dis.cpython-313.pyc, Lib/__pycache__/enum.cpython-313.pyc, Lib/__pycache__/fnmatch.cpython-313.pyc, Lib/__pycache__/functools.cpython-313.pyc, Lib/__pycache__/genericpath.cpython-313.pyc, Lib/__pycache__/gettext.cpython-313.pyc, Lib/__pycache__/glob.cpython-313.pyc, Lib/__pycache__/heapq.cpython-313.pyc, Lib/__pycache__/inspect.cpython-313.pyc, Lib/__pycache__/io.cpython-313.pyc, Lib/__pycache__/keyword.cpython-313.pyc, Lib/__pycache__/linecache.cpython-313.pyc, Lib/__pycache__/locale.cpython-313.pyc, Lib/__pycache__/lzma.cpython-313.pyc, Lib/__pycache__/numbers.cpython-313.pyc, Lib/__pycache__/opcode.cpython-313.pyc, Lib/__pycache__/operator.cpython-313.pyc, Lib/__pycache__/os.cpython-313.pyc, Lib/__pycache__/posixpath.cpython-313.pyc, Lib/__pycache__/reprlib.cpython-313.pyc, Lib/__pycache__/selectors.cpython-313.pyc, Lib/__pycache__/shutil.cpython-313.pyc, Lib/__pycache__/signal.cpython-313.pyc, Lib/__pycache__/site.cpython-313.pyc, Lib/__pycache__/socket.cpython-313.pyc, Lib/__pycache__/ssl.cpython-313.pyc, Lib/__pycache__/stat.cpython-313.pyc, Lib/__pycache__/string.cpython-313.pyc, Lib/__pycache__/struct.cpython-313.pyc, Lib/__pycache__/subprocess.cpython-313.pyc, Lib/__pycache__/textwrap.cpython-313.pyc, Lib/__pycache__/threading.cpython-313.pyc, Lib/__pycache__/token.cpython-313.pyc, Lib/__pycache__/tokenize.cpython-313.pyc, Lib/__pycache__/traceback.cpython-313.pyc, Lib/__pycache__/types.cpython-313.pyc, Lib/__pycache__/typing.cpython-313.pyc, Lib/__pycache__/warnings.cpython-313.pyc, Lib/__pycache__/weakref.cpython-313.pyc, Lib/asyncio/__pycache__/__init__.cpython-313.pyc, Lib/asyncio/__pycache__/base_events.cpython-313.pyc, Lib/asyncio/__pycache__/base_futures.cpython-313.pyc, Lib/asyncio/__pycache__/base_subprocess.cpython-313.pyc, Lib/asyncio/__pycache__/base_tasks.cpython-313.pyc, Lib/asyncio/__pycache__/constants.cpython-313.pyc, Lib/asyncio/__pycache__/coroutines.cpython-313.pyc, Lib/asyncio/__pycache__/events.cpython-313.pyc, Lib/asyncio/__pycache__/exceptions.cpython-313.pyc, Lib/asyncio/__pycache__/format_helpers.cpython-313.pyc, Lib/asyncio/__pycache__/futures.cpython-313.pyc, Lib/asyncio/__pycache__/locks.cpython-313.pyc, Lib/asyncio/__pycache__/log.cpython-313.pyc, Lib/asyncio/__pycache__/mixins.cpython-313.pyc, Lib/asyncio/__pycache__/protocols.cpython-313.pyc, Lib/asyncio/__pycache__/queues.cpython-313.pyc, Lib/asyncio/__pycache__/runners.cpython-313.pyc, Lib/asyncio/__pycache__/selector_events.cpython-313.pyc, Lib/asyncio/__pycache__/sslproto.cpython-313.pyc, Lib/asyncio/__pycache__/staggered.cpython-313.pyc, Lib/asyncio/__pycache__/streams.cpython-313.pyc, Lib/asyncio/__pycache__/subprocess.cpython-313.pyc, Lib/asyncio/__pycache__/taskgroups.cpython-313.pyc, Lib/asyncio/__pycache__/tasks.cpython-313.pyc, Lib/asyncio/__pycache__/threads.cpython-313.pyc, Lib/asyncio/__pycache__/timeouts.cpython-313.pyc, Lib/asyncio/__pycache__/transports.cpython-313.pyc, Lib/asyncio/__pycache__/trsock.cpython-313.pyc, Lib/asyncio/__pycache__/unix_events.cpython-313.pyc, Lib/collections/__pycache__/__init__.cpython-313.pyc, Lib/concurrent/__pycache__/__init__.cpython-313.pyc, Lib/concurrent/futures/__pycache__/__init__.cpython-313.pyc, Lib/concurrent/futures/__pycache__/_base.cpython-313.pyc, Lib/encodings/__pycache__/__init__.cpython-313.pyc, Lib/encodings/__pycache__/aliases.cpython-313.pyc, Lib/encodings/__pycache__/ascii.cpython-313.pyc, Lib/encodings/__pycache__/utf_8.cpython-313.pyc, Lib/importlib/__pycache__/__init__.cpython-313.pyc, Lib/importlib/__pycache__/_abc.cpython-313.pyc, Lib/logging/__pycache__/__init__.cpython-313.pyc, Lib/pathlib/__pycache__/__init__.cpython-313.pyc, Lib/pathlib/__pycache__/_abc.cpython-313.pyc, Lib/pathlib/__pycache__/_local.cpython-313.pyc, Lib/re/__pycache__/__init__.cpython-313.pyc, Lib/re/__pycache__/_casefix.cpython-313.pyc, Lib/re/__pycache__/_compiler.cpython-313.pyc, Lib/re/__pycache__/_constants.cpyth

[truncated 29270 bytes]

Response

## Plan Pass

## Problem
Fixer attributed high CPU to `python3.13`, but the evidence is profiler/trace-only and points first at Python applications (`supervisord` in the bundle; another same-fingerprint raw capture shows `home-audio-mesh`) repeatedly waking from finite `poll()` timeouts. The CPython frames inspected are normal `select.poll()` execution, not a proven runtime busy loop.

## Evidence Confidence
observed

## Proposed Subject
No CPython source patch: diagnose the report as an application-level polling workload or insufficiently attributed profiler signal unless additional evidence proves a CPython runtime defect.

## Patch Plan
Do not edit files in this pass. Treat this as an upstream `python3.13` issue triage, not a Debian-local workaround.

The evidence shows blocking `poll()` calls with 500 ms or 1000 ms timeouts, and the inspected CPython path is `Lib/selectors.py` -> `Modules/selectmodule.c:select_poll_poll_impl()`. Local conventions/helpers found there include `math.ceil()` timeout rounding in `selectors`, `_PyTime_*` and `_PyDeadline_*` timeout handling, `Py_BEGIN_ALLOW_THREADS`, and EINTR retry logic. No relevant local helper was found that would justify changing process supervision, application event-loop policy, or generic libc calls in CPython.

If later evidence identifies a CPython bug, any patch should be narrowly in `Lib/selectors.py`, `Modules/selectmodule.c`, or the exact runtime subsystem implicated by a Python-level stack, using the existing timeout helpers and bounded structured control flow. Avoid awkward control flow such as avoidable `goto`; the existing loop already handles EINTR cleanly.

No prior Fixer patch was present to replace or improve.

## Risks
A source patch now would be speculative: changing `select.poll()` or `selectors` behavior could regress correct blocking semantics, timeout rounding, EINTR handling, or application compatibility.

The raw artifact paths embedded in the evidence bundle for the exact `2026-05-08` capture were not present locally, so the plan relies on the bundle summary plus available same-fingerprint raw captures.

## Validation
Before any future source patch, try the project-level entrypoint from the workspace root:

`./configure && make`

If that fails because dependencies or generated files are missing, record the exact failure and then run the narrowest relevant check.

Bounded independent reproduction attempt: after a build, run a small `select.poll()`/`selectors.PollSelector.select(0.5)` smoke script under `strace -tt -T -e poll` to verify CPython blocks for the requested timeout rather than spinning. This can validate runtime behavior, but it will not reproduce the reported failure unless it shows rapid zero-timeout polling or unexpected wakeups.

## Patch Pass

Subject: Diagnose python3.13 poll-loop attribution

## Commit Message
No source change. The collected signal shows Python processes repeatedly waking from finite `poll()` timeouts, but the inspected CPython `select.poll()` path already uses the local timeout helpers and blocks in the platform `poll()` call. A CPython source patch would be speculative without a reproducer or a Python-level stack showing incorrect runtime behavior.

## Evidence Confidence
inferred

## Issue Connection
Fixer collected perf, strace, and `/proc` evidence for `/usr/bin/python3.13`: a `supervisord` process had repeated `wait4(..., WNOHANG) = ECHILD` calls followed by `poll(..., 1000)` calls that timed out after about one second, while `/proc` reported the thread sleeping in `poll_schedule_timeout`. The likely root cause is an application-level event loop or supervisor polling pattern being attributed to the interpreter process, not a proven CPython runtime busy loop.

I followed the saved plan and did not change course. I inspected CPython’s contribution/build guidance in `README.rst` and the relevant local subsystem. `Lib/selectors.py` rounds positive selector timeouts up to milliseconds, and `Modules/selectmodule.c` uses `_PyTime_*`, `_PyDeadline_*`, `Py_BEGIN_ALLOW_THREADS`, and EINTR retry logic around the platform `poll()` call. No relevant local helper was missing, and no source change was made.

The expected effect is no runtime behavior change: this leaves a no-patch diagnosis instead of an upstream-unready diff that could alter correct blocking, timeout, or EINTR semantics.

## Git Add Paths
None

## Validation
`./configure && make` from the workspace root completed with exit code 0 and produced `./python`. The build reported optional module issues: `_ssl` built but failed to import because of undefined symbol `TLSv1_method`; `_dbm`, `_gdbm`, and `_tkinter` were missing.

Independent syscall reproduction attempt:
`strace -tt -T -e poll ./python -c '...'`
blocked in this sandbox with `PTRACE_TRACEME: Operation not permitted` and `ptrace(PTRACE_SEIZE, 4): Operation not permitted`.

Narrow smoke check without ptrace:
`/usr/bin/time -f 'elapsed=%e cpu=%P' ./python -c '...'`
returned `ready=[] elapsed=0.501`, with process `elapsed=0.52 cpu=1%`. This did not reproduce a busy loop.

`git diff --stat` showed no tracked source changes.

## Review Pass 1 (local metadata check)

RESULT: fix-needed

## Findings
1. Patch metadata drift: the workspace currently changes `Lib/__pycache__/__future__.cpython-313.pyc`, `Lib/__pycache__/_collections_abc.cpython-313.pyc`, `Lib/__pycache__/_colorize.cpython-313.pyc`, `Lib/__pycache__/_compat_pickle.cpython-313.pyc`, `Lib/__pycache__/_compression.cpython-313.pyc`, `Lib/__pycache__/_opcode_metadata.cpython-313.pyc`, `Lib/__pycache__/_sitebuiltins.cpython-313.pyc`, `Lib/__pycache__/_weakrefset.cpython-313.pyc`, `Lib/__pycache__/abc.cpython-313.pyc`, `Lib/__pycache__/argparse.cpython-313.pyc`, `Lib/__pycache__/ast.cpython-313.pyc`, `Lib/__pycache__/bz2.cpython-313.pyc`, `Lib/__pycache__/codecs.cpython-313.pyc`, `Lib/__pycache__/contextlib.cpython-313.pyc`, `Lib/__pycache__/contextvars.cpython-313.pyc`, `Lib/__pycache__/copy.cpython-313.pyc`, `Lib/__pycache__/copyreg.cpython-313.pyc`, `Lib/__pycache__/datetime.cpython-313.pyc`, `Lib/__pycache__/dis.cpython-313.pyc`, `Lib/__pycache__/enum.cpython-313.pyc`, `Lib/__pycache__/fnmatch.cpython-313.pyc`, `Lib/__pycache__/functools.cpython-313.pyc`, `Lib/__pycache__/genericpath.cpython-313.pyc`, `Lib/__pycache__/gettext.cpython-313.pyc`, `Lib/__pycache__/glob.cpython-313.pyc`, `Lib/__pycache__/heapq.cpython-313.pyc`, `Lib/__pycache__/inspect.cpython-313.pyc`, `Lib/__pycache__/io.cpython-313.pyc`, `Lib/__pycache__/keyword.cpython-313.pyc`, `Lib/__pycache__/linecache.cpython-313.pyc`, `Lib/__pycache__/locale.cpython-313.pyc`, `Lib/__pycache__/lzma.cpython-313.pyc`, `Lib/__pycache__/numbers.cpython-313.pyc`, `Lib/__pycache__/opcode.cpython-313.pyc`, `Lib/__pycache__/operator.cpython-313.pyc`, `Lib/__pycache__/os.cpython-313.pyc`, `Lib/__pycache__/posixpath.cpython-313.pyc`, `Lib/__pycache__/reprlib.cpython-313.pyc`, `Lib/__pycache__/selectors.cpython-313.pyc`, `Lib/__pycache__/shutil.cpython-313.pyc`, `Lib/__pycache__/signal.cpython-313.pyc`, `Lib/__pycache__/site.cpython-313.pyc`, `Lib/__pycache__/socket.cpython-313.pyc`, `Lib/__pycache__/ssl.cpython-313.pyc`, `Lib/__pycache__/stat.cpython-313.pyc`, `Lib/__pycache__/string.cpython-313.pyc`, `Lib/__pycache__/struct.cpython-313.pyc`, `Lib/__pycache__/subprocess.cpython-313.pyc`, `Lib/__pycache__/textwrap.cpython-313.pyc`, `Lib/__pycache__/threading.cpython-313.pyc`, `Lib/__pycache__/token.cpython-313.pyc`, `Lib/__pycache__/tokenize.cpython-313.pyc`, `Lib/__pycache__/traceback.cpython-313.pyc`, `Lib/__pycache__/types.cpython-313.pyc`, `Lib/__pycache__/typing.cpython-313.pyc`, `Lib/__pycache__/warnings.cpython-313.pyc`, `Lib/__pycache__/weakref.cpython-313.pyc`, `Lib/asyncio/__pycache__/__init__.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_events.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_futures.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_subprocess.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_tasks.cpython-313.pyc`, `Lib/asyncio/__pycache__/constants.cpython-313.pyc`, `Lib/asyncio/__pycache__/coroutines.cpython-313.pyc`, `Lib/asyncio/__pycache__/events.cpython-313.pyc`, `Lib/asyncio/__pycache__/exceptions.cpython-313.pyc`, `Lib/asyncio/__pycache__/format_helpers.cpython-313.pyc`, `Lib/asyncio/__pycache__/futures.cpython-313.pyc`, `Lib/asyncio/__pycache__/locks.cpython-313.pyc`, `Lib/asyncio/__pycache__/log.cpython-313.pyc`, `Lib/asyncio/__pycache__/mixins.cpython-313.pyc`, `Lib/asyncio/__pycache__/protocols.cpython-313.pyc`, `Lib/asyncio/__pycache__/queues.cpython-313.pyc`, `Lib/asyncio/__pycache__/runners.cpython-313.pyc`, `Lib/asyncio/__pycache__/selector_events.cpython-313.pyc`, `Lib/asyncio/__pycache__/sslproto.cpython-313.pyc`, `Lib/asyncio/__pycache__/staggered.cpython-313.pyc`, `Lib/asyncio/__pycache__/streams.cpython-313.pyc`, `Lib/asyncio/__pycache__/subprocess.cpython-313.pyc`, `Lib/asyncio/__pycache__/taskgroups.cpython-313.pyc`, `Lib/asyncio/__pycache__/tasks.cpython-313.pyc`, `Lib/asyncio/__pycache__/threads.cpython-313.pyc`, `Lib/asyncio/__pycache__/timeouts.cpython-313.pyc`, `Lib/asyncio/__pycache__/transports.cpython-313.pyc`, `Lib/asyncio/__pycache__/trsock.cpython-313.pyc`, `Lib/asyncio/__pycache__/unix_events.cpython-313.pyc`, `Lib/collections/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/futures/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/futures/__pycache__/_base.cpython-313.pyc`, `Lib/encodings/__pycache__/__init__.cpython-313.pyc`, `Lib/encodings/__pycache__/aliases.cpython-313.pyc`, `Lib/encodings/__pycache__/ascii.cpython-313.pyc`, `Lib/encodings/__pycache__/utf_8.cpython-313.pyc`, `Lib/importlib/__pycache__/__init__.cpython-313.pyc`, `Lib/importlib/__pycache__/_abc.cpython-313.pyc`, `Lib/logging/__pycache__/__init__.cpython-313.pyc`, `Lib/pathlib/__pycache__/__init__.cpython-313.pyc`, `Lib/pathlib/__pycache__/_abc.cpython-313.pyc`, `Lib/pathlib/__pycache__/_local.cpython-313.pyc`, `Lib/re/__pycache__/__init__.cpython-313.pyc`, `Lib/re/__pycache__/_casefix.cpython-313.pyc`, `Lib/re/__pycache__/_compiler.cpython-313.pyc`, `Lib/re/__pycache__/_constants.cpython-313.pyc`, `Lib/re/__pycache__/_parser.cpython-313.pyc`, `Lib/sysconfig/__pycache__/__init__.cpython-313.pyc`, `Lib/sysconfig/__pycache__/__main__.cpython-313.pyc`, `Lib/xml/__pycache__/__init__.cpython-313.pyc`, `Lib/xml/etree/__pycache__/ElementPath.cpython-313.pyc`, `Lib/xml/etree/__pycache__/__init__.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/__init__.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/_common.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/_tzpath.cpython-313.pyc`, `Makefile`, `Makefile.pre`, `Misc/python-config.sh`, `Misc/python-embed.pc`, `Misc/python.pc`, `Modules/Setup.bootstrap`, `Modules/Setup.local`, `Modules/Setup.stdlib`, `Modules/_abc.o`, `Modules/_asyncio.cpython-313-x86_64-linux-gnu.so`, `Modules/_asynciomodule.o`, `Modules/_bisect.cpython-313-x86_64-linux-gnu.so`, `Modules/_bisectmodule.o`, `Modules/_blake2.cpython-313-x86_64-linux-gnu.so`, `Modules/_blake2/blake2b_impl.o`, `Modules/_blake2/blake2module.o`, `Modules/_blake2/blake2s_impl.o`, `Modules/_bz2.cpython-313-x86_64-linux-gnu.so`, `Modules/_bz2module.o`, `Modules/_codecs_cn.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_hk.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_iso2022.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_jp.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_kr.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_tw.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecsmodule.o`, `Modules/_collectionsmodule.o`, `Modules/_contextvars.cpython-313-x86_64-linux-gnu.so`, `Modules/_contextvarsmodule.o`, `Modules/_csv.cpython-313-x86_64-linux-gnu.so`, `Modules/_csv.o`, `Modules/_ctypes.cpython-313-x86_64-linux-gnu.so`, `Modules/_ctypes/_ctypes.o`, `Modules/_ctypes/_ctypes_test.o`, `Modules/_ctypes/callbacks.o`, `Modules/_ctypes/callproc.o`, `Modules/_ctypes/cfield.o`, `Modules/_ctypes/stgdict.o`, `Modules/_ctypes_test.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses_panel.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses_panel.o`, `Modules/_cursesmodule.o`, `Modules/_datetime.cpython-313-x86_64-linux-gnu.so`, `Modules/_datetimemodule.o`, `Modules/_decimal.cpython-313-x86_64-linux-gnu.so`, `Modules/_decimal/_decimal.o`, `Modules/_decimal/libmpdec/basearith.o`, `Modules/_decimal/libmpdec/constants.o`, `Modules/_decimal/libmpdec/context.o`, `Modules/_decimal/libmpdec/convolute.o`, `Modules/_decimal/libmpdec/crt.o`, `Modules/_decimal/libmpdec/difradix2.o`, `Modules/_decimal/libmpdec/fnt.o`, `Modules/_decimal/libmpdec/fourstep.o`, `Modules/_decimal/libmpdec/io.o`, `Modules/_decimal/libmpdec/libmpdec.a`, `Modules/_decimal/libmpdec/mpalloc.o`, `Modules/_decimal/libmpdec/mpdecimal.o`, `Modules/_decimal/libmpdec/numbertheory.o`, `Modules/_decimal/libmpdec/sixstep.o`, `Modules/_decimal/libmpdec/transpose.o`, `Modules/_elementtree.cpython-313-x86_64-linux-gnu.so`, `Modules/_elementtree.o`, `Modules/_functoolsmodule.o`, `Modules/_hacl/Hacl_Hash_MD5.o`, `Modules/_hacl/Hacl_Hash_SHA1.o`, `Modules/_hacl/Hacl_Hash_SHA2.o`, `Modules/_hacl/Hacl_Hash_SHA3.o`, `Modules/_hacl/libHacl_Hash_SHA2.a`, `Modules/_hashlib.cpython-313-x86_64-linux-gnu.so`, `Modules/_hashopenssl.o`, `Modules/_heapq.cpython-313-x86_64-linux-gnu.so`, `Modules/_heapqmodule.o`, `Modules/_interpchannels.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpchannelsmodule.o`, `Modules/_interpqueues.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpqueuesmodule.o`, `Modules/_interpreters.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpretersmodule.o`, `Modules/_io/_iomodule.o`, `Modules/_io/bufferedio.o`, `Modules/_io/bytesio.o`, `Modules/_io/fileio.o`, `Modules/_io/iobase.o`, `Modules/_io/stringio.o`, `Modules/_io/textio.o`, `Modules/_json.cpython-313-x86_64-linux-gnu.so`, `Modules/_json.o`, `Modules/_localemodule.o`, `Modules/_lsprof.cpython-313-x86_64-linux-gnu.so`, `Modules/_lsprof.o`, `Modules/_lzma.cpython-313-x86_64-linux-gnu.so`, `Modules/_lzmamodule.o`, `Modules/_md5.cpython-313-x86_64-linux-gnu.so`, `Modules/_multibytecodec.cpython-313-x86_64-linux-gnu.so`, `Modules/_multiprocessing.cpython-313-x86_64-linux-gnu.so`, `Modules/_multiprocessing/multiprocessing.o`, `Modules/_multiprocessing/posixshmem.o`, `Modules/_multiprocessing/semaphore.o`, `Modules/_opcode.cpython-313-x86_64-linux-gnu.so`, `Modules/_opcode.o`, `Modules/_operator.o`, `Modules/_pickle.cpython-313-x86_64-linux-gnu.so`, `Modules/_pickle.o`, `Modules/_posixshmem.cpython-313-x86_64-linux-gnu.so`, `Modules/_posixsubprocess.cpython-313-x86_64-linux-gnu.so`, `Modules/_posixsubprocess.o`, `Modules/_queue.cpython-313-x86_64-linux-gnu.so`, `Modules/_queuemodule.o`, `Modules/_random.cpython-313-x86_64-linux-gnu.so`, `Modules/_randommodule.o`, `Modules/_sha1.cpython-313-x86_64-linux-gnu.so`, `Modules/_sha2.cpython-313-x86_64-linux-gnu.so`, `Modules/_sha3.cpython-313-x86_64-linux-gnu.so`, `Modules/_socket.cpython-313-x86_64-linux-gnu.so`, `Modules/_sqlite/blob.o`, `Modules/_sqlite/connection.o`, `Modules/_sqlite/cursor.o`, `Modules/_sqlite/microprotocols.o`, `Modules/_sqlite/module.o`, `Modules/_sqlite/prepare_protocol.o`, `Modules/_sqlite/row.o`, `Modules/_sqlite/statement.o`, `Modules/_sqlite/util.o`, `Modules/_sqlite3.cpython-313-x86_64-linux-gnu.so`, `Modules/_sre/sre.o`, `Modules/_ssl.o`, `Modules/_ssl_failed.cpython-313-x86_64-linux-gnu.so`, `Modules/_stat.o`, `Modules/_statistics.cpython-313-x86_64-linux-gnu.so`, `Modules/_statisticsmodule.o`, `Modules/_struct.cpython-313-x86_64-linux-gnu.so`, `Modules/_struct.o`, `Modules/_suggestions.o`, `Modules/_sysconfig.o`, `Modules/_testbuffer.cpython-313-x86_64-linux-gnu.so`, `Modules/_testbuffer.o`, `Modules/_testcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testcapi/abstract.o`, `Modules/_testcapi/buffer.o`, `Modules/_testcapi/bytes.o`, `Modules/_testcapi/code.o`, `Modules/_testcapi/codec.o`, `Modules/_testcapi/complex.o`, `Modules/_testcapi/datetime.o`, `Modules/_testcapi/dict.o`, `Modules/_testcapi/docstring.o`, `Modules/_testcapi/exceptions.o`, `Modules/_testcapi/file.o`, `Modules/_testcapi/float.o`, `Modules/_testcapi/gc.o`, `Modules/_testcapi/getargs.o`, `Modules/_testcapi/hash.o`, `Modules/_testcapi/heaptype.o`, `Modules/_testcapi/immortal.o`, `Modules/_testcapi/list.o`, `Modules/_testcapi/long.o`, `Modules/_testcapi/mem.o`, `Modules/_testcapi/monitoring.o`, `Modules/_testcapi/numbers.o`, `Modules/_testcapi/object.o`, `Modules/_testcapi/pyatomic.o`, `Modules/_testcapi/run.o`, `Modules/_testcapi/set.o`, `Modules/_testcapi/structmember.o`, `Modules/_testcapi/time.o`, `Modules/_testcapi/tuple.o`, `Modules/_testcapi/unicode.o`, `Modules/_testcapi/vectorcall.o`, `Modules/_testcapi/watchers.o`, `Modules/_testcapimodule.o`, `Modules/_testclinic.cpython-313-x86_64-linux-gnu.so`, `Modules/_testclinic.o`, `Modules/_testclinic_limited.cpython-313-x86_64-linux-gnu.so`, `Modules/_testclinic_limited.o`, `Modules/_testexternalinspection.cpython-313-x86_64-linux-gnu.so`, `Modules/_testexternalinspection.o`, `Modules/_testimportmultiple.cpython-313-x86_64-linux-gnu.so`, `Modules/_testimportmultiple.o`, `Modules/_testinternalcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testinternalcapi.o`, `Modules/_testinternalcapi/pytime.o`, `Modules/_testinternalcapi/set.o`, `Modules/_testinternalcapi/test_critical_sections.o`, `Modules/_testinternalcapi/test_lock.o`, `Modules/_testlimitedcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testlimitedcapi.o`, `Modules/_testlimitedcapi/abstract.o`, `Modules/_testlimitedcapi/bytearray.o`, `Modules/_testlimitedcapi/bytes.o`, `Modules/_testlimitedcapi/complex.o`, `Modules/_testlimitedcapi/dict.o`, `Modules/_testlimitedcapi/eval.o`, `Modules/_testlimitedcapi/file.o`, `Modules/_testlimitedcapi/float.o`, `Modules/_testlimitedcapi/heaptype_relative.o`, `Modules/_testlimitedcapi/import.o`, `Modules/_testlimitedcapi/list.o`, `Modules/_testlimitedcapi/long.o`, `Modules/_testlimitedcapi/object.o`, `Modules/_testlimitedcapi/pyos.o`, `Modules/_testlimitedcapi/set.o`, `Modules/_testlimitedcapi/sys.o`, `Modules/_testlimitedcapi/tuple.o`, `Modules/_testlimitedcapi/unicode.o`, `Modules/_testlimitedcapi/vectorcall_limited.o`, `Modules/_testmultiphase.cpython-313-x86_64-linux-gnu.so`, `Modules/_testmultiphase.o`, `Modules/_testsinglephase.cpython-313-x86_64-linux-gnu.so`, `Modules/_testsinglephase.o`, `Modules/_threadmodule.o`, `Modules/_tracemalloc.o`, `Modules/_typingmodule.o`, `Modules/_uuid.cpython-313-x86_64-linux-gnu.so`, `Modules/_uuidmodule.o`, `Modules/_weakref.o`, `Modules/_xxtestfuzz.cpython-313-x86_64-linux-gnu.so`, `Modules/_xxtestfuzz/_xxtestfuzz.o`, `Modules/_xxtestfuzz/fuzzer.o`, `Modules/_zoneinfo.cpython-313-x86_64-linux-gnu.so`, `Modules/_zoneinfo.o`, `Modules/array.cpython-313-x86_64-linux-gnu.so`, `Modules/arraymodule.o`, `Modules/atexitmodule.o`, `Modules/binascii.cpython-313-x86_64-linux-gnu.so`, `Modules/binascii.o`, `Modules/cjkcodecs/_codecs_cn.o`, `Modules/cjkcodecs/_codecs_hk.o`, `Modules/cjkcodecs/_codecs_iso2022.o`, `Modules/cjkcodecs/_codecs_jp.o`, `Modules/cjkcodecs/_codecs_kr.o`, `Modules/cjkcodecs/_codecs_tw.o`, `Modules/cjkcodecs/multibytecodec.o`, `Modules/cmath.cpython-313-x86_64-linux-gnu.so`, `Modules/cmathmodule.o`, `Modules/config.c`, `Modules/config.o`, `Modules/errnomodule.o`, `Modules/expat/libexpat.a`, `Modules/expat/xmlparse.o`, `Modules/expat/xmlrole.o`, `Modules/expat/xmltok.o`, `Modules/faulthandler.o`, `Modules/fcntl.cpython-313-x86_64-linux-gnu.so`, `Modules/fcntlmodule.o`, `Modules/gcmodule.o`, `Modules/getbuildinfo.o`, `Modules/getpath.o`, `Modules/getpath_noop.o`, `Modules/grp.cpython-313-x86_64-linux-gnu.so`, `Modules/grpmodule.o`, `Modules/itertoolsmodule.o`, `Modules/ld_so_aix`, `Modules/main.o`, `Modules/math.cpython-313-x86_64-linux-gnu.so`, `Modules/mathmodule.o`, `Modules/md5module.o`, `Modules/mmap.cpython-313-x86_64-linux-gnu.so`, `Modules/mmapmodule.o`, `Modules/posixmodule.o`, `Modules/pwdmodule.o`, `Modules/pyexpat.cpython-313-x86_64-linux-gnu.so`, `Modules/pyexpat.o`, `Modules/readline.cpython-313-x86_64-linux-gnu.so`, `Modules/readline.o`, `Modules/resource.cpython-313-x86_64-linux-gnu.so`, `Modules/resource.o`, `Modules/rotatingtree.o`, `Modules/select.cpython-313-x86_64-linux-gnu.so`, `Modules/selectmodule.o`, `Modules/sha1module.o`, `Modules/sha2module.o`, `Modules/sha3module.o`, `Modules/signalmodule.o`, `Modules/socketmodule.o`, `Modules/symtablemodule.o`, `Modules/syslog.cpython-313-x86_64-linux-gnu.so`, `Modules/syslogmodule.o`, `Modules/termios.cpython-313-x86_64-linux-gnu.so`, `Modules/termios.o`, `Modules/timemodule.o`, `Modules/unicodedata.cpython-313-x86_64-linux-gnu.so`, `Modules/unicodedata.o`, `Modules/xxlimited.cpython-313-x86_64-linux-gnu.so`, `Modules/xxlimited.o`, `Modules/xxlimited_35.cpython-313-x86_64-linux-gnu.so`, `Modules/xxlimited_35.o`, `Modules/xxsubtype.cpython-313-x86_64-linux-gnu.so`, `Modules/xxsubtype.o`, `Modules/zlib.cpython-313-x86_64-linux-gnu.so`, `Modules/zlibmodule.o`, `Objects/abstract.o`, `Objects/boolobject.o`, `Objects/bytearrayobject.o`, `Objects/bytes_methods.o`, `Objects/bytesobject.o`, `Objects/call.o`, `Objects/capsule.o`, `Objects/cellobject.o`, `Objects/classobject.o`, `Objects/codeobject.o`, `Objects/complexobject.o`, `Objects/descrobject.o`, `Objects/dictobject.o`, `Objects/enumobject.o`, `Objects/exceptions.o`, `Objects/fileobject.o`, `Objects/floatobject.o`, `Objects/frameobject.o`, `Objects/funcobject.o`, `Objects/genericaliasobject.o`, `Objects/genobject.o`, `Objects/iterobject.o`, `Objects/listobject.o`, `Objects/longobject.o`, `Objects/memoryobject.o`, `Objects/methodobject.o`, `Objects/moduleobject.o`, `Objects/namespaceobject.o`, `Objects/object.o`, `Objects/obmalloc.o`, `Objects/odictobject.o`, `Objects/picklebufobject.o`, `Objects/rangeobject.o`, `Objects/setobject.o`, `Objects/sliceobject.o`, `Objects/structseq.o`, `Objects/tupleobject.o`, `Objects/typeobject.o`, `Objects/typevarobject.o`, `Objects/unicodectype.o`, `Objects/unicodeobject.o`, `Objects/unionobject.o`, `Objects/weakrefobject.o`, `Parser/action_helpers.o`, `Parser/lexer/buffer.o`, `Parser/lexer/lexer.o`, `Parser/lexer/state.o`, `Parser/myreadline.o`, `Parser/parser.o`, `Parser/peg_api.o`, `Parser/pegen.o`, `Parser/pegen_errors.o`, `Parser/string_parser.o`, `Parser/token.o`, `Parser/tokenizer/file_tokenizer.o`, `Parser/tokenizer/helpers.o`, `Parser/tokenizer/readline_tokenizer.o`, `Parser/tokenizer/string_tokenizer.o`, `Parser/tokenizer/utf8_tokenizer.o`, `Programs/_bootstrap_python.o`, `Programs/_freeze_module`, `Programs/_freeze_module.o`, `Programs/_testembed`, `Programs/_testembed.o`, `Programs/python.o`, `Python/Python-ast.o`, `Python/Python-tokenize.o`, `Python/_warnings.o`, `Python/asdl.o`, `Python/asm_trampoline.o`, `Python/assemble.o`, `Python/ast.o`, `Python/ast_opt.o`, `Python/ast_unparse.o`, `Python/bltinmodule.o`, `Python/bootstrap_hash.o`, `Python/brc.o`, `Python/ceval.o`, `Python/ceval_gil.o`, `Python/codecs.o`, `Python/compile.o`, `Python/context.o`, `Python/critical_section.o`, `Python/crossinterp.o`, `Python/dtoa.o`, `Python/dynamic_annotations.o`, `Python/dynload_shlib.o`, `Python/errors.o`, `Python/fileutils.o`, `Python/flowgraph.o`, `Python/formatter_unicode.o`, `Python/frame.o`, `Python/frozen.o`, `Python/frozen_modules/__hello__.h`, `Python/frozen_modules/__phello__.h`, `Python/frozen_modules/__phello__.ham.eggs.h`, `Python/frozen_modules/__phello__.ham.h`, `Python/frozen_modules/__phello__.spam.h`, `Python/frozen_modules/_collections_abc.h`, `Python/frozen_modules/_sitebuiltins.h`, `Python/frozen_modules/abc.h`, `Python/frozen_modules/codecs.h`, `Python/frozen_modules/frozen_only.h`, `Python/frozen_modules/genericpath.h`, `Python/frozen_modules/getpath.h`, `Python/frozen_modules/importlib._bootstrap.h`, `Python/frozen_modules/importlib._bootstrap_external.h`, `Python/frozen_modules/importlib.machinery.h`, `Python/frozen_modules/importlib.util.h`, `Python/frozen_modules/io.h`, `Python/frozen_modules/ntpath.h`, `Python/frozen_modules/os.h`, `Python/frozen_modules/posixpath.h`, `Python/frozen_modules/runpy.h`, `Python/frozen_modules/site.h`, `Python/frozen_modules/stat.h`, `Python/frozen_modules/zipimport.h`, `Python/frozenmain.o`, `Python/future.o`, `Python/gc.o`, `Python/gc_free_threading.o`, `Python/gc_gil.o`, `Python/getargs.o`, `Python/getcompiler.o`, `Python/getcopyright.o`, `Python/getopt.o`, `Python/getplatform.o`, `Python/getversion.o`, `Python/hamt.o`, `Python/hashtable.o`, `Python/import.o`, `Python/importdl.o`, `Python/initconfig.o`, `Python/instruction_sequence.o`, `Python/instrumentation.o`, `Python/interpconfig.o`, `Python/intrinsics.o`, `Python/jit.o`, `Python/legacy_tracing.o`, `Python/lock.o`, `Python/marshal.o`, `Python/modsupport.o`, `Python/mysnprintf.o`, `Python/mystrtoul.o`, `Python/object_stack.o`, `Python/optimizer.o`, `Python/optimizer_analysis.o`, `Python/optimizer_symbols.o`, `Python/parking_lot.o`, `Python/pathconfig.o`, `Python/perf_jit_trampoline.o`, `Python/perf_trampoline.o`, `Python/preconfig.o`, `Python/pyarena.o`, `Python/pyctype.o`, `Python/pyfpe.o`, `Python/pyhash.o`, `Python/pylifecycle.o`, `Python/pymath.o`, `Python/pystate.o`, `Python/pystrcmp.o`, `Python/pystrhex.o`, `Python/pystrtod.o`, `Python/pythonrun.o`, `Python/pytime.o`, `Python/qsbr.o`, `Python/specialize.o`, `Python/structmember.o`, `Python/suggestions.o`, `Python/symtable.o`, `Python/sysmodule.o`, `Python/thread.o`, `Python/traceback.o`, `Python/tracemalloc.o`, `_bootstrap_python`, `build/lib.linux-x86_64-3.13/__pycache__/_sysconfigdata__linux_x86_64-linux-gnu.cpython-313.pyc`, `build/lib.linux-x86_64-3.13/_asyncio.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_bisect.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_blake2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_bz2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_cn.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_hk.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_iso2022.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_jp.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_kr.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_tw.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_contextvars.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_csv.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_ctypes.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_ctypes_test.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_curses.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_curses_panel.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_datetime.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_decimal.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_elementtree.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_hashlib.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_heapq.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpchannels.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpqueues.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpreters.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_json.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_lsprof.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_lzma.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_md5.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_multibytecodec.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_multiprocessing.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_opcode.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_pickle.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_posixshmem.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_posixsubprocess.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_queue.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_random.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha1.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha3.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_socket.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sqlite3.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_statistics.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_struct.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sysconfigdata__linux_x86_64-linux-gnu.py`, `build/lib.linux-x86_64-3.13/_testbuffer.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testclinic.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testclinic_limited.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testexternalinspection.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testimportmultiple.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testinternalcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testlimitedcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testmultiphase.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testsinglephase.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_uuid.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_xxtestfuzz.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_zoneinfo.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/array.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/binascii.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/cmath.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/fcntl.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/grp.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/math.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/mmap.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/pyexpat.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/readline.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/resource.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/select.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/syslog.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/termios.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/unicodedata.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxlimited.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxlimited_35.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxsubtype.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/zlib.cpython-313-x86_64-linux-gnu.so`, `build/scripts-3.13/idle3.13`, `build/scripts-3.13/pydoc3.13`, `config.log`, `config.status`, `libpython3.13.a`, `platform`, `pybuilddir.txt`, `pyconfig.h`, `python`, `python-config`, `python-config.py`, `python-gdb.py`, but `## Git Add Paths` lists `None`. Update `## Git Add Paths` to match the real shipped file set exactly, and make sure `## Issue Connection` explains every functional file that remains in the patch.
2. Missing from `## Git Add Paths`: `Lib/__pycache__/__future__.cpython-313.pyc`, `Lib/__pycache__/_collections_abc.cpython-313.pyc`, `Lib/__pycache__/_colorize.cpython-313.pyc`, `Lib/__pycache__/_compat_pickle.cpython-313.pyc`, `Lib/__pycache__/_compression.cpython-313.pyc`, `Lib/__pycache__/_opcode_metadata.cpython-313.pyc`, `Lib/__pycache__/_sitebuiltins.cpython-313.pyc`, `Lib/__pycache__/_weakrefset.cpython-313.pyc`, `Lib/__pycache__/abc.cpython-313.pyc`, `Lib/__pycache__/argparse.cpython-313.pyc`, `Lib/__pycache__/ast.cpython-313.pyc`, `Lib/__pycache__/bz2.cpython-313.pyc`, `Lib/__pycache__/codecs.cpython-313.pyc`, `Lib/__pycache__/contextlib.cpython-313.pyc`, `Lib/__pycache__/contextvars.cpython-313.pyc`, `Lib/__pycache__/copy.cpython-313.pyc`, `Lib/__pycache__/copyreg.cpython-313.pyc`, `Lib/__pycache__/datetime.cpython-313.pyc`, `Lib/__pycache__/dis.cpython-313.pyc`, `Lib/__pycache__/enum.cpython-313.pyc`, `Lib/__pycache__/fnmatch.cpython-313.pyc`, `Lib/__pycache__/functools.cpython-313.pyc`, `Lib/__pycache__/genericpath.cpython-313.pyc`, `Lib/__pycache__/gettext.cpython-313.pyc`, `Lib/__pycache__/glob.cpython-313.pyc`, `Lib/__pycache__/heapq.cpython-313.pyc`, `Lib/__pycache__/inspect.cpython-313.pyc`, `Lib/__pycache__/io.cpython-313.pyc`, `Lib/__pycache__/keyword.cpython-313.pyc`, `Lib/__pycache__/linecache.cpython-313.pyc`, `Lib/__pycache__/locale.cpython-313.pyc`, `Lib/__pycache__/lzma.cpython-313.pyc`, `Lib/__pycache__/numbers.cpython-313.pyc`, `Lib/__pycache__/opcode.cpython-313.pyc`, `Lib/__pycache__/operator.cpython-313.pyc`, `Lib/__pycache__/os.cpython-313.pyc`, `Lib/__pycache__/posixpath.cpython-313.pyc`, `Lib/__pycache__/reprlib.cpython-313.pyc`, `Lib/__pycache__/selectors.cpython-313.pyc`, `Lib/__pycache__/shutil.cpython-313.pyc`, `Lib/__pycache__/signal.cpython-313.pyc`, `Lib/__pycache__/site.cpython-313.pyc`, `Lib/__pycache__/socket.cpython-313.pyc`, `Lib/__pycache__/ssl.cpython-313.pyc`, `Lib/__pycache__/stat.cpython-313.pyc`, `Lib/__pycache__/string.cpython-313.pyc`, `Lib/__pycache__/struct.cpython-313.pyc`, `Lib/__pycache__/subprocess.cpython-313.pyc`, `Lib/__pycache__/textwrap.cpython-313.pyc`, `Lib/__pycache__/threading.cpython-313.pyc`, `Lib/__pycache__/token.cpython-313.pyc`, `Lib/__pycache__/tokenize.cpython-313.pyc`, `Lib/__pycache__/traceback.cpython-313.pyc`, `Lib/__pycache__/types.cpython-313.pyc`, `Lib/__pycache__/typing.cpython-313.pyc`, `Lib/__pycache__/warnings.cpython-313.pyc`, `Lib/__pycache__/weakref.cpython-313.pyc`, `Lib/asyncio/__pycache__/__init__.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_events.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_futures.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_subprocess.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_tasks.cpython-313.pyc`, `Lib/asyncio/__pycache__/constants.cpython-313.pyc`, `Lib/asyncio/__pycache__/coroutines.cpython-313.pyc`, `Lib/asyncio/__pycache__/events.cpython-313.pyc`, `Lib/asyncio/__pycache__/exceptions.cpython-313.pyc`, `Lib/asyncio/__pycache__/format_helpers.cpython-313.pyc`, `Lib/asyncio/__pycache__/futures.cpython-313.pyc`, `Lib/asyncio/__pycache__/locks.cpython-313.pyc`, `Lib/asyncio/__pycache__/log.cpython-313.pyc`, `Lib/asyncio/__pycache__/mixins.cpython-313.pyc`, `Lib/asyncio/__pycache__/protocols.cpython-313.pyc`, `Lib/asyncio/__pycache__/queues.cpython-313.pyc`, `Lib/asyncio/__pycache__/runners.cpython-313.pyc`, `Lib/asyncio/__pycache__/selector_events.cpython-313.pyc`, `Lib/asyncio/__pycache__/sslproto.cpython-313.pyc`, `Lib/asyncio/__pycache__/staggered.cpython-313.pyc`, `Lib/asyncio/__pycache__/streams.cpython-313.pyc`, `Lib/asyncio/__pycache__/subprocess.cpython-313.pyc`, `Lib/asyncio/__pycache__/taskgroups.cpython-313.pyc`, `Lib/asyncio/__pycache__/tasks.cpython-313.pyc`, `Lib/asyncio/__pycache__/threads.cpython-313.pyc`, `Lib/asyncio/__pycache__/timeouts.cpython-313.pyc`, `Lib/asyncio/__pycache__/transports.cpython-313.pyc`, `Lib/asyncio/__pycache__/trsock.cpython-313.pyc`, `Lib/asyncio/__pycache__/unix_events.cpython-313.pyc`, `Lib/collections/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/futures/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/futures/__pycache__/_base.cpython-313.pyc`, `Lib/encodings/__pycache__/__init__.cpython-313.pyc`, `Lib/encodings/__pycache__/aliases.cpython-313.pyc`, `Lib/encodings/__pycache__/ascii.cpython-313.pyc`, `Lib/encodings/__pycache__/utf_8.cpython-313.pyc`, `Lib/importlib/__pycache__/__init__.cpython-313.pyc`, `Lib/importlib/__pycache__/_abc.cpython-313.pyc`, `Lib/logging/__pycache__/__init__.cpython-313.pyc`, `Lib/pathlib/__pycache__/__init__.cpython-313.pyc`, `Lib/pathlib/__pycache__/_abc.cpython-313.pyc`, `Lib/pathlib/__pycache__/_local.cpython-313.pyc`, `Lib/re/__pycache__/__init__.cpython-313.pyc`, `Lib/re/__pycache__/_casefix.cpython-313.pyc`, `Lib/re/__pycache__/_compiler.cpython-313.pyc`, `Lib/re/__pycache__/_constants.cpython-313.pyc`, `Lib/re/__pycache__/_parser.cpython-313.pyc`, `Lib/sysconfig/__pycache__/__init__.cpython-313.pyc`, `Lib/sysconfig/__pycache__/__main__.cpython-313.pyc`, `Lib/xml/__pycache__/__init__.cpython-313.pyc`, `Lib/xml/etree/__pycache__/ElementPath.cpython-313.pyc`, `Lib/xml/etree/__pycache__/__init__.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/__init__.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/_common.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/_tzpath.cpython-313.pyc`, `Makefile`, `Makefile.pre`, `Misc/python-config.sh`, `Misc/python-embed.pc`, `Misc/python.pc`, `Modules/Setup.bootstrap`, `Modules/Setup.local`, `Modules/Setup.stdlib`, `Modules/_abc.o`, `Modules/_asyncio.cpython-313-x86_64-linux-gnu.so`, `Modules/_asynciomodule.o`, `Modules/_bisect.cpython-313-x86_64-linux-gnu.so`, `Modules/_bisectmodule.o`, `Modules/_blake2.cpython-313-x86_64-linux-gnu.so`, `Modules/_blake2/blake2b_impl.o`, `Modules/_blake2/blake2module.o`, `Modules/_blake2/blake2s_impl.o`, `Modules/_bz2.cpython-313-x86_64-linux-gnu.so`, `Modules/_bz2module.o`, `Modules/_codecs_cn.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_hk.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_iso2022.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_jp.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_kr.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_tw.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecsmodule.o`, `Modules/_collectionsmodule.o`, `Modules/_contextvars.cpython-313-x86_64-linux-gnu.so`, `Modules/_contextvarsmodule.o`, `Modules/_csv.cpython-313-x86_64-linux-gnu.so`, `Modules/_csv.o`, `Modules/_ctypes.cpython-313-x86_64-linux-gnu.so`, `Modules/_ctypes/_ctypes.o`, `Modules/_ctypes/_ctypes_test.o`, `Modules/_ctypes/callbacks.o`, `Modules/_ctypes/callproc.o`, `Modules/_ctypes/cfield.o`, `Modules/_ctypes/stgdict.o`, `Modules/_ctypes_test.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses_panel.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses_panel.o`, `Modules/_cursesmodule.o`, `Modules/_datetime.cpython-313-x86_64-linux-gnu.so`, `Modules/_datetimemodule.o`, `Modules/_decimal.cpython-313-x86_64-linux-gnu.so`, `Modules/_decimal/_decimal.o`, `Modules/_decimal/libmpdec/basearith.o`, `Modules/_decimal/libmpdec/constants.o`, `Modules/_decimal/libmpdec/context.o`, `Modules/_decimal/libmpdec/convolute.o`, `Modules/_decimal/libmpdec/crt.o`, `Modules/_decimal/libmpdec/difradix2.o`, `Modules/_decimal/libmpdec/fnt.o`, `Modules/_decimal/libmpdec/fourstep.o`, `Modules/_decimal/libmpdec/io.o`, `Modules/_decimal/libmpdec/libmpdec.a`, `Modules/_decimal/libmpdec/mpalloc.o`, `Modules/_decimal/libmpdec/mpdecimal.o`, `Modules/_decimal/libmpdec/numbertheory.o`, `Modules/_decimal/libmpdec/sixstep.o`, `Modules/_decimal/libmpdec/transpose.o`, `Modules/_elementtree.cpython-313-x86_64-linux-gnu.so`, `Modules/_elementtree.o`, `Modules/_functoolsmodule.o`, `Modules/_hacl/Hacl_Hash_MD5.o`, `Modules/_hacl/Hacl_Hash_SHA1.o`, `Modules/_hacl/Hacl_Hash_SHA2.o`, `Modules/_hacl/Hacl_Hash_SHA3.o`, `Modules/_hacl/libHacl_Hash_SHA2.a`, `Modules/_hashlib.cpython-313-x86_64-linux-gnu.so`, `Modules/_hashopenssl.o`, `Modules/_heapq.cpython-313-x86_64-linux-gnu.so`, `Modules/_heapqmodule.o`, `Modules/_interpchannels.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpchannelsmodule.o`, `Modules/_interpqueues.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpqueuesmodule.o`, `Modules/_interpreters.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpretersmodule.o`, `Modules/_io/_iomodule.o`, `Modules/_io/bufferedio.o`, `Modules/_io/bytesio.o`, `Modules/_io/fileio.o`, `Modules/_io/iobase.o`, `Modules/_io/stringio.o`, `Modules/_io/textio.o`, `Modules/_json.cpython-313-x86_64-linux-gnu.so`, `Modules/_json.o`, `Modules/_localemodule.o`, `Modules/_lsprof.cpython-313-x86_64-linux-gnu.so`, `Modules/_lsprof.o`, `Modules/_lzma.cpython-313-x86_64-linux-gnu.so`, `Modules/_lzmamodule.o`, `Modules/_md5.cpython-313-x86_64-linux-gnu.so`, `Modules/_multibytecodec.cpython-313-x86_64-linux-gnu.so`, `Modules/_multiprocessing.cpython-313-x86_64-linux-gnu.so`, `Modules/_multiprocessing/multiprocessing.o`, `Modules/_multiprocessing/posixshmem.o`, `Modules/_multiprocessing/semaphore.o`, `Modules/_opcode.cpython-313-x86_64-linux-gnu.so`, `Modules/_opcode.o`, `Modules/_operator.o`, `Modules/_pickle.cpython-313-x86_64-linux-gnu.so`, `Modules/_pickle.o`, `Modules/_posixshmem.cpython-313-x86_64-linux-gnu.so`, `Modules/_posixsubprocess.cpython-313-x86_64-linux-gnu.so`, `Modules/_posixsubprocess.o`, `Modules/_queue.cpython-313-x86_64-linux-gnu.so`, `Modules/_queuemodule.o`, `Modules/_random.cpython-313-x86_64-linux-gnu.so`, `Modules/_randommodule.o`, `Modules/_sha1.cpython-313-x86_64-linux-gnu.so`, `Modules/_sha2.cpython-313-x86_64-linux-gnu.so`, `Modules/_sha3.cpython-313-x86_64-linux-gnu.so`, `Modules/_socket.cpython-313-x86_64-linux-gnu.so`, `Modules/_sqlite/blob.o`, `Modules/_sqlite/connection.o`, `Modules/_sqlite/cursor.o`, `Modules/_sqlite/microprotocols.o`, `Modules/_sqlite/module.o`, `Modules/_sqlite/prepare_protocol.o`, `Modules/_sqlite/row.o`, `Modules/_sqlite/statement.o`, `Modules/_sqlite/util.o`, `Modules/_sqlite3.cpython-313-x86_64-linux-gnu.so`, `Modules/_sre/sre.o`, `Modules/_ssl.o`, `Modules/_ssl_failed.cpython-313-x86_64-linux-gnu.so`, `Modules/_stat.o`, `Modules/_statistics.cpython-313-x86_64-linux-gnu.so`, `Modules/_statisticsmodule.o`, `Modules/_struct.cpython-313-x86_64-linux-gnu.so`, `Modules/_struct.o`, `Modules/_suggestions.o`, `Modules/_sysconfig.o`, `Modules/_testbuffer.cpython-313-x86_64-linux-gnu.so`, `Modules/_testbuffer.o`, `Modules/_testcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testcapi/abstract.o`, `Modules/_testcapi/buffer.o`, `Modules/_testcapi/bytes.o`, `Modules/_testcapi/code.o`, `Modules/_testcapi/codec.o`, `Modules/_testcapi/complex.o`, `Modules/_testcapi/datetime.o`, `Modules/_testcapi/dict.o`, `Modules/_testcapi/docstring.o`, `Modules/_testcapi/exceptions.o`, `Modules/_testcapi/file.o`, `Modules/_testcapi/float.o`, `Modules/_testcapi/gc.o`, `Modules/_testcapi/getargs.o`, `Modules/_testcapi/hash.o`, `Modules/_testcapi/heaptype.o`, `Modules/_testcapi/immortal.o`, `Modules/_testcapi/list.o`, `Modules/_testcapi/long.o`, `Modules/_testcapi/mem.o`, `Modules/_testcapi/monitoring.o`, `Modules/_testcapi/numbers.o`, `Modules/_testcapi/object.o`, `Modules/_testcapi/pyatomic.o`, `Modules/_testcapi/run.o`, `Modules/_testcapi/set.o`, `Modules/_testcapi/structmember.o`, `Modules/_testcapi/time.o`, `Modules/_testcapi/tuple.o`, `Modules/_testcapi/unicode.o`, `Modules/_testcapi/vectorcall.o`, `Modules/_testcapi/watchers.o`, `Modules/_testcapimodule.o`, `Modules/_testclinic.cpython-313-x86_64-linux-gnu.so`, `Modules/_testclinic.o`, `Modules/_testclinic_limited.cpython-313-x86_64-linux-gnu.so`, `Modules/_testclinic_limited.o`, `Modules/_testexternalinspection.cpython-313-x86_64-linux-gnu.so`, `Modules/_testexternalinspection.o`, `Modules/_testimportmultiple.cpython-313-x86_64-linux-gnu.so`, `Modules/_testimportmultiple.o`, `Modules/_testinternalcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testinternalcapi.o`, `Modules/_testinternalcapi/pytime.o`, `Modules/_testinternalcapi/set.o`, `Modules/_testinternalcapi/test_critical_sections.o`, `Modules/_testinternalcapi/test_lock.o`, `Modules/_testlimitedcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testlimitedcapi.o`, `Modules/_testlimitedcapi/abstract.o`, `Modules/_testlimitedcapi/bytearray.o`, `Modules/_testlimitedcapi/bytes.o`, `Modules/_testlimitedcapi/complex.o`, `Modules/_testlimitedcapi/dict.o`, `Modules/_testlimitedcapi/eval.o`, `Modules/_testlimitedcapi/file.o`, `Modules/_testlimitedcapi/float.o`, `Modules/_testlimitedcapi/heaptype_relative.o`, `Modules/_testlimitedcapi/import.o`, `Modules/_testlimitedcapi/list.o`, `Modules/_testlimitedcapi/long.o`, `Modules/_testlimitedcapi/object.o`, `Modules/_testlimitedcapi/pyos.o`, `Modules/_testlimitedcapi/set.o`, `Modules/_testlimitedcapi/sys.o`, `Modules/_testlimitedcapi/tuple.o`, `Modules/_testlimitedcapi/unicode.o`, `Modules/_testlimitedcapi/vectorcall_limited.o`, `Modules/_testmultiphase.cpython-313-x86_64-linux-gnu.so`, `Modules/_testmultiphase.o`, `Modules/_testsinglephase.cpython-313-x86_64-linux-gnu.so`, `Modules/_testsinglephase.o`, `Modules/_threadmodule.o`, `Modules/_tracemalloc.o`, `Modules/_typingmodule.o`, `Modules/_uuid.cpython-313-x86_64-linux-gnu.so`, `Modules/_uuidmodule.o`, `Modules/_weakref.o`, `Modules/_xxtestfuzz.cpython-313-x86_64-linux-gnu.so`, `Modules/_xxtestfuzz/_xxtestfuzz.o`, `Modules/_xxtestfuzz/fuzzer.o`, `Modules/_zoneinfo.cpython-313-x86_64-linux-gnu.so`, `Modules/_zoneinfo.o`, `Modules/array.cpython-313-x86_64-linux-gnu.so`, `Modules/arraymodule.o`, `Modules/atexitmodule.o`, `Modules/binascii.cpython-313-x86_64-linux-gnu.so`, `Modules/binascii.o`, `Modules/cjkcodecs/_codecs_cn.o`, `Modules/cjkcodecs/_codecs_hk.o`, `Modules/cjkcodecs/_codecs_iso2022.o`, `Modules/cjkcodecs/_codecs_jp.o`, `Modules/cjkcodecs/_codecs_kr.o`, `Modules/cjkcodecs/_codecs_tw.o`, `Modules/cjkcodecs/multibytecodec.o`, `Modules/cmath.cpython-313-x86_64-linux-gnu.so`, `Modules/cmathmodule.o`, `Modules/config.c`, `Modules/config.o`, `Modules/errnomodule.o`, `Modules/expat/libexpat.a`, `Modules/expat/xmlparse.o`, `Modules/expat/xmlrole.o`, `Modules/expat/xmltok.o`, `Modules/faulthandler.o`, `Modules/fcntl.cpython-313-x86_64-linux-gnu.so`, `Modules/fcntlmodule.o`, `Modules/gcmodule.o`, `Modules/getbuildinfo.o`, `Modules/getpath.o`, `Modules/getpath_noop.o`, `Modules/grp.cpython-313-x86_64-linux-gnu.so`, `Modules/grpmodule.o`, `Modules/itertoolsmodule.o`, `Modules/ld_so_aix`, `Modules/main.o`, `Modules/math.cpython-313-x86_64-linux-gnu.so`, `Modules/mathmodule.o`, `Modules/md5module.o`, `Modules/mmap.cpython-313-x86_64-linux-gnu.so`, `Modules/mmapmodule.o`, `Modules/posixmodule.o`, `Modules/pwdmodule.o`, `Modules/pyexpat.cpython-313-x86_64-linux-gnu.so`, `Modules/pyexpat.o`, `Modules/readline.cpython-313-x86_64-linux-gnu.so`, `Modules/readline.o`, `Modules/resource.cpython-313-x86_64-linux-gnu.so`, `Modules/resource.o`, `Modules/rotatingtree.o`, `Modules/select.cpython-313-x86_64-linux-gnu.so`, `Modules/selectmodule.o`, `Modules/sha1module.o`, `Modules/sha2module.o`, `Modules/sha3module.o`, `Modules/signalmodule.o`, `Modules/socketmodule.o`, `Modules/symtablemodule.o`, `Modules/syslog.cpython-313-x86_64-linux-gnu.so`, `Modules/syslogmodule.o`, `Modules/termios.cpython-313-x86_64-linux-gnu.so`, `Modules/termios.o`, `Modules/timemodule.o`, `Modules/unicodedata.cpython-313-x86_64-linux-gnu.so`, `Modules/unicodedata.o`, `Modules/xxlimited.cpython-313-x86_64-linux-gnu.so`, `Modules/xxlimited.o`, `Modules/xxlimited_35.cpython-313-x86_64-linux-gnu.so`, `Modules/xxlimited_35.o`, `Modules/xxsubtype.cpython-313-x86_64-linux-gnu.so`, `Modules/xxsubtype.o`, `Modules/zlib.cpython-313-x86_64-linux-gnu.so`, `Modules/zlibmodule.o`, `Objects/abstract.o`, `Objects/boolobject.o`, `Objects/bytearrayobject.o`, `Objects/bytes_methods.o`, `Objects/bytesobject.o`, `Objects/call.o`, `Objects/capsule.o`, `Objects/cellobject.o`, `Objects/classobject.o`, `Objects/codeobject.o`, `Objects/complexobject.o`, `Objects/descrobject.o`, `Objects/dictobject.o`, `Objects/enumobject.o`, `Objects/exceptions.o`, `Objects/fileobject.o`, `Objects/floatobject.o`, `Objects/frameobject.o`, `Objects/funcobject.o`, `Objects/genericaliasobject.o`, `Objects/genobject.o`, `Objects/iterobject.o`, `Objects/listobject.o`, `Objects/longobject.o`, `Objects/memoryobject.o`, `Objects/methodobject.o`, `Objects/moduleobject.o`, `Objects/namespaceobject.o`, `Objects/object.o`, `Objects/obmalloc.o`, `Objects/odictobject.o`, `Objects/picklebufobject.o`, `Objects/rangeobject.o`, `Objects/setobject.o`, `Objects/sliceobject.o`, `Objects/structseq.o`, `Objects/tupleobject.o`, `Objects/typeobject.o`, `Objects/typevarobject.o`, `Objects/unicodectype.o`, `Objects/unicodeobject.o`, `Objects/unionobject.o`, `Objects/weakrefobject.o`, `Parser/action_helpers.o`, `Parser/lexer/buffer.o`, `Parser/lexer/lexer.o`, `Parser/lexer/state.o`, `Parser/myreadline.o`, `Parser/parser.o`, `Parser/peg_api.o`, `Parser/pegen.o`, `Parser/pegen_errors.o`, `Parser/string_parser.o`, `Parser/token.o`, `Parser/tokenizer/file_tokenizer.o`, `Parser/tokenizer/helpers.o`, `Parser/tokenizer/readline_tokenizer.o`, `Parser/tokenizer/string_tokenizer.o`, `Parser/tokenizer/utf8_tokenizer.o`, `Programs/_bootstrap_python.o`, `Programs/_freeze_module`, `Programs/_freeze_module.o`, `Programs/_testembed`, `Programs/_testembed.o`, `Programs/python.o`, `Python/Python-ast.o`, `Python/Python-tokenize.o`, `Python/_warnings.o`, `Python/asdl.o`, `Python/asm_trampoline.o`, `Python/assemble.o`, `Python/ast.o`, `Python/ast_opt.o`, `Python/ast_unparse.o`, `Python/bltinmodule.o`, `Python/bootstrap_hash.o`, `Python/brc.o`, `Python/ceval.o`, `Python/ceval_gil.o`, `Python/codecs.o`, `Python/compile.o`, `Python/context.o`, `Python/critical_section.o`, `Python/crossinterp.o`, `Python/dtoa.o`, `Python/dynamic_annotations.o`, `Python/dynload_shlib.o`, `Python/errors.o`, `Python/fileutils.o`, `Python/flowgraph.o`, `Python/formatter_unicode.o`, `Python/frame.o`, `Python/frozen.o`, `Python/frozen_modules/__hello__.h`, `Python/frozen_modules/__phello__.h`, `Python/frozen_modules/__phello__.ham.eggs.h`, `Python/frozen_modules/__phello__.ham.h`, `Python/frozen_modules/__phello__.spam.h`, `Python/frozen_modules/_collections_abc.h`, `Python/frozen_modules/_sitebuiltins.h`, `Python/frozen_modules/abc.h`, `Python/frozen_modules/codecs.h`, `Python/frozen_modules/frozen_only.h`, `Python/frozen_modules/genericpath.h`, `Python/frozen_modules/getpath.h`, `Python/frozen_modules/importlib._bootstrap.h`, `Python/frozen_modules/importlib._bootstrap_external.h`, `Python/frozen_modules/importlib.machinery.h`, `Python/frozen_modules/importlib.util.h`, `Python/frozen_modules/io.h`, `Python/frozen_modules/ntpath.h`, `Python/frozen_modules/os.h`, `Python/frozen_modules/posixpath.h`, `Python/frozen_modules/runpy.h`, `Python/frozen_modules/site.h`, `Python/frozen_modules/stat.h`, `Python/frozen_modules/zipimport.h`, `Python/frozenmain.o`, `Python/future.o`, `Python/gc.o`, `Python/gc_free_threading.o`, `Python/gc_gil.o`, `Python/getargs.o`, `Python/getcompiler.o`, `Python/getcopyright.o`, `Python/getopt.o`, `Python/getplatform.o`, `Python/getversion.o`, `Python/hamt.o`, `Python/hashtable.o`, `Python/import.o`, `Python/importdl.o`, `Python/initconfig.o`, `Python/instruction_sequence.o`, `Python/instrumentation.o`, `Python/interpconfig.o`, `Python/intrinsics.o`, `Python/jit.o`, `Python/legacy_tracing.o`, `Python/lock.o`, `Python/marshal.o`, `Python/modsupport.o`, `Python/mysnprintf.o`, `Python/mystrtoul.o`, `Python/object_stack.o`, `Python/optimizer.o`, `Python/optimizer_analysis.o`, `Python/optimizer_symbols.o`, `Python/parking_lot.o`, `Python/pathconfig.o`, `Python/perf_jit_trampoline.o`, `Python/perf_trampoline.o`, `Python/preconfig.o`, `Python/pyarena.o`, `Python/pyctype.o`, `Python/pyfpe.o`, `Python/pyhash.o`, `Python/pylifecycle.o`, `Python/pymath.o`, `Python/pystate.o`, `Python/pystrcmp.o`, `Python/pystrhex.o`, `Python/pystrtod.o`, `Python/pythonrun.o`, `Python/pytime.o`, `Python/qsbr.o`, `Python/specialize.o`, `Python/structmember.o`, `Python/suggestions.o`, `Python/symtable.o`, `Python/sysmodule.o`, `Python/thread.o`, `Python/traceback.o`, `Python/tracemalloc.o`, `_bootstrap_python`, `build/lib.linux-x86_64-3.13/__pycache__/_sysconfigdata__linux_x86_64-linux-gnu.cpython-313.pyc`, `build/lib.linux-x86_64-3.13/_asyncio.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_bisect.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_blake2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_bz2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_cn.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_hk.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_iso2022.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_jp.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_kr.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_tw.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_contextvars.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_csv.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_ctypes.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_ctypes_test.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_curses.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_curses_panel.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_datetime.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_decimal.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_elementtree.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_hashlib.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_heapq.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpchannels.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpqueues.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpreters.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_json.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_lsprof.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_lzma.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_md5.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_multibytecodec.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_multiprocessing.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_opcode.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_pickle.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_posixshmem.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_posixsubprocess.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_queue.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_random.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha1.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha3.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_socket.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sqlite3.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_statistics.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_struct.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sysconfigdata__linux_x86_64-linux-gnu.py`, `build/lib.linux-x86_64-3.13/_testbuffer.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testclinic.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testclinic_limited.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testexternalinspection.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testimportmultiple.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testinternalcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testlimitedcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testmultiphase.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testsinglephase.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_uuid.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_xxtestfuzz.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_zoneinfo.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/array.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/binascii.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/cmath.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/fcntl.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/grp.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/math.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/mmap.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/pyexpat.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/readline.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/resource.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/select.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/syslog.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/termios.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/unicodedata.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxlimited.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxlimited_35.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxsubtype.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/zlib.cpython-313-x86_64-linux-gnu.so`, `build/scripts-3.13/idle3.13`, `build/scripts-3.13/pydoc3.13`, `config.log`, `config.status`, `libpython3.13.a`, `platform`, `pybuilddir.txt`, `pyconfig.h`, `python`, `python-config`, `python-config.py`, `python-gdb.py`.
2. Listed in `## Git Add Paths` but not actually changed: `None`.

## Refinement Pass 1

Subject: Diagnose python3.13 poll-loop attribution

## Commit Message
No source change. The collected signal points to Python applications waking from finite `poll()` timeouts, while CPython’s `select.poll()` implementation already blocks in the platform `poll()` call using the local timeout helpers. The review finding was metadata drift from validation artifacts; those generated files were cleaned so the no-patch diagnosis matches the workspace.

## Evidence Confidence
inferred

## Issue Connection
Fixer collected perf, strace, and `/proc` evidence for `/usr/bin/python3.13`: a `supervisord` process repeatedly called `wait4(..., WNOHANG)` and then `poll(..., 1000)`, with each `poll()` timing out after about one second, while `/proc` showed the thread sleeping in `poll_schedule_timeout`. The cautious inference is that an application-level supervisor loop was attributed to the interpreter process, not that CPython’s runtime is spinning.

I followed the planning pass and kept this as a no-patch diagnosis. I rechecked CPython’s `README.rst` contribution/build guidance and the relevant subsystem conventions: `Lib/selectors.py` rounds positive selector timeouts to milliseconds, and `Modules/selectmodule.c` uses `_PyTime_*`, `_PyDeadline_*`, `Py_BEGIN_ALLOW_THREADS`, and EINTR retry logic around the platform `poll()` call. No relevant local helper was missing.

The specific refinement was to address the review finding by cleaning unintended generated build artifacts and bytecode caches from the validation run. The expected effect is no runtime behavior change and no source diff: the workspace now matches `## Git Add Paths: None` instead of accidentally carrying build outputs.

## Git Add Paths
None

## Validation
Previous project-level validation in this proposal: `./configure && make` completed with exit code 0 and produced `./python`. It reported optional module issues: `_ssl` failed to import because of undefined symbol `TLSv1_method`; `_dbm`, `_gdbm`, and `_tkinter` were missing.

Previous independent reproduction attempt: `strace -tt -T -e poll ./python -c '...'` was blocked by sandbox ptrace restrictions: `PTRACE_TRACEME: Operation not permitted` and `ptrace(PTRACE_SEIZE, 4): Operation not permitted`.

Previous bounded smoke check without ptrace: `/usr/bin/time -f 'elapsed=%e cpu=%P' ./python -c '...'` returned `ready=[] elapsed=0.501`, with process `elapsed=0.52 cpu=1%`; it did not reproduce a busy loop.

Refinement checks run:
`make distclean` cleaned validation artifacts.
`git diff --stat` produced no output.
`git status --short` produced no output.

I did not rerun `./configure && make` or `make check` after cleanup because there is still no source patch, and rerunning them would recreate the build artifacts that the review asked to remove.

## Review Pass 2

RESULT: ok

The refined workspace is clean: `git status --short` and `git diff --stat` both produced no output, so `## Git Add Paths: None` now matches the actual patch state.

The no-patch diagnosis is consistent with the evidence level. The author does not claim a reproduced CPython bug, keeps `## Evidence Confidence` as `inferred`, explains the collected `poll`/`wait4` signal cautiously, names the relevant CPython timeout helpers and conventions, and reports the validation artifact cleanup requested by the prior review. No source-change, security, helper-API, or maintainer-facing explanation issues remain.

diagnosis-only report

report

python3.13 likely remains stuck in a busy-poll loop. A diagnosis report and patch proposal were created locally.

state: readycreated: 2026-05-18 20:37 UTCvalidation: ready
Published session

Prompt

## Plan Pass

You are planning a fixer patch before any edits happen.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. The original pre-edit snapshot is available at `./source` if you need to inspect it. For interpreter processes, plan from the script/application entrypoint evidence first and include the runtime only as a second investigation target unless the evidence proves a runtime bug.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround. Inspect the relevant code, nearby callers, project contribution docs, and local helper/compat APIs, but do not edit files in this pass.

Return a short markdown plan with these exact sections:

## Problem
## Evidence Confidence
## Proposed Subject
## Patch Plan
## Risks
## Validation

Classify `## Evidence Confidence` as exactly one of `reproduced`, `observed`, or `inferred`. Use `inferred` only for a no-patch diagnosis/report plan unless you can name the extra evidence you will collect before editing; inferred source patches are blocked by Fixer because they are not pull-request-ready. For `observed` source-patch plans, plan to say in the final `## Issue Connection` that the failure was observed by Fixer and not independently reproduced. If the plan touches authentication, authorization, credentials, cryptography, sandboxing, permissions, or timing/throttling behavior, treat it as security-sensitive: do not plan a source patch unless validation can reproduce the behavior and analyze the security impact; otherwise plan a no-patch diagnosis/report. The plan must explain how the proposed code change addresses the observed issue evidence, call out any prior Fixer patch that should be improved or replaced, reject awkward control flow such as avoidable `goto` if there is a cleaner bounded alternative, name any local helper APIs or maintainer conventions the patch should follow, and keep the intended maintainer-facing explanation clear enough that someone unfamiliar with the local complaint wording can still follow the fix. In `## Validation`, name the reproducible configure/build/test entrypoint you will try from the workspace root before any focused leaf compile or smoke check, and include one bounded independent reproduction attempt for the collected failure signal when it is safe and cheap. Do not plan to claim `reproduced` unless that reproduction command or test can actually show the failure.

## Patch Pass

You are working on a bounded fixer proposal.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. Produce the smallest reasonable patch for the target repository, keep the change upstreamable, prefer the clearest control flow available, and do not keep avoidable `goto` when a simpler structure would read better. Before introducing new file, process, allocation, locking, networking, or platform APIs, inspect nearby code and project contribution docs for existing helpers or compatibility wrappers and use those local patterns unless you can explain why they do not fit. Validate from a reproducible workspace-root entrypoint before falling back to focused leaf commands; if a build or test cannot run, report the exact command, the exact blocker, and any narrower check you ran instead. During validation, also try one bounded independent reproduction of the collected failure signal when it is safe and cheap, such as a failing test, smoke command, perf/strace comparison, or before/after runtime check. Only use `reproduced` if that command or test actually reproduced the failure; otherwise keep `observed` and report the reproduction blocker. The final explanation must connect the observed issue evidence to the actual code change, not just paraphrase the diff. Write like a maintainer is going to read the patch mail cold: explain the bug in plain language, define subsystem-specific jargon the first time you need it, and make the causal story obvious. Explicitly classify evidence confidence as `reproduced`, `observed`, or `inferred`: `reproduced` means you reproduced the failure locally; `observed` means Fixer has direct crash/log/trace evidence but you did not independently reproduce it; `inferred` means the source patch is not pull-request-ready, so do not leave a source diff unless you first gather stronger observed/reproduced evidence; otherwise return a no-patch diagnosis/report. For any source-changing `observed` patch, say explicitly in `## Issue Connection` that the failure was observed by Fixer and not independently reproduced. Security-sensitive areas such as authentication, authorization, credentials, cryptography, sandboxing, permissions, and timing/throttling behavior need reproduced evidence plus explicit security-impact analysis before leaving a source diff; otherwise return a no-patch diagnosis/report for human review. If you introduce non-obvious state translation, index remapping, or backend split logic, add a short source comment that explains the invariant being preserved.

Start by explaining the likely root cause from the collected perf, strace, and /proc evidence. If you cannot land a safe patch, leave a diagnosis that is strong enough for an upstream bug report.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround. 

Keep the change narrowly scoped and summarize validation clearly.

In every authoring pass, your final response must start with `Subject: <single-line git commit subject>` and then include these markdown sections exactly:

## Commit Message
A short upstream-friendly explanation of what changed and why. Write it in plain language that a maintainer can follow without local complaint context. If you use subsystem jargon, define it immediately.

## Evidence Confidence
Exactly one word: `reproduced`, `observed`, or `inferred`. Use `reproduced` only when you reproduced the failure locally with a command or test, and include that command/test in `## Validation`. Use `observed` when Fixer has direct crash/log/trace evidence but you did not independently reproduce it. If `## Git Add Paths` lists source files for an `observed` patch, `## Issue Connection` must explicitly say the failure was observed by Fixer and not independently reproduced. Security-sensitive source changes touching authentication, authorization, credentials, cryptography, sandboxing, permissions, or timing/throttling behavior require reproduced evidence and explicit security-impact analysis; otherwise list `None` under `## Git Add Paths` and write a no-patch diagnosis/report. Use `inferred` for profiler/strace/indirect evidence; inferred responses may be no-patch diagnoses or reports, but inferred source patches are not pull-request-ready until stronger evidence is gathered.

## Issue Connection
Write this as maintainer-facing patch mail, not as local Fixer notes. Cover four things explicitly in readable sentences: the user-visible symptom or the exact collected signal, the code-level cause or the cautious inference from evidence, the specific change you made, and the expected effect. Do not invent a reproducer, command line, crash, or user-visible failure that is not present in the evidence bundle. If the evidence is direct-but-not-reproduced, say it was observed by Fixer and not independently reproduced. If the evidence is indirect and you did not gather stronger evidence, do not leave a source diff; write a no-patch diagnosis/report instead. Include an explicit effect sentence such as `The expected effect is ...`, `This should reduce ...`, or `This prevents ...` for source patches. If the logic is non-obvious in code, mention that you added a short explanatory comment.

## Git Add Paths
List the repo-relative paths that belong in the final patch, one per line. Use `None` only when you intentionally made no source changes. Include intentionally new files, and do not list generated build artifacts.

## Validation
List the checks you ran, or say clearly that you could not run them. Include the independent reproduction command/test and result when `## Evidence Confidence` is `reproduced`; if reproduction was attempted but blocked, name the exact blocker and keep confidence at `observed` or `inferred`.

Before editing, read the plan at `./plan-output.txt` and follow it unless the code proves part of it wrong. If you change course, say so explicitly in the final write-up instead of silently drifting from the plan.

## Review Pass 1 (local metadata check)

Local metadata consistency check

## Refinement Pass 1

You are refining a fixer patch after an explicit code review.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. Read the latest author response at `./patch-output.txt`. Read the review report at `./review-1-output.txt`. This is refinement round 1. The original pre-edit snapshot is available at `./source` if you need to compare the current patch against it. Re-read the planning pass at `./plan-output.txt` before editing. The workspace currently changes these repo-relative paths: Lib/__pycache__/__future__.cpython-313.pyc, Lib/__pycache__/_collections_abc.cpython-313.pyc, Lib/__pycache__/_colorize.cpython-313.pyc, Lib/__pycache__/_compat_pickle.cpython-313.pyc, Lib/__pycache__/_compression.cpython-313.pyc, Lib/__pycache__/_opcode_metadata.cpython-313.pyc, Lib/__pycache__/_sitebuiltins.cpython-313.pyc, Lib/__pycache__/_weakrefset.cpython-313.pyc, Lib/__pycache__/abc.cpython-313.pyc, Lib/__pycache__/argparse.cpython-313.pyc, Lib/__pycache__/ast.cpython-313.pyc, Lib/__pycache__/bz2.cpython-313.pyc, Lib/__pycache__/codecs.cpython-313.pyc, Lib/__pycache__/contextlib.cpython-313.pyc, Lib/__pycache__/contextvars.cpython-313.pyc, Lib/__pycache__/copy.cpython-313.pyc, Lib/__pycache__/copyreg.cpython-313.pyc, Lib/__pycache__/datetime.cpython-313.pyc, Lib/__pycache__/dis.cpython-313.pyc, Lib/__pycache__/enum.cpython-313.pyc, Lib/__pycache__/fnmatch.cpython-313.pyc, Lib/__pycache__/functools.cpython-313.pyc, Lib/__pycache__/genericpath.cpython-313.pyc, Lib/__pycache__/gettext.cpython-313.pyc, Lib/__pycache__/glob.cpython-313.pyc, Lib/__pycache__/heapq.cpython-313.pyc, Lib/__pycache__/inspect.cpython-313.pyc, Lib/__pycache__/io.cpython-313.pyc, Lib/__pycache__/keyword.cpython-313.pyc, Lib/__pycache__/linecache.cpython-313.pyc, Lib/__pycache__/locale.cpython-313.pyc, Lib/__pycache__/lzma.cpython-313.pyc, Lib/__pycache__/numbers.cpython-313.pyc, Lib/__pycache__/opcode.cpython-313.pyc, Lib/__pycache__/operator.cpython-313.pyc, Lib/__pycache__/os.cpython-313.pyc, Lib/__pycache__/posixpath.cpython-313.pyc, Lib/__pycache__/reprlib.cpython-313.pyc, Lib/__pycache__/selectors.cpython-313.pyc, Lib/__pycache__/shutil.cpython-313.pyc, Lib/__pycache__/signal.cpython-313.pyc, Lib/__pycache__/site.cpython-313.pyc, Lib/__pycache__/socket.cpython-313.pyc, Lib/__pycache__/ssl.cpython-313.pyc, Lib/__pycache__/stat.cpython-313.pyc, Lib/__pycache__/string.cpython-313.pyc, Lib/__pycache__/struct.cpython-313.pyc, Lib/__pycache__/subprocess.cpython-313.pyc, Lib/__pycache__/textwrap.cpython-313.pyc, Lib/__pycache__/threading.cpython-313.pyc, Lib/__pycache__/token.cpython-313.pyc, Lib/__pycache__/tokenize.cpython-313.pyc, Lib/__pycache__/traceback.cpython-313.pyc, Lib/__pycache__/types.cpython-313.pyc, Lib/__pycache__/typing.cpython-313.pyc, Lib/__pycache__/warnings.cpython-313.pyc, Lib/__pycache__/weakref.cpython-313.pyc, Lib/asyncio/__pycache__/__init__.cpython-313.pyc, Lib/asyncio/__pycache__/base_events.cpython-313.pyc, Lib/asyncio/__pycache__/base_futures.cpython-313.pyc, Lib/asyncio/__pycache__/base_subprocess.cpython-313.pyc, Lib/asyncio/__pycache__/base_tasks.cpython-313.pyc, Lib/asyncio/__pycache__/constants.cpython-313.pyc, Lib/asyncio/__pycache__/coroutines.cpython-313.pyc, Lib/asyncio/__pycache__/events.cpython-313.pyc, Lib/asyncio/__pycache__/exceptions.cpython-313.pyc, Lib/asyncio/__pycache__/format_helpers.cpython-313.pyc, Lib/asyncio/__pycache__/futures.cpython-313.pyc, Lib/asyncio/__pycache__/locks.cpython-313.pyc, Lib/asyncio/__pycache__/log.cpython-313.pyc, Lib/asyncio/__pycache__/mixins.cpython-313.pyc, Lib/asyncio/__pycache__/protocols.cpython-313.pyc, Lib/asyncio/__pycache__/queues.cpython-313.pyc, Lib/asyncio/__pycache__/runners.cpython-313.pyc, Lib/asyncio/__pycache__/selector_events.cpython-313.pyc, Lib/asyncio/__pycache__/sslproto.cpython-313.pyc, Lib/asyncio/__pycache__/staggered.cpython-313.pyc, Lib/asyncio/__pycache__/streams.cpython-313.pyc, Lib/asyncio/__pycache__/subprocess.cpython-313.pyc, Lib/asyncio/__pycache__/taskgroups.cpython-313.pyc, Lib/asyncio/__pycache__/tasks.cpython-313.pyc, Lib/asyncio/__pycache__/threads.cpython-313.pyc, Lib/asyncio/__pycache__/timeouts.cpython-313.pyc, Lib/asyncio/__pycache__/transports.cpython-313.pyc, Lib/asyncio/__pycache__/trsock.cpython-313.pyc, Lib/asyncio/__pycache__/unix_events.cpython-313.pyc, Lib/collections/__pycache__/__init__.cpython-313.pyc, Lib/concurrent/__pycache__/__init__.cpython-313.pyc, Lib/concurrent/futures/__pycache__/__init__.cpython-313.pyc, Lib/concurrent/futures/__pycache__/_base.cpython-313.pyc, Lib/encodings/__pycache__/__init__.cpython-313.pyc, Lib/encodings/__pycache__/aliases.cpython-313.pyc, Lib/encodings/__pycache__/ascii.cpython-313.pyc, Lib/encodings/__pycache__/utf_8.cpython-313.pyc, Lib/importlib/__pycache__/__init__.cpython-313.pyc, Lib/importlib/__pycache__/_abc.cpython-313.pyc, Lib/logging/__pycache__/__init__.cpython-313.pyc, Lib/pathlib/__pycache__/__init__.cpython-313.pyc, Lib/pathlib/__pycache__/_abc.cpython-313.pyc, Lib/pathlib/__pycache__/_local.cpython-313.pyc, Lib/re/__pycache__/__init__.cpython-313.pyc, Lib/re/__pycache__/_casefix.cpython-313.pyc, Lib/re/__pycache__/_compiler.cpython-313.pyc, Lib/re/__pycache__/_constants.cpyth

[truncated 29270 bytes]

Response

## Plan Pass

## Problem
Fixer attributed high CPU to `python3.13`, but the evidence is profiler/trace-only and points first at Python applications (`supervisord` in the bundle; another same-fingerprint raw capture shows `home-audio-mesh`) repeatedly waking from finite `poll()` timeouts. The CPython frames inspected are normal `select.poll()` execution, not a proven runtime busy loop.

## Evidence Confidence
observed

## Proposed Subject
No CPython source patch: diagnose the report as an application-level polling workload or insufficiently attributed profiler signal unless additional evidence proves a CPython runtime defect.

## Patch Plan
Do not edit files in this pass. Treat this as an upstream `python3.13` issue triage, not a Debian-local workaround.

The evidence shows blocking `poll()` calls with 500 ms or 1000 ms timeouts, and the inspected CPython path is `Lib/selectors.py` -> `Modules/selectmodule.c:select_poll_poll_impl()`. Local conventions/helpers found there include `math.ceil()` timeout rounding in `selectors`, `_PyTime_*` and `_PyDeadline_*` timeout handling, `Py_BEGIN_ALLOW_THREADS`, and EINTR retry logic. No relevant local helper was found that would justify changing process supervision, application event-loop policy, or generic libc calls in CPython.

If later evidence identifies a CPython bug, any patch should be narrowly in `Lib/selectors.py`, `Modules/selectmodule.c`, or the exact runtime subsystem implicated by a Python-level stack, using the existing timeout helpers and bounded structured control flow. Avoid awkward control flow such as avoidable `goto`; the existing loop already handles EINTR cleanly.

No prior Fixer patch was present to replace or improve.

## Risks
A source patch now would be speculative: changing `select.poll()` or `selectors` behavior could regress correct blocking semantics, timeout rounding, EINTR handling, or application compatibility.

The raw artifact paths embedded in the evidence bundle for the exact `2026-05-08` capture were not present locally, so the plan relies on the bundle summary plus available same-fingerprint raw captures.

## Validation
Before any future source patch, try the project-level entrypoint from the workspace root:

`./configure && make`

If that fails because dependencies or generated files are missing, record the exact failure and then run the narrowest relevant check.

Bounded independent reproduction attempt: after a build, run a small `select.poll()`/`selectors.PollSelector.select(0.5)` smoke script under `strace -tt -T -e poll` to verify CPython blocks for the requested timeout rather than spinning. This can validate runtime behavior, but it will not reproduce the reported failure unless it shows rapid zero-timeout polling or unexpected wakeups.

## Patch Pass

Subject: Diagnose python3.13 poll-loop attribution

## Commit Message
No source change. The collected signal shows Python processes repeatedly waking from finite `poll()` timeouts, but the inspected CPython `select.poll()` path already uses the local timeout helpers and blocks in the platform `poll()` call. A CPython source patch would be speculative without a reproducer or a Python-level stack showing incorrect runtime behavior.

## Evidence Confidence
inferred

## Issue Connection
Fixer collected perf, strace, and `/proc` evidence for `/usr/bin/python3.13`: a `supervisord` process had repeated `wait4(..., WNOHANG) = ECHILD` calls followed by `poll(..., 1000)` calls that timed out after about one second, while `/proc` reported the thread sleeping in `poll_schedule_timeout`. The likely root cause is an application-level event loop or supervisor polling pattern being attributed to the interpreter process, not a proven CPython runtime busy loop.

I followed the saved plan and did not change course. I inspected CPython’s contribution/build guidance in `README.rst` and the relevant local subsystem. `Lib/selectors.py` rounds positive selector timeouts up to milliseconds, and `Modules/selectmodule.c` uses `_PyTime_*`, `_PyDeadline_*`, `Py_BEGIN_ALLOW_THREADS`, and EINTR retry logic around the platform `poll()` call. No relevant local helper was missing, and no source change was made.

The expected effect is no runtime behavior change: this leaves a no-patch diagnosis instead of an upstream-unready diff that could alter correct blocking, timeout, or EINTR semantics.

## Git Add Paths
None

## Validation
`./configure && make` from the workspace root completed with exit code 0 and produced `./python`. The build reported optional module issues: `_ssl` built but failed to import because of undefined symbol `TLSv1_method`; `_dbm`, `_gdbm`, and `_tkinter` were missing.

Independent syscall reproduction attempt:
`strace -tt -T -e poll ./python -c '...'`
blocked in this sandbox with `PTRACE_TRACEME: Operation not permitted` and `ptrace(PTRACE_SEIZE, 4): Operation not permitted`.

Narrow smoke check without ptrace:
`/usr/bin/time -f 'elapsed=%e cpu=%P' ./python -c '...'`
returned `ready=[] elapsed=0.501`, with process `elapsed=0.52 cpu=1%`. This did not reproduce a busy loop.

`git diff --stat` showed no tracked source changes.

## Review Pass 1 (local metadata check)

RESULT: fix-needed

## Findings
1. Patch metadata drift: the workspace currently changes `Lib/__pycache__/__future__.cpython-313.pyc`, `Lib/__pycache__/_collections_abc.cpython-313.pyc`, `Lib/__pycache__/_colorize.cpython-313.pyc`, `Lib/__pycache__/_compat_pickle.cpython-313.pyc`, `Lib/__pycache__/_compression.cpython-313.pyc`, `Lib/__pycache__/_opcode_metadata.cpython-313.pyc`, `Lib/__pycache__/_sitebuiltins.cpython-313.pyc`, `Lib/__pycache__/_weakrefset.cpython-313.pyc`, `Lib/__pycache__/abc.cpython-313.pyc`, `Lib/__pycache__/argparse.cpython-313.pyc`, `Lib/__pycache__/ast.cpython-313.pyc`, `Lib/__pycache__/bz2.cpython-313.pyc`, `Lib/__pycache__/codecs.cpython-313.pyc`, `Lib/__pycache__/contextlib.cpython-313.pyc`, `Lib/__pycache__/contextvars.cpython-313.pyc`, `Lib/__pycache__/copy.cpython-313.pyc`, `Lib/__pycache__/copyreg.cpython-313.pyc`, `Lib/__pycache__/datetime.cpython-313.pyc`, `Lib/__pycache__/dis.cpython-313.pyc`, `Lib/__pycache__/enum.cpython-313.pyc`, `Lib/__pycache__/fnmatch.cpython-313.pyc`, `Lib/__pycache__/functools.cpython-313.pyc`, `Lib/__pycache__/genericpath.cpython-313.pyc`, `Lib/__pycache__/gettext.cpython-313.pyc`, `Lib/__pycache__/glob.cpython-313.pyc`, `Lib/__pycache__/heapq.cpython-313.pyc`, `Lib/__pycache__/inspect.cpython-313.pyc`, `Lib/__pycache__/io.cpython-313.pyc`, `Lib/__pycache__/keyword.cpython-313.pyc`, `Lib/__pycache__/linecache.cpython-313.pyc`, `Lib/__pycache__/locale.cpython-313.pyc`, `Lib/__pycache__/lzma.cpython-313.pyc`, `Lib/__pycache__/numbers.cpython-313.pyc`, `Lib/__pycache__/opcode.cpython-313.pyc`, `Lib/__pycache__/operator.cpython-313.pyc`, `Lib/__pycache__/os.cpython-313.pyc`, `Lib/__pycache__/posixpath.cpython-313.pyc`, `Lib/__pycache__/reprlib.cpython-313.pyc`, `Lib/__pycache__/selectors.cpython-313.pyc`, `Lib/__pycache__/shutil.cpython-313.pyc`, `Lib/__pycache__/signal.cpython-313.pyc`, `Lib/__pycache__/site.cpython-313.pyc`, `Lib/__pycache__/socket.cpython-313.pyc`, `Lib/__pycache__/ssl.cpython-313.pyc`, `Lib/__pycache__/stat.cpython-313.pyc`, `Lib/__pycache__/string.cpython-313.pyc`, `Lib/__pycache__/struct.cpython-313.pyc`, `Lib/__pycache__/subprocess.cpython-313.pyc`, `Lib/__pycache__/textwrap.cpython-313.pyc`, `Lib/__pycache__/threading.cpython-313.pyc`, `Lib/__pycache__/token.cpython-313.pyc`, `Lib/__pycache__/tokenize.cpython-313.pyc`, `Lib/__pycache__/traceback.cpython-313.pyc`, `Lib/__pycache__/types.cpython-313.pyc`, `Lib/__pycache__/typing.cpython-313.pyc`, `Lib/__pycache__/warnings.cpython-313.pyc`, `Lib/__pycache__/weakref.cpython-313.pyc`, `Lib/asyncio/__pycache__/__init__.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_events.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_futures.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_subprocess.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_tasks.cpython-313.pyc`, `Lib/asyncio/__pycache__/constants.cpython-313.pyc`, `Lib/asyncio/__pycache__/coroutines.cpython-313.pyc`, `Lib/asyncio/__pycache__/events.cpython-313.pyc`, `Lib/asyncio/__pycache__/exceptions.cpython-313.pyc`, `Lib/asyncio/__pycache__/format_helpers.cpython-313.pyc`, `Lib/asyncio/__pycache__/futures.cpython-313.pyc`, `Lib/asyncio/__pycache__/locks.cpython-313.pyc`, `Lib/asyncio/__pycache__/log.cpython-313.pyc`, `Lib/asyncio/__pycache__/mixins.cpython-313.pyc`, `Lib/asyncio/__pycache__/protocols.cpython-313.pyc`, `Lib/asyncio/__pycache__/queues.cpython-313.pyc`, `Lib/asyncio/__pycache__/runners.cpython-313.pyc`, `Lib/asyncio/__pycache__/selector_events.cpython-313.pyc`, `Lib/asyncio/__pycache__/sslproto.cpython-313.pyc`, `Lib/asyncio/__pycache__/staggered.cpython-313.pyc`, `Lib/asyncio/__pycache__/streams.cpython-313.pyc`, `Lib/asyncio/__pycache__/subprocess.cpython-313.pyc`, `Lib/asyncio/__pycache__/taskgroups.cpython-313.pyc`, `Lib/asyncio/__pycache__/tasks.cpython-313.pyc`, `Lib/asyncio/__pycache__/threads.cpython-313.pyc`, `Lib/asyncio/__pycache__/timeouts.cpython-313.pyc`, `Lib/asyncio/__pycache__/transports.cpython-313.pyc`, `Lib/asyncio/__pycache__/trsock.cpython-313.pyc`, `Lib/asyncio/__pycache__/unix_events.cpython-313.pyc`, `Lib/collections/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/futures/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/futures/__pycache__/_base.cpython-313.pyc`, `Lib/encodings/__pycache__/__init__.cpython-313.pyc`, `Lib/encodings/__pycache__/aliases.cpython-313.pyc`, `Lib/encodings/__pycache__/ascii.cpython-313.pyc`, `Lib/encodings/__pycache__/utf_8.cpython-313.pyc`, `Lib/importlib/__pycache__/__init__.cpython-313.pyc`, `Lib/importlib/__pycache__/_abc.cpython-313.pyc`, `Lib/logging/__pycache__/__init__.cpython-313.pyc`, `Lib/pathlib/__pycache__/__init__.cpython-313.pyc`, `Lib/pathlib/__pycache__/_abc.cpython-313.pyc`, `Lib/pathlib/__pycache__/_local.cpython-313.pyc`, `Lib/re/__pycache__/__init__.cpython-313.pyc`, `Lib/re/__pycache__/_casefix.cpython-313.pyc`, `Lib/re/__pycache__/_compiler.cpython-313.pyc`, `Lib/re/__pycache__/_constants.cpython-313.pyc`, `Lib/re/__pycache__/_parser.cpython-313.pyc`, `Lib/sysconfig/__pycache__/__init__.cpython-313.pyc`, `Lib/sysconfig/__pycache__/__main__.cpython-313.pyc`, `Lib/xml/__pycache__/__init__.cpython-313.pyc`, `Lib/xml/etree/__pycache__/ElementPath.cpython-313.pyc`, `Lib/xml/etree/__pycache__/__init__.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/__init__.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/_common.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/_tzpath.cpython-313.pyc`, `Makefile`, `Makefile.pre`, `Misc/python-config.sh`, `Misc/python-embed.pc`, `Misc/python.pc`, `Modules/Setup.bootstrap`, `Modules/Setup.local`, `Modules/Setup.stdlib`, `Modules/_abc.o`, `Modules/_asyncio.cpython-313-x86_64-linux-gnu.so`, `Modules/_asynciomodule.o`, `Modules/_bisect.cpython-313-x86_64-linux-gnu.so`, `Modules/_bisectmodule.o`, `Modules/_blake2.cpython-313-x86_64-linux-gnu.so`, `Modules/_blake2/blake2b_impl.o`, `Modules/_blake2/blake2module.o`, `Modules/_blake2/blake2s_impl.o`, `Modules/_bz2.cpython-313-x86_64-linux-gnu.so`, `Modules/_bz2module.o`, `Modules/_codecs_cn.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_hk.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_iso2022.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_jp.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_kr.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_tw.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecsmodule.o`, `Modules/_collectionsmodule.o`, `Modules/_contextvars.cpython-313-x86_64-linux-gnu.so`, `Modules/_contextvarsmodule.o`, `Modules/_csv.cpython-313-x86_64-linux-gnu.so`, `Modules/_csv.o`, `Modules/_ctypes.cpython-313-x86_64-linux-gnu.so`, `Modules/_ctypes/_ctypes.o`, `Modules/_ctypes/_ctypes_test.o`, `Modules/_ctypes/callbacks.o`, `Modules/_ctypes/callproc.o`, `Modules/_ctypes/cfield.o`, `Modules/_ctypes/stgdict.o`, `Modules/_ctypes_test.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses_panel.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses_panel.o`, `Modules/_cursesmodule.o`, `Modules/_datetime.cpython-313-x86_64-linux-gnu.so`, `Modules/_datetimemodule.o`, `Modules/_decimal.cpython-313-x86_64-linux-gnu.so`, `Modules/_decimal/_decimal.o`, `Modules/_decimal/libmpdec/basearith.o`, `Modules/_decimal/libmpdec/constants.o`, `Modules/_decimal/libmpdec/context.o`, `Modules/_decimal/libmpdec/convolute.o`, `Modules/_decimal/libmpdec/crt.o`, `Modules/_decimal/libmpdec/difradix2.o`, `Modules/_decimal/libmpdec/fnt.o`, `Modules/_decimal/libmpdec/fourstep.o`, `Modules/_decimal/libmpdec/io.o`, `Modules/_decimal/libmpdec/libmpdec.a`, `Modules/_decimal/libmpdec/mpalloc.o`, `Modules/_decimal/libmpdec/mpdecimal.o`, `Modules/_decimal/libmpdec/numbertheory.o`, `Modules/_decimal/libmpdec/sixstep.o`, `Modules/_decimal/libmpdec/transpose.o`, `Modules/_elementtree.cpython-313-x86_64-linux-gnu.so`, `Modules/_elementtree.o`, `Modules/_functoolsmodule.o`, `Modules/_hacl/Hacl_Hash_MD5.o`, `Modules/_hacl/Hacl_Hash_SHA1.o`, `Modules/_hacl/Hacl_Hash_SHA2.o`, `Modules/_hacl/Hacl_Hash_SHA3.o`, `Modules/_hacl/libHacl_Hash_SHA2.a`, `Modules/_hashlib.cpython-313-x86_64-linux-gnu.so`, `Modules/_hashopenssl.o`, `Modules/_heapq.cpython-313-x86_64-linux-gnu.so`, `Modules/_heapqmodule.o`, `Modules/_interpchannels.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpchannelsmodule.o`, `Modules/_interpqueues.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpqueuesmodule.o`, `Modules/_interpreters.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpretersmodule.o`, `Modules/_io/_iomodule.o`, `Modules/_io/bufferedio.o`, `Modules/_io/bytesio.o`, `Modules/_io/fileio.o`, `Modules/_io/iobase.o`, `Modules/_io/stringio.o`, `Modules/_io/textio.o`, `Modules/_json.cpython-313-x86_64-linux-gnu.so`, `Modules/_json.o`, `Modules/_localemodule.o`, `Modules/_lsprof.cpython-313-x86_64-linux-gnu.so`, `Modules/_lsprof.o`, `Modules/_lzma.cpython-313-x86_64-linux-gnu.so`, `Modules/_lzmamodule.o`, `Modules/_md5.cpython-313-x86_64-linux-gnu.so`, `Modules/_multibytecodec.cpython-313-x86_64-linux-gnu.so`, `Modules/_multiprocessing.cpython-313-x86_64-linux-gnu.so`, `Modules/_multiprocessing/multiprocessing.o`, `Modules/_multiprocessing/posixshmem.o`, `Modules/_multiprocessing/semaphore.o`, `Modules/_opcode.cpython-313-x86_64-linux-gnu.so`, `Modules/_opcode.o`, `Modules/_operator.o`, `Modules/_pickle.cpython-313-x86_64-linux-gnu.so`, `Modules/_pickle.o`, `Modules/_posixshmem.cpython-313-x86_64-linux-gnu.so`, `Modules/_posixsubprocess.cpython-313-x86_64-linux-gnu.so`, `Modules/_posixsubprocess.o`, `Modules/_queue.cpython-313-x86_64-linux-gnu.so`, `Modules/_queuemodule.o`, `Modules/_random.cpython-313-x86_64-linux-gnu.so`, `Modules/_randommodule.o`, `Modules/_sha1.cpython-313-x86_64-linux-gnu.so`, `Modules/_sha2.cpython-313-x86_64-linux-gnu.so`, `Modules/_sha3.cpython-313-x86_64-linux-gnu.so`, `Modules/_socket.cpython-313-x86_64-linux-gnu.so`, `Modules/_sqlite/blob.o`, `Modules/_sqlite/connection.o`, `Modules/_sqlite/cursor.o`, `Modules/_sqlite/microprotocols.o`, `Modules/_sqlite/module.o`, `Modules/_sqlite/prepare_protocol.o`, `Modules/_sqlite/row.o`, `Modules/_sqlite/statement.o`, `Modules/_sqlite/util.o`, `Modules/_sqlite3.cpython-313-x86_64-linux-gnu.so`, `Modules/_sre/sre.o`, `Modules/_ssl.o`, `Modules/_ssl_failed.cpython-313-x86_64-linux-gnu.so`, `Modules/_stat.o`, `Modules/_statistics.cpython-313-x86_64-linux-gnu.so`, `Modules/_statisticsmodule.o`, `Modules/_struct.cpython-313-x86_64-linux-gnu.so`, `Modules/_struct.o`, `Modules/_suggestions.o`, `Modules/_sysconfig.o`, `Modules/_testbuffer.cpython-313-x86_64-linux-gnu.so`, `Modules/_testbuffer.o`, `Modules/_testcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testcapi/abstract.o`, `Modules/_testcapi/buffer.o`, `Modules/_testcapi/bytes.o`, `Modules/_testcapi/code.o`, `Modules/_testcapi/codec.o`, `Modules/_testcapi/complex.o`, `Modules/_testcapi/datetime.o`, `Modules/_testcapi/dict.o`, `Modules/_testcapi/docstring.o`, `Modules/_testcapi/exceptions.o`, `Modules/_testcapi/file.o`, `Modules/_testcapi/float.o`, `Modules/_testcapi/gc.o`, `Modules/_testcapi/getargs.o`, `Modules/_testcapi/hash.o`, `Modules/_testcapi/heaptype.o`, `Modules/_testcapi/immortal.o`, `Modules/_testcapi/list.o`, `Modules/_testcapi/long.o`, `Modules/_testcapi/mem.o`, `Modules/_testcapi/monitoring.o`, `Modules/_testcapi/numbers.o`, `Modules/_testcapi/object.o`, `Modules/_testcapi/pyatomic.o`, `Modules/_testcapi/run.o`, `Modules/_testcapi/set.o`, `Modules/_testcapi/structmember.o`, `Modules/_testcapi/time.o`, `Modules/_testcapi/tuple.o`, `Modules/_testcapi/unicode.o`, `Modules/_testcapi/vectorcall.o`, `Modules/_testcapi/watchers.o`, `Modules/_testcapimodule.o`, `Modules/_testclinic.cpython-313-x86_64-linux-gnu.so`, `Modules/_testclinic.o`, `Modules/_testclinic_limited.cpython-313-x86_64-linux-gnu.so`, `Modules/_testclinic_limited.o`, `Modules/_testexternalinspection.cpython-313-x86_64-linux-gnu.so`, `Modules/_testexternalinspection.o`, `Modules/_testimportmultiple.cpython-313-x86_64-linux-gnu.so`, `Modules/_testimportmultiple.o`, `Modules/_testinternalcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testinternalcapi.o`, `Modules/_testinternalcapi/pytime.o`, `Modules/_testinternalcapi/set.o`, `Modules/_testinternalcapi/test_critical_sections.o`, `Modules/_testinternalcapi/test_lock.o`, `Modules/_testlimitedcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testlimitedcapi.o`, `Modules/_testlimitedcapi/abstract.o`, `Modules/_testlimitedcapi/bytearray.o`, `Modules/_testlimitedcapi/bytes.o`, `Modules/_testlimitedcapi/complex.o`, `Modules/_testlimitedcapi/dict.o`, `Modules/_testlimitedcapi/eval.o`, `Modules/_testlimitedcapi/file.o`, `Modules/_testlimitedcapi/float.o`, `Modules/_testlimitedcapi/heaptype_relative.o`, `Modules/_testlimitedcapi/import.o`, `Modules/_testlimitedcapi/list.o`, `Modules/_testlimitedcapi/long.o`, `Modules/_testlimitedcapi/object.o`, `Modules/_testlimitedcapi/pyos.o`, `Modules/_testlimitedcapi/set.o`, `Modules/_testlimitedcapi/sys.o`, `Modules/_testlimitedcapi/tuple.o`, `Modules/_testlimitedcapi/unicode.o`, `Modules/_testlimitedcapi/vectorcall_limited.o`, `Modules/_testmultiphase.cpython-313-x86_64-linux-gnu.so`, `Modules/_testmultiphase.o`, `Modules/_testsinglephase.cpython-313-x86_64-linux-gnu.so`, `Modules/_testsinglephase.o`, `Modules/_threadmodule.o`, `Modules/_tracemalloc.o`, `Modules/_typingmodule.o`, `Modules/_uuid.cpython-313-x86_64-linux-gnu.so`, `Modules/_uuidmodule.o`, `Modules/_weakref.o`, `Modules/_xxtestfuzz.cpython-313-x86_64-linux-gnu.so`, `Modules/_xxtestfuzz/_xxtestfuzz.o`, `Modules/_xxtestfuzz/fuzzer.o`, `Modules/_zoneinfo.cpython-313-x86_64-linux-gnu.so`, `Modules/_zoneinfo.o`, `Modules/array.cpython-313-x86_64-linux-gnu.so`, `Modules/arraymodule.o`, `Modules/atexitmodule.o`, `Modules/binascii.cpython-313-x86_64-linux-gnu.so`, `Modules/binascii.o`, `Modules/cjkcodecs/_codecs_cn.o`, `Modules/cjkcodecs/_codecs_hk.o`, `Modules/cjkcodecs/_codecs_iso2022.o`, `Modules/cjkcodecs/_codecs_jp.o`, `Modules/cjkcodecs/_codecs_kr.o`, `Modules/cjkcodecs/_codecs_tw.o`, `Modules/cjkcodecs/multibytecodec.o`, `Modules/cmath.cpython-313-x86_64-linux-gnu.so`, `Modules/cmathmodule.o`, `Modules/config.c`, `Modules/config.o`, `Modules/errnomodule.o`, `Modules/expat/libexpat.a`, `Modules/expat/xmlparse.o`, `Modules/expat/xmlrole.o`, `Modules/expat/xmltok.o`, `Modules/faulthandler.o`, `Modules/fcntl.cpython-313-x86_64-linux-gnu.so`, `Modules/fcntlmodule.o`, `Modules/gcmodule.o`, `Modules/getbuildinfo.o`, `Modules/getpath.o`, `Modules/getpath_noop.o`, `Modules/grp.cpython-313-x86_64-linux-gnu.so`, `Modules/grpmodule.o`, `Modules/itertoolsmodule.o`, `Modules/ld_so_aix`, `Modules/main.o`, `Modules/math.cpython-313-x86_64-linux-gnu.so`, `Modules/mathmodule.o`, `Modules/md5module.o`, `Modules/mmap.cpython-313-x86_64-linux-gnu.so`, `Modules/mmapmodule.o`, `Modules/posixmodule.o`, `Modules/pwdmodule.o`, `Modules/pyexpat.cpython-313-x86_64-linux-gnu.so`, `Modules/pyexpat.o`, `Modules/readline.cpython-313-x86_64-linux-gnu.so`, `Modules/readline.o`, `Modules/resource.cpython-313-x86_64-linux-gnu.so`, `Modules/resource.o`, `Modules/rotatingtree.o`, `Modules/select.cpython-313-x86_64-linux-gnu.so`, `Modules/selectmodule.o`, `Modules/sha1module.o`, `Modules/sha2module.o`, `Modules/sha3module.o`, `Modules/signalmodule.o`, `Modules/socketmodule.o`, `Modules/symtablemodule.o`, `Modules/syslog.cpython-313-x86_64-linux-gnu.so`, `Modules/syslogmodule.o`, `Modules/termios.cpython-313-x86_64-linux-gnu.so`, `Modules/termios.o`, `Modules/timemodule.o`, `Modules/unicodedata.cpython-313-x86_64-linux-gnu.so`, `Modules/unicodedata.o`, `Modules/xxlimited.cpython-313-x86_64-linux-gnu.so`, `Modules/xxlimited.o`, `Modules/xxlimited_35.cpython-313-x86_64-linux-gnu.so`, `Modules/xxlimited_35.o`, `Modules/xxsubtype.cpython-313-x86_64-linux-gnu.so`, `Modules/xxsubtype.o`, `Modules/zlib.cpython-313-x86_64-linux-gnu.so`, `Modules/zlibmodule.o`, `Objects/abstract.o`, `Objects/boolobject.o`, `Objects/bytearrayobject.o`, `Objects/bytes_methods.o`, `Objects/bytesobject.o`, `Objects/call.o`, `Objects/capsule.o`, `Objects/cellobject.o`, `Objects/classobject.o`, `Objects/codeobject.o`, `Objects/complexobject.o`, `Objects/descrobject.o`, `Objects/dictobject.o`, `Objects/enumobject.o`, `Objects/exceptions.o`, `Objects/fileobject.o`, `Objects/floatobject.o`, `Objects/frameobject.o`, `Objects/funcobject.o`, `Objects/genericaliasobject.o`, `Objects/genobject.o`, `Objects/iterobject.o`, `Objects/listobject.o`, `Objects/longobject.o`, `Objects/memoryobject.o`, `Objects/methodobject.o`, `Objects/moduleobject.o`, `Objects/namespaceobject.o`, `Objects/object.o`, `Objects/obmalloc.o`, `Objects/odictobject.o`, `Objects/picklebufobject.o`, `Objects/rangeobject.o`, `Objects/setobject.o`, `Objects/sliceobject.o`, `Objects/structseq.o`, `Objects/tupleobject.o`, `Objects/typeobject.o`, `Objects/typevarobject.o`, `Objects/unicodectype.o`, `Objects/unicodeobject.o`, `Objects/unionobject.o`, `Objects/weakrefobject.o`, `Parser/action_helpers.o`, `Parser/lexer/buffer.o`, `Parser/lexer/lexer.o`, `Parser/lexer/state.o`, `Parser/myreadline.o`, `Parser/parser.o`, `Parser/peg_api.o`, `Parser/pegen.o`, `Parser/pegen_errors.o`, `Parser/string_parser.o`, `Parser/token.o`, `Parser/tokenizer/file_tokenizer.o`, `Parser/tokenizer/helpers.o`, `Parser/tokenizer/readline_tokenizer.o`, `Parser/tokenizer/string_tokenizer.o`, `Parser/tokenizer/utf8_tokenizer.o`, `Programs/_bootstrap_python.o`, `Programs/_freeze_module`, `Programs/_freeze_module.o`, `Programs/_testembed`, `Programs/_testembed.o`, `Programs/python.o`, `Python/Python-ast.o`, `Python/Python-tokenize.o`, `Python/_warnings.o`, `Python/asdl.o`, `Python/asm_trampoline.o`, `Python/assemble.o`, `Python/ast.o`, `Python/ast_opt.o`, `Python/ast_unparse.o`, `Python/bltinmodule.o`, `Python/bootstrap_hash.o`, `Python/brc.o`, `Python/ceval.o`, `Python/ceval_gil.o`, `Python/codecs.o`, `Python/compile.o`, `Python/context.o`, `Python/critical_section.o`, `Python/crossinterp.o`, `Python/dtoa.o`, `Python/dynamic_annotations.o`, `Python/dynload_shlib.o`, `Python/errors.o`, `Python/fileutils.o`, `Python/flowgraph.o`, `Python/formatter_unicode.o`, `Python/frame.o`, `Python/frozen.o`, `Python/frozen_modules/__hello__.h`, `Python/frozen_modules/__phello__.h`, `Python/frozen_modules/__phello__.ham.eggs.h`, `Python/frozen_modules/__phello__.ham.h`, `Python/frozen_modules/__phello__.spam.h`, `Python/frozen_modules/_collections_abc.h`, `Python/frozen_modules/_sitebuiltins.h`, `Python/frozen_modules/abc.h`, `Python/frozen_modules/codecs.h`, `Python/frozen_modules/frozen_only.h`, `Python/frozen_modules/genericpath.h`, `Python/frozen_modules/getpath.h`, `Python/frozen_modules/importlib._bootstrap.h`, `Python/frozen_modules/importlib._bootstrap_external.h`, `Python/frozen_modules/importlib.machinery.h`, `Python/frozen_modules/importlib.util.h`, `Python/frozen_modules/io.h`, `Python/frozen_modules/ntpath.h`, `Python/frozen_modules/os.h`, `Python/frozen_modules/posixpath.h`, `Python/frozen_modules/runpy.h`, `Python/frozen_modules/site.h`, `Python/frozen_modules/stat.h`, `Python/frozen_modules/zipimport.h`, `Python/frozenmain.o`, `Python/future.o`, `Python/gc.o`, `Python/gc_free_threading.o`, `Python/gc_gil.o`, `Python/getargs.o`, `Python/getcompiler.o`, `Python/getcopyright.o`, `Python/getopt.o`, `Python/getplatform.o`, `Python/getversion.o`, `Python/hamt.o`, `Python/hashtable.o`, `Python/import.o`, `Python/importdl.o`, `Python/initconfig.o`, `Python/instruction_sequence.o`, `Python/instrumentation.o`, `Python/interpconfig.o`, `Python/intrinsics.o`, `Python/jit.o`, `Python/legacy_tracing.o`, `Python/lock.o`, `Python/marshal.o`, `Python/modsupport.o`, `Python/mysnprintf.o`, `Python/mystrtoul.o`, `Python/object_stack.o`, `Python/optimizer.o`, `Python/optimizer_analysis.o`, `Python/optimizer_symbols.o`, `Python/parking_lot.o`, `Python/pathconfig.o`, `Python/perf_jit_trampoline.o`, `Python/perf_trampoline.o`, `Python/preconfig.o`, `Python/pyarena.o`, `Python/pyctype.o`, `Python/pyfpe.o`, `Python/pyhash.o`, `Python/pylifecycle.o`, `Python/pymath.o`, `Python/pystate.o`, `Python/pystrcmp.o`, `Python/pystrhex.o`, `Python/pystrtod.o`, `Python/pythonrun.o`, `Python/pytime.o`, `Python/qsbr.o`, `Python/specialize.o`, `Python/structmember.o`, `Python/suggestions.o`, `Python/symtable.o`, `Python/sysmodule.o`, `Python/thread.o`, `Python/traceback.o`, `Python/tracemalloc.o`, `_bootstrap_python`, `build/lib.linux-x86_64-3.13/__pycache__/_sysconfigdata__linux_x86_64-linux-gnu.cpython-313.pyc`, `build/lib.linux-x86_64-3.13/_asyncio.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_bisect.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_blake2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_bz2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_cn.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_hk.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_iso2022.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_jp.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_kr.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_tw.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_contextvars.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_csv.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_ctypes.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_ctypes_test.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_curses.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_curses_panel.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_datetime.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_decimal.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_elementtree.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_hashlib.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_heapq.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpchannels.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpqueues.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpreters.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_json.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_lsprof.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_lzma.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_md5.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_multibytecodec.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_multiprocessing.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_opcode.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_pickle.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_posixshmem.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_posixsubprocess.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_queue.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_random.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha1.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha3.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_socket.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sqlite3.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_statistics.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_struct.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sysconfigdata__linux_x86_64-linux-gnu.py`, `build/lib.linux-x86_64-3.13/_testbuffer.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testclinic.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testclinic_limited.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testexternalinspection.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testimportmultiple.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testinternalcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testlimitedcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testmultiphase.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testsinglephase.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_uuid.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_xxtestfuzz.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_zoneinfo.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/array.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/binascii.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/cmath.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/fcntl.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/grp.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/math.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/mmap.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/pyexpat.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/readline.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/resource.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/select.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/syslog.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/termios.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/unicodedata.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxlimited.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxlimited_35.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxsubtype.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/zlib.cpython-313-x86_64-linux-gnu.so`, `build/scripts-3.13/idle3.13`, `build/scripts-3.13/pydoc3.13`, `config.log`, `config.status`, `libpython3.13.a`, `platform`, `pybuilddir.txt`, `pyconfig.h`, `python`, `python-config`, `python-config.py`, `python-gdb.py`, but `## Git Add Paths` lists `None`. Update `## Git Add Paths` to match the real shipped file set exactly, and make sure `## Issue Connection` explains every functional file that remains in the patch.
2. Missing from `## Git Add Paths`: `Lib/__pycache__/__future__.cpython-313.pyc`, `Lib/__pycache__/_collections_abc.cpython-313.pyc`, `Lib/__pycache__/_colorize.cpython-313.pyc`, `Lib/__pycache__/_compat_pickle.cpython-313.pyc`, `Lib/__pycache__/_compression.cpython-313.pyc`, `Lib/__pycache__/_opcode_metadata.cpython-313.pyc`, `Lib/__pycache__/_sitebuiltins.cpython-313.pyc`, `Lib/__pycache__/_weakrefset.cpython-313.pyc`, `Lib/__pycache__/abc.cpython-313.pyc`, `Lib/__pycache__/argparse.cpython-313.pyc`, `Lib/__pycache__/ast.cpython-313.pyc`, `Lib/__pycache__/bz2.cpython-313.pyc`, `Lib/__pycache__/codecs.cpython-313.pyc`, `Lib/__pycache__/contextlib.cpython-313.pyc`, `Lib/__pycache__/contextvars.cpython-313.pyc`, `Lib/__pycache__/copy.cpython-313.pyc`, `Lib/__pycache__/copyreg.cpython-313.pyc`, `Lib/__pycache__/datetime.cpython-313.pyc`, `Lib/__pycache__/dis.cpython-313.pyc`, `Lib/__pycache__/enum.cpython-313.pyc`, `Lib/__pycache__/fnmatch.cpython-313.pyc`, `Lib/__pycache__/functools.cpython-313.pyc`, `Lib/__pycache__/genericpath.cpython-313.pyc`, `Lib/__pycache__/gettext.cpython-313.pyc`, `Lib/__pycache__/glob.cpython-313.pyc`, `Lib/__pycache__/heapq.cpython-313.pyc`, `Lib/__pycache__/inspect.cpython-313.pyc`, `Lib/__pycache__/io.cpython-313.pyc`, `Lib/__pycache__/keyword.cpython-313.pyc`, `Lib/__pycache__/linecache.cpython-313.pyc`, `Lib/__pycache__/locale.cpython-313.pyc`, `Lib/__pycache__/lzma.cpython-313.pyc`, `Lib/__pycache__/numbers.cpython-313.pyc`, `Lib/__pycache__/opcode.cpython-313.pyc`, `Lib/__pycache__/operator.cpython-313.pyc`, `Lib/__pycache__/os.cpython-313.pyc`, `Lib/__pycache__/posixpath.cpython-313.pyc`, `Lib/__pycache__/reprlib.cpython-313.pyc`, `Lib/__pycache__/selectors.cpython-313.pyc`, `Lib/__pycache__/shutil.cpython-313.pyc`, `Lib/__pycache__/signal.cpython-313.pyc`, `Lib/__pycache__/site.cpython-313.pyc`, `Lib/__pycache__/socket.cpython-313.pyc`, `Lib/__pycache__/ssl.cpython-313.pyc`, `Lib/__pycache__/stat.cpython-313.pyc`, `Lib/__pycache__/string.cpython-313.pyc`, `Lib/__pycache__/struct.cpython-313.pyc`, `Lib/__pycache__/subprocess.cpython-313.pyc`, `Lib/__pycache__/textwrap.cpython-313.pyc`, `Lib/__pycache__/threading.cpython-313.pyc`, `Lib/__pycache__/token.cpython-313.pyc`, `Lib/__pycache__/tokenize.cpython-313.pyc`, `Lib/__pycache__/traceback.cpython-313.pyc`, `Lib/__pycache__/types.cpython-313.pyc`, `Lib/__pycache__/typing.cpython-313.pyc`, `Lib/__pycache__/warnings.cpython-313.pyc`, `Lib/__pycache__/weakref.cpython-313.pyc`, `Lib/asyncio/__pycache__/__init__.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_events.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_futures.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_subprocess.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_tasks.cpython-313.pyc`, `Lib/asyncio/__pycache__/constants.cpython-313.pyc`, `Lib/asyncio/__pycache__/coroutines.cpython-313.pyc`, `Lib/asyncio/__pycache__/events.cpython-313.pyc`, `Lib/asyncio/__pycache__/exceptions.cpython-313.pyc`, `Lib/asyncio/__pycache__/format_helpers.cpython-313.pyc`, `Lib/asyncio/__pycache__/futures.cpython-313.pyc`, `Lib/asyncio/__pycache__/locks.cpython-313.pyc`, `Lib/asyncio/__pycache__/log.cpython-313.pyc`, `Lib/asyncio/__pycache__/mixins.cpython-313.pyc`, `Lib/asyncio/__pycache__/protocols.cpython-313.pyc`, `Lib/asyncio/__pycache__/queues.cpython-313.pyc`, `Lib/asyncio/__pycache__/runners.cpython-313.pyc`, `Lib/asyncio/__pycache__/selector_events.cpython-313.pyc`, `Lib/asyncio/__pycache__/sslproto.cpython-313.pyc`, `Lib/asyncio/__pycache__/staggered.cpython-313.pyc`, `Lib/asyncio/__pycache__/streams.cpython-313.pyc`, `Lib/asyncio/__pycache__/subprocess.cpython-313.pyc`, `Lib/asyncio/__pycache__/taskgroups.cpython-313.pyc`, `Lib/asyncio/__pycache__/tasks.cpython-313.pyc`, `Lib/asyncio/__pycache__/threads.cpython-313.pyc`, `Lib/asyncio/__pycache__/timeouts.cpython-313.pyc`, `Lib/asyncio/__pycache__/transports.cpython-313.pyc`, `Lib/asyncio/__pycache__/trsock.cpython-313.pyc`, `Lib/asyncio/__pycache__/unix_events.cpython-313.pyc`, `Lib/collections/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/futures/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/futures/__pycache__/_base.cpython-313.pyc`, `Lib/encodings/__pycache__/__init__.cpython-313.pyc`, `Lib/encodings/__pycache__/aliases.cpython-313.pyc`, `Lib/encodings/__pycache__/ascii.cpython-313.pyc`, `Lib/encodings/__pycache__/utf_8.cpython-313.pyc`, `Lib/importlib/__pycache__/__init__.cpython-313.pyc`, `Lib/importlib/__pycache__/_abc.cpython-313.pyc`, `Lib/logging/__pycache__/__init__.cpython-313.pyc`, `Lib/pathlib/__pycache__/__init__.cpython-313.pyc`, `Lib/pathlib/__pycache__/_abc.cpython-313.pyc`, `Lib/pathlib/__pycache__/_local.cpython-313.pyc`, `Lib/re/__pycache__/__init__.cpython-313.pyc`, `Lib/re/__pycache__/_casefix.cpython-313.pyc`, `Lib/re/__pycache__/_compiler.cpython-313.pyc`, `Lib/re/__pycache__/_constants.cpython-313.pyc`, `Lib/re/__pycache__/_parser.cpython-313.pyc`, `Lib/sysconfig/__pycache__/__init__.cpython-313.pyc`, `Lib/sysconfig/__pycache__/__main__.cpython-313.pyc`, `Lib/xml/__pycache__/__init__.cpython-313.pyc`, `Lib/xml/etree/__pycache__/ElementPath.cpython-313.pyc`, `Lib/xml/etree/__pycache__/__init__.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/__init__.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/_common.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/_tzpath.cpython-313.pyc`, `Makefile`, `Makefile.pre`, `Misc/python-config.sh`, `Misc/python-embed.pc`, `Misc/python.pc`, `Modules/Setup.bootstrap`, `Modules/Setup.local`, `Modules/Setup.stdlib`, `Modules/_abc.o`, `Modules/_asyncio.cpython-313-x86_64-linux-gnu.so`, `Modules/_asynciomodule.o`, `Modules/_bisect.cpython-313-x86_64-linux-gnu.so`, `Modules/_bisectmodule.o`, `Modules/_blake2.cpython-313-x86_64-linux-gnu.so`, `Modules/_blake2/blake2b_impl.o`, `Modules/_blake2/blake2module.o`, `Modules/_blake2/blake2s_impl.o`, `Modules/_bz2.cpython-313-x86_64-linux-gnu.so`, `Modules/_bz2module.o`, `Modules/_codecs_cn.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_hk.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_iso2022.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_jp.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_kr.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_tw.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecsmodule.o`, `Modules/_collectionsmodule.o`, `Modules/_contextvars.cpython-313-x86_64-linux-gnu.so`, `Modules/_contextvarsmodule.o`, `Modules/_csv.cpython-313-x86_64-linux-gnu.so`, `Modules/_csv.o`, `Modules/_ctypes.cpython-313-x86_64-linux-gnu.so`, `Modules/_ctypes/_ctypes.o`, `Modules/_ctypes/_ctypes_test.o`, `Modules/_ctypes/callbacks.o`, `Modules/_ctypes/callproc.o`, `Modules/_ctypes/cfield.o`, `Modules/_ctypes/stgdict.o`, `Modules/_ctypes_test.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses_panel.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses_panel.o`, `Modules/_cursesmodule.o`, `Modules/_datetime.cpython-313-x86_64-linux-gnu.so`, `Modules/_datetimemodule.o`, `Modules/_decimal.cpython-313-x86_64-linux-gnu.so`, `Modules/_decimal/_decimal.o`, `Modules/_decimal/libmpdec/basearith.o`, `Modules/_decimal/libmpdec/constants.o`, `Modules/_decimal/libmpdec/context.o`, `Modules/_decimal/libmpdec/convolute.o`, `Modules/_decimal/libmpdec/crt.o`, `Modules/_decimal/libmpdec/difradix2.o`, `Modules/_decimal/libmpdec/fnt.o`, `Modules/_decimal/libmpdec/fourstep.o`, `Modules/_decimal/libmpdec/io.o`, `Modules/_decimal/libmpdec/libmpdec.a`, `Modules/_decimal/libmpdec/mpalloc.o`, `Modules/_decimal/libmpdec/mpdecimal.o`, `Modules/_decimal/libmpdec/numbertheory.o`, `Modules/_decimal/libmpdec/sixstep.o`, `Modules/_decimal/libmpdec/transpose.o`, `Modules/_elementtree.cpython-313-x86_64-linux-gnu.so`, `Modules/_elementtree.o`, `Modules/_functoolsmodule.o`, `Modules/_hacl/Hacl_Hash_MD5.o`, `Modules/_hacl/Hacl_Hash_SHA1.o`, `Modules/_hacl/Hacl_Hash_SHA2.o`, `Modules/_hacl/Hacl_Hash_SHA3.o`, `Modules/_hacl/libHacl_Hash_SHA2.a`, `Modules/_hashlib.cpython-313-x86_64-linux-gnu.so`, `Modules/_hashopenssl.o`, `Modules/_heapq.cpython-313-x86_64-linux-gnu.so`, `Modules/_heapqmodule.o`, `Modules/_interpchannels.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpchannelsmodule.o`, `Modules/_interpqueues.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpqueuesmodule.o`, `Modules/_interpreters.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpretersmodule.o`, `Modules/_io/_iomodule.o`, `Modules/_io/bufferedio.o`, `Modules/_io/bytesio.o`, `Modules/_io/fileio.o`, `Modules/_io/iobase.o`, `Modules/_io/stringio.o`, `Modules/_io/textio.o`, `Modules/_json.cpython-313-x86_64-linux-gnu.so`, `Modules/_json.o`, `Modules/_localemodule.o`, `Modules/_lsprof.cpython-313-x86_64-linux-gnu.so`, `Modules/_lsprof.o`, `Modules/_lzma.cpython-313-x86_64-linux-gnu.so`, `Modules/_lzmamodule.o`, `Modules/_md5.cpython-313-x86_64-linux-gnu.so`, `Modules/_multibytecodec.cpython-313-x86_64-linux-gnu.so`, `Modules/_multiprocessing.cpython-313-x86_64-linux-gnu.so`, `Modules/_multiprocessing/multiprocessing.o`, `Modules/_multiprocessing/posixshmem.o`, `Modules/_multiprocessing/semaphore.o`, `Modules/_opcode.cpython-313-x86_64-linux-gnu.so`, `Modules/_opcode.o`, `Modules/_operator.o`, `Modules/_pickle.cpython-313-x86_64-linux-gnu.so`, `Modules/_pickle.o`, `Modules/_posixshmem.cpython-313-x86_64-linux-gnu.so`, `Modules/_posixsubprocess.cpython-313-x86_64-linux-gnu.so`, `Modules/_posixsubprocess.o`, `Modules/_queue.cpython-313-x86_64-linux-gnu.so`, `Modules/_queuemodule.o`, `Modules/_random.cpython-313-x86_64-linux-gnu.so`, `Modules/_randommodule.o`, `Modules/_sha1.cpython-313-x86_64-linux-gnu.so`, `Modules/_sha2.cpython-313-x86_64-linux-gnu.so`, `Modules/_sha3.cpython-313-x86_64-linux-gnu.so`, `Modules/_socket.cpython-313-x86_64-linux-gnu.so`, `Modules/_sqlite/blob.o`, `Modules/_sqlite/connection.o`, `Modules/_sqlite/cursor.o`, `Modules/_sqlite/microprotocols.o`, `Modules/_sqlite/module.o`, `Modules/_sqlite/prepare_protocol.o`, `Modules/_sqlite/row.o`, `Modules/_sqlite/statement.o`, `Modules/_sqlite/util.o`, `Modules/_sqlite3.cpython-313-x86_64-linux-gnu.so`, `Modules/_sre/sre.o`, `Modules/_ssl.o`, `Modules/_ssl_failed.cpython-313-x86_64-linux-gnu.so`, `Modules/_stat.o`, `Modules/_statistics.cpython-313-x86_64-linux-gnu.so`, `Modules/_statisticsmodule.o`, `Modules/_struct.cpython-313-x86_64-linux-gnu.so`, `Modules/_struct.o`, `Modules/_suggestions.o`, `Modules/_sysconfig.o`, `Modules/_testbuffer.cpython-313-x86_64-linux-gnu.so`, `Modules/_testbuffer.o`, `Modules/_testcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testcapi/abstract.o`, `Modules/_testcapi/buffer.o`, `Modules/_testcapi/bytes.o`, `Modules/_testcapi/code.o`, `Modules/_testcapi/codec.o`, `Modules/_testcapi/complex.o`, `Modules/_testcapi/datetime.o`, `Modules/_testcapi/dict.o`, `Modules/_testcapi/docstring.o`, `Modules/_testcapi/exceptions.o`, `Modules/_testcapi/file.o`, `Modules/_testcapi/float.o`, `Modules/_testcapi/gc.o`, `Modules/_testcapi/getargs.o`, `Modules/_testcapi/hash.o`, `Modules/_testcapi/heaptype.o`, `Modules/_testcapi/immortal.o`, `Modules/_testcapi/list.o`, `Modules/_testcapi/long.o`, `Modules/_testcapi/mem.o`, `Modules/_testcapi/monitoring.o`, `Modules/_testcapi/numbers.o`, `Modules/_testcapi/object.o`, `Modules/_testcapi/pyatomic.o`, `Modules/_testcapi/run.o`, `Modules/_testcapi/set.o`, `Modules/_testcapi/structmember.o`, `Modules/_testcapi/time.o`, `Modules/_testcapi/tuple.o`, `Modules/_testcapi/unicode.o`, `Modules/_testcapi/vectorcall.o`, `Modules/_testcapi/watchers.o`, `Modules/_testcapimodule.o`, `Modules/_testclinic.cpython-313-x86_64-linux-gnu.so`, `Modules/_testclinic.o`, `Modules/_testclinic_limited.cpython-313-x86_64-linux-gnu.so`, `Modules/_testclinic_limited.o`, `Modules/_testexternalinspection.cpython-313-x86_64-linux-gnu.so`, `Modules/_testexternalinspection.o`, `Modules/_testimportmultiple.cpython-313-x86_64-linux-gnu.so`, `Modules/_testimportmultiple.o`, `Modules/_testinternalcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testinternalcapi.o`, `Modules/_testinternalcapi/pytime.o`, `Modules/_testinternalcapi/set.o`, `Modules/_testinternalcapi/test_critical_sections.o`, `Modules/_testinternalcapi/test_lock.o`, `Modules/_testlimitedcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testlimitedcapi.o`, `Modules/_testlimitedcapi/abstract.o`, `Modules/_testlimitedcapi/bytearray.o`, `Modules/_testlimitedcapi/bytes.o`, `Modules/_testlimitedcapi/complex.o`, `Modules/_testlimitedcapi/dict.o`, `Modules/_testlimitedcapi/eval.o`, `Modules/_testlimitedcapi/file.o`, `Modules/_testlimitedcapi/float.o`, `Modules/_testlimitedcapi/heaptype_relative.o`, `Modules/_testlimitedcapi/import.o`, `Modules/_testlimitedcapi/list.o`, `Modules/_testlimitedcapi/long.o`, `Modules/_testlimitedcapi/object.o`, `Modules/_testlimitedcapi/pyos.o`, `Modules/_testlimitedcapi/set.o`, `Modules/_testlimitedcapi/sys.o`, `Modules/_testlimitedcapi/tuple.o`, `Modules/_testlimitedcapi/unicode.o`, `Modules/_testlimitedcapi/vectorcall_limited.o`, `Modules/_testmultiphase.cpython-313-x86_64-linux-gnu.so`, `Modules/_testmultiphase.o`, `Modules/_testsinglephase.cpython-313-x86_64-linux-gnu.so`, `Modules/_testsinglephase.o`, `Modules/_threadmodule.o`, `Modules/_tracemalloc.o`, `Modules/_typingmodule.o`, `Modules/_uuid.cpython-313-x86_64-linux-gnu.so`, `Modules/_uuidmodule.o`, `Modules/_weakref.o`, `Modules/_xxtestfuzz.cpython-313-x86_64-linux-gnu.so`, `Modules/_xxtestfuzz/_xxtestfuzz.o`, `Modules/_xxtestfuzz/fuzzer.o`, `Modules/_zoneinfo.cpython-313-x86_64-linux-gnu.so`, `Modules/_zoneinfo.o`, `Modules/array.cpython-313-x86_64-linux-gnu.so`, `Modules/arraymodule.o`, `Modules/atexitmodule.o`, `Modules/binascii.cpython-313-x86_64-linux-gnu.so`, `Modules/binascii.o`, `Modules/cjkcodecs/_codecs_cn.o`, `Modules/cjkcodecs/_codecs_hk.o`, `Modules/cjkcodecs/_codecs_iso2022.o`, `Modules/cjkcodecs/_codecs_jp.o`, `Modules/cjkcodecs/_codecs_kr.o`, `Modules/cjkcodecs/_codecs_tw.o`, `Modules/cjkcodecs/multibytecodec.o`, `Modules/cmath.cpython-313-x86_64-linux-gnu.so`, `Modules/cmathmodule.o`, `Modules/config.c`, `Modules/config.o`, `Modules/errnomodule.o`, `Modules/expat/libexpat.a`, `Modules/expat/xmlparse.o`, `Modules/expat/xmlrole.o`, `Modules/expat/xmltok.o`, `Modules/faulthandler.o`, `Modules/fcntl.cpython-313-x86_64-linux-gnu.so`, `Modules/fcntlmodule.o`, `Modules/gcmodule.o`, `Modules/getbuildinfo.o`, `Modules/getpath.o`, `Modules/getpath_noop.o`, `Modules/grp.cpython-313-x86_64-linux-gnu.so`, `Modules/grpmodule.o`, `Modules/itertoolsmodule.o`, `Modules/ld_so_aix`, `Modules/main.o`, `Modules/math.cpython-313-x86_64-linux-gnu.so`, `Modules/mathmodule.o`, `Modules/md5module.o`, `Modules/mmap.cpython-313-x86_64-linux-gnu.so`, `Modules/mmapmodule.o`, `Modules/posixmodule.o`, `Modules/pwdmodule.o`, `Modules/pyexpat.cpython-313-x86_64-linux-gnu.so`, `Modules/pyexpat.o`, `Modules/readline.cpython-313-x86_64-linux-gnu.so`, `Modules/readline.o`, `Modules/resource.cpython-313-x86_64-linux-gnu.so`, `Modules/resource.o`, `Modules/rotatingtree.o`, `Modules/select.cpython-313-x86_64-linux-gnu.so`, `Modules/selectmodule.o`, `Modules/sha1module.o`, `Modules/sha2module.o`, `Modules/sha3module.o`, `Modules/signalmodule.o`, `Modules/socketmodule.o`, `Modules/symtablemodule.o`, `Modules/syslog.cpython-313-x86_64-linux-gnu.so`, `Modules/syslogmodule.o`, `Modules/termios.cpython-313-x86_64-linux-gnu.so`, `Modules/termios.o`, `Modules/timemodule.o`, `Modules/unicodedata.cpython-313-x86_64-linux-gnu.so`, `Modules/unicodedata.o`, `Modules/xxlimited.cpython-313-x86_64-linux-gnu.so`, `Modules/xxlimited.o`, `Modules/xxlimited_35.cpython-313-x86_64-linux-gnu.so`, `Modules/xxlimited_35.o`, `Modules/xxsubtype.cpython-313-x86_64-linux-gnu.so`, `Modules/xxsubtype.o`, `Modules/zlib.cpython-313-x86_64-linux-gnu.so`, `Modules/zlibmodule.o`, `Objects/abstract.o`, `Objects/boolobject.o`, `Objects/bytearrayobject.o`, `Objects/bytes_methods.o`, `Objects/bytesobject.o`, `Objects/call.o`, `Objects/capsule.o`, `Objects/cellobject.o`, `Objects/classobject.o`, `Objects/codeobject.o`, `Objects/complexobject.o`, `Objects/descrobject.o`, `Objects/dictobject.o`, `Objects/enumobject.o`, `Objects/exceptions.o`, `Objects/fileobject.o`, `Objects/floatobject.o`, `Objects/frameobject.o`, `Objects/funcobject.o`, `Objects/genericaliasobject.o`, `Objects/genobject.o`, `Objects/iterobject.o`, `Objects/listobject.o`, `Objects/longobject.o`, `Objects/memoryobject.o`, `Objects/methodobject.o`, `Objects/moduleobject.o`, `Objects/namespaceobject.o`, `Objects/object.o`, `Objects/obmalloc.o`, `Objects/odictobject.o`, `Objects/picklebufobject.o`, `Objects/rangeobject.o`, `Objects/setobject.o`, `Objects/sliceobject.o`, `Objects/structseq.o`, `Objects/tupleobject.o`, `Objects/typeobject.o`, `Objects/typevarobject.o`, `Objects/unicodectype.o`, `Objects/unicodeobject.o`, `Objects/unionobject.o`, `Objects/weakrefobject.o`, `Parser/action_helpers.o`, `Parser/lexer/buffer.o`, `Parser/lexer/lexer.o`, `Parser/lexer/state.o`, `Parser/myreadline.o`, `Parser/parser.o`, `Parser/peg_api.o`, `Parser/pegen.o`, `Parser/pegen_errors.o`, `Parser/string_parser.o`, `Parser/token.o`, `Parser/tokenizer/file_tokenizer.o`, `Parser/tokenizer/helpers.o`, `Parser/tokenizer/readline_tokenizer.o`, `Parser/tokenizer/string_tokenizer.o`, `Parser/tokenizer/utf8_tokenizer.o`, `Programs/_bootstrap_python.o`, `Programs/_freeze_module`, `Programs/_freeze_module.o`, `Programs/_testembed`, `Programs/_testembed.o`, `Programs/python.o`, `Python/Python-ast.o`, `Python/Python-tokenize.o`, `Python/_warnings.o`, `Python/asdl.o`, `Python/asm_trampoline.o`, `Python/assemble.o`, `Python/ast.o`, `Python/ast_opt.o`, `Python/ast_unparse.o`, `Python/bltinmodule.o`, `Python/bootstrap_hash.o`, `Python/brc.o`, `Python/ceval.o`, `Python/ceval_gil.o`, `Python/codecs.o`, `Python/compile.o`, `Python/context.o`, `Python/critical_section.o`, `Python/crossinterp.o`, `Python/dtoa.o`, `Python/dynamic_annotations.o`, `Python/dynload_shlib.o`, `Python/errors.o`, `Python/fileutils.o`, `Python/flowgraph.o`, `Python/formatter_unicode.o`, `Python/frame.o`, `Python/frozen.o`, `Python/frozen_modules/__hello__.h`, `Python/frozen_modules/__phello__.h`, `Python/frozen_modules/__phello__.ham.eggs.h`, `Python/frozen_modules/__phello__.ham.h`, `Python/frozen_modules/__phello__.spam.h`, `Python/frozen_modules/_collections_abc.h`, `Python/frozen_modules/_sitebuiltins.h`, `Python/frozen_modules/abc.h`, `Python/frozen_modules/codecs.h`, `Python/frozen_modules/frozen_only.h`, `Python/frozen_modules/genericpath.h`, `Python/frozen_modules/getpath.h`, `Python/frozen_modules/importlib._bootstrap.h`, `Python/frozen_modules/importlib._bootstrap_external.h`, `Python/frozen_modules/importlib.machinery.h`, `Python/frozen_modules/importlib.util.h`, `Python/frozen_modules/io.h`, `Python/frozen_modules/ntpath.h`, `Python/frozen_modules/os.h`, `Python/frozen_modules/posixpath.h`, `Python/frozen_modules/runpy.h`, `Python/frozen_modules/site.h`, `Python/frozen_modules/stat.h`, `Python/frozen_modules/zipimport.h`, `Python/frozenmain.o`, `Python/future.o`, `Python/gc.o`, `Python/gc_free_threading.o`, `Python/gc_gil.o`, `Python/getargs.o`, `Python/getcompiler.o`, `Python/getcopyright.o`, `Python/getopt.o`, `Python/getplatform.o`, `Python/getversion.o`, `Python/hamt.o`, `Python/hashtable.o`, `Python/import.o`, `Python/importdl.o`, `Python/initconfig.o`, `Python/instruction_sequence.o`, `Python/instrumentation.o`, `Python/interpconfig.o`, `Python/intrinsics.o`, `Python/jit.o`, `Python/legacy_tracing.o`, `Python/lock.o`, `Python/marshal.o`, `Python/modsupport.o`, `Python/mysnprintf.o`, `Python/mystrtoul.o`, `Python/object_stack.o`, `Python/optimizer.o`, `Python/optimizer_analysis.o`, `Python/optimizer_symbols.o`, `Python/parking_lot.o`, `Python/pathconfig.o`, `Python/perf_jit_trampoline.o`, `Python/perf_trampoline.o`, `Python/preconfig.o`, `Python/pyarena.o`, `Python/pyctype.o`, `Python/pyfpe.o`, `Python/pyhash.o`, `Python/pylifecycle.o`, `Python/pymath.o`, `Python/pystate.o`, `Python/pystrcmp.o`, `Python/pystrhex.o`, `Python/pystrtod.o`, `Python/pythonrun.o`, `Python/pytime.o`, `Python/qsbr.o`, `Python/specialize.o`, `Python/structmember.o`, `Python/suggestions.o`, `Python/symtable.o`, `Python/sysmodule.o`, `Python/thread.o`, `Python/traceback.o`, `Python/tracemalloc.o`, `_bootstrap_python`, `build/lib.linux-x86_64-3.13/__pycache__/_sysconfigdata__linux_x86_64-linux-gnu.cpython-313.pyc`, `build/lib.linux-x86_64-3.13/_asyncio.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_bisect.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_blake2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_bz2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_cn.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_hk.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_iso2022.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_jp.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_kr.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_tw.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_contextvars.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_csv.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_ctypes.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_ctypes_test.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_curses.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_curses_panel.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_datetime.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_decimal.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_elementtree.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_hashlib.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_heapq.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpchannels.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpqueues.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpreters.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_json.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_lsprof.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_lzma.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_md5.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_multibytecodec.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_multiprocessing.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_opcode.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_pickle.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_posixshmem.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_posixsubprocess.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_queue.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_random.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha1.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha3.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_socket.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sqlite3.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_statistics.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_struct.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sysconfigdata__linux_x86_64-linux-gnu.py`, `build/lib.linux-x86_64-3.13/_testbuffer.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testclinic.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testclinic_limited.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testexternalinspection.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testimportmultiple.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testinternalcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testlimitedcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testmultiphase.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testsinglephase.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_uuid.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_xxtestfuzz.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_zoneinfo.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/array.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/binascii.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/cmath.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/fcntl.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/grp.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/math.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/mmap.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/pyexpat.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/readline.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/resource.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/select.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/syslog.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/termios.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/unicodedata.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxlimited.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxlimited_35.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxsubtype.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/zlib.cpython-313-x86_64-linux-gnu.so`, `build/scripts-3.13/idle3.13`, `build/scripts-3.13/pydoc3.13`, `config.log`, `config.status`, `libpython3.13.a`, `platform`, `pybuilddir.txt`, `pyconfig.h`, `python`, `python-config`, `python-config.py`, `python-gdb.py`.
2. Listed in `## Git Add Paths` but not actually changed: `None`.

## Refinement Pass 1

Subject: Diagnose python3.13 poll-loop attribution

## Commit Message
No source change. The collected signal points to Python applications waking from finite `poll()` timeouts, while CPython’s `select.poll()` implementation already blocks in the platform `poll()` call using the local timeout helpers. The review finding was metadata drift from validation artifacts; those generated files were cleaned so the no-patch diagnosis matches the workspace.

## Evidence Confidence
inferred

## Issue Connection
Fixer collected perf, strace, and `/proc` evidence for `/usr/bin/python3.13`: a `supervisord` process repeatedly called `wait4(..., WNOHANG)` and then `poll(..., 1000)`, with each `poll()` timing out after about one second, while `/proc` showed the thread sleeping in `poll_schedule_timeout`. The cautious inference is that an application-level supervisor loop was attributed to the interpreter process, not that CPython’s runtime is spinning.

I followed the planning pass and kept this as a no-patch diagnosis. I rechecked CPython’s `README.rst` contribution/build guidance and the relevant subsystem conventions: `Lib/selectors.py` rounds positive selector timeouts to milliseconds, and `Modules/selectmodule.c` uses `_PyTime_*`, `_PyDeadline_*`, `Py_BEGIN_ALLOW_THREADS`, and EINTR retry logic around the platform `poll()` call. No relevant local helper was missing.

The specific refinement was to address the review finding by cleaning unintended generated build artifacts and bytecode caches from the validation run. The expected effect is no runtime behavior change and no source diff: the workspace now matches `## Git Add Paths: None` instead of accidentally carrying build outputs.

## Git Add Paths
None

## Validation
Previous project-level validation in this proposal: `./configure && make` completed with exit code 0 and produced `./python`. It reported optional module issues: `_ssl` failed to import because of undefined symbol `TLSv1_method`; `_dbm`, `_gdbm`, and `_tkinter` were missing.

Previous independent reproduction attempt: `strace -tt -T -e poll ./python -c '...'` was blocked by sandbox ptrace restrictions: `PTRACE_TRACEME: Operation not permitted` and `ptrace(PTRACE_SEIZE, 4): Operation not permitted`.

Previous bounded smoke check without ptrace: `/usr/bin/time -f 'elapsed=%e cpu=%P' ./python -c '...'` returned `ready=[] elapsed=0.501`, with process `elapsed=0.52 cpu=1%`; it did not reproduce a busy loop.

Refinement checks run:
`make distclean` cleaned validation artifacts.
`git diff --stat` produced no output.
`git status --short` produced no output.

I did not rerun `./configure && make` or `make check` after cleanup because there is still no source patch, and rerunning them would recreate the build artifacts that the review asked to remove.

## Review Pass 2

RESULT: ok

The refined workspace is clean: `git status --short` and `git diff --stat` both produced no output, so `## Git Add Paths: None` now matches the actual patch state.

The no-patch diagnosis is consistent with the evidence level. The author does not claim a reproduced CPython bug, keeps `## Evidence Confidence` as `inferred`, explains the collected `poll`/`wait4` signal cautiously, names the relevant CPython timeout helpers and conventions, and reports the validation artifact cleanup requested by the prior review. No source-change, security, helper-API, or maintainer-facing explanation issues remain.

diagnosis-only report

report

python3.13 likely remains stuck in a busy-poll loop. A diagnosis report and patch proposal were created locally.

state: readycreated: 2026-05-18 19:26 UTCvalidation: ready
Published session

Prompt

## Plan Pass

You are planning a fixer patch before any edits happen.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. The original pre-edit snapshot is available at `./source` if you need to inspect it. For interpreter processes, plan from the script/application entrypoint evidence first and include the runtime only as a second investigation target unless the evidence proves a runtime bug.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround. Inspect the relevant code, nearby callers, project contribution docs, and local helper/compat APIs, but do not edit files in this pass.

Return a short markdown plan with these exact sections:

## Problem
## Evidence Confidence
## Proposed Subject
## Patch Plan
## Risks
## Validation

Classify `## Evidence Confidence` as exactly one of `reproduced`, `observed`, or `inferred`. Use `inferred` only for a no-patch diagnosis/report plan unless you can name the extra evidence you will collect before editing; inferred source patches are blocked by Fixer because they are not pull-request-ready. For `observed` source-patch plans, plan to say in the final `## Issue Connection` that the failure was observed by Fixer and not independently reproduced. If the plan touches authentication, authorization, credentials, cryptography, sandboxing, permissions, or timing/throttling behavior, treat it as security-sensitive: do not plan a source patch unless validation can reproduce the behavior and analyze the security impact; otherwise plan a no-patch diagnosis/report. The plan must explain how the proposed code change addresses the observed issue evidence, call out any prior Fixer patch that should be improved or replaced, reject awkward control flow such as avoidable `goto` if there is a cleaner bounded alternative, name any local helper APIs or maintainer conventions the patch should follow, and keep the intended maintainer-facing explanation clear enough that someone unfamiliar with the local complaint wording can still follow the fix. In `## Validation`, name the reproducible configure/build/test entrypoint you will try from the workspace root before any focused leaf compile or smoke check, and include one bounded independent reproduction attempt for the collected failure signal when it is safe and cheap. Do not plan to claim `reproduced` unless that reproduction command or test can actually show the failure.

## Patch Pass

You are working on a bounded fixer proposal.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. Produce the smallest reasonable patch for the target repository, keep the change upstreamable, prefer the clearest control flow available, and do not keep avoidable `goto` when a simpler structure would read better. Before introducing new file, process, allocation, locking, networking, or platform APIs, inspect nearby code and project contribution docs for existing helpers or compatibility wrappers and use those local patterns unless you can explain why they do not fit. Validate from a reproducible workspace-root entrypoint before falling back to focused leaf commands; if a build or test cannot run, report the exact command, the exact blocker, and any narrower check you ran instead. During validation, also try one bounded independent reproduction of the collected failure signal when it is safe and cheap, such as a failing test, smoke command, perf/strace comparison, or before/after runtime check. Only use `reproduced` if that command or test actually reproduced the failure; otherwise keep `observed` and report the reproduction blocker. The final explanation must connect the observed issue evidence to the actual code change, not just paraphrase the diff. Write like a maintainer is going to read the patch mail cold: explain the bug in plain language, define subsystem-specific jargon the first time you need it, and make the causal story obvious. Explicitly classify evidence confidence as `reproduced`, `observed`, or `inferred`: `reproduced` means you reproduced the failure locally; `observed` means Fixer has direct crash/log/trace evidence but you did not independently reproduce it; `inferred` means the source patch is not pull-request-ready, so do not leave a source diff unless you first gather stronger observed/reproduced evidence; otherwise return a no-patch diagnosis/report. For any source-changing `observed` patch, say explicitly in `## Issue Connection` that the failure was observed by Fixer and not independently reproduced. Security-sensitive areas such as authentication, authorization, credentials, cryptography, sandboxing, permissions, and timing/throttling behavior need reproduced evidence plus explicit security-impact analysis before leaving a source diff; otherwise return a no-patch diagnosis/report for human review. If you introduce non-obvious state translation, index remapping, or backend split logic, add a short source comment that explains the invariant being preserved.

Start by explaining the likely root cause from the collected perf, strace, and /proc evidence. If you cannot land a safe patch, leave a diagnosis that is strong enough for an upstream bug report.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround. 

Keep the change narrowly scoped and summarize validation clearly.

In every authoring pass, your final response must start with `Subject: <single-line git commit subject>` and then include these markdown sections exactly:

## Commit Message
A short upstream-friendly explanation of what changed and why. Write it in plain language that a maintainer can follow without local complaint context. If you use subsystem jargon, define it immediately.

## Evidence Confidence
Exactly one word: `reproduced`, `observed`, or `inferred`. Use `reproduced` only when you reproduced the failure locally with a command or test, and include that command/test in `## Validation`. Use `observed` when Fixer has direct crash/log/trace evidence but you did not independently reproduce it. If `## Git Add Paths` lists source files for an `observed` patch, `## Issue Connection` must explicitly say the failure was observed by Fixer and not independently reproduced. Security-sensitive source changes touching authentication, authorization, credentials, cryptography, sandboxing, permissions, or timing/throttling behavior require reproduced evidence and explicit security-impact analysis; otherwise list `None` under `## Git Add Paths` and write a no-patch diagnosis/report. Use `inferred` for profiler/strace/indirect evidence; inferred responses may be no-patch diagnoses or reports, but inferred source patches are not pull-request-ready until stronger evidence is gathered.

## Issue Connection
Write this as maintainer-facing patch mail, not as local Fixer notes. Cover four things explicitly in readable sentences: the user-visible symptom or the exact collected signal, the code-level cause or the cautious inference from evidence, the specific change you made, and the expected effect. Do not invent a reproducer, command line, crash, or user-visible failure that is not present in the evidence bundle. If the evidence is direct-but-not-reproduced, say it was observed by Fixer and not independently reproduced. If the evidence is indirect and you did not gather stronger evidence, do not leave a source diff; write a no-patch diagnosis/report instead. Include an explicit effect sentence such as `The expected effect is ...`, `This should reduce ...`, or `This prevents ...` for source patches. If the logic is non-obvious in code, mention that you added a short explanatory comment.

## Git Add Paths
List the repo-relative paths that belong in the final patch, one per line. Use `None` only when you intentionally made no source changes. Include intentionally new files, and do not list generated build artifacts.

## Validation
List the checks you ran, or say clearly that you could not run them. Include the independent reproduction command/test and result when `## Evidence Confidence` is `reproduced`; if reproduction was attempted but blocked, name the exact blocker and keep confidence at `observed` or `inferred`.

Before editing, read the plan at `./plan-output.txt` and follow it unless the code proves part of it wrong. If you change course, say so explicitly in the final write-up instead of silently drifting from the plan.

## Review Pass 1

You are reviewing a freshly generated fixer patch.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. Review the first patch pass. The original pre-edit snapshot is available at `./source` for diffing.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout. The latest author response is at `./patch-output.txt`. Inspect the current code and changed paths like a strict code reviewer. Focus on correctness, regressions, maintainability, awkward control flow such as avoidable `goto`, missing validation, weak or non-gittable commit message text, and explanations that fail to connect the observed issue evidence to the code change. Also review the maintainer experience: the patch mail should be easy to accept upstream, the user-visible bug should be explained in plain language, subsystem-specific jargon should be defined when first used, and any non-obvious state translation or index remapping in code should have a short explanatory comment. Reject patches that omit `## Evidence Confidence`, use anything other than `reproduced`, `observed`, or `inferred`, or sound more certain than that evidence level allows. Reject patches that claim `reproduced` unless `## Validation` names the concrete reproduction command or test and its result. Reject source patches in security-sensitive areas such as authentication, authorization, credentials, cryptography, sandboxing, permissions, and timing/throttling behavior unless the author reproduced the behavior and explicitly analyzed the security impact of the change; observed-only evidence should become a diagnosis/report, not a PR-ready source diff. Reject patches that invent a reproducer, command line, crash, or user-visible failure not present in the evidence bundle; indirect profiler or strace evidence may justify a cautious mitigation, but the author must say it is indirect instead of presenting it as a confirmed upstream bug. Reject patches that introduce generic libc/std APIs when nearby code or project docs provide a local compat/helper API for the same job, unless the author explicitly justifies the exception. Reject validation that only reports a leaf object/syntax build when a project-level configure/build/test entrypoint exists and was not attempted; if a full build cannot run, the author must show the exact failed command and blocker.

Do not apply code changes in this pass.

Return a short markdown review report. The first non-empty line must be exactly one of:

RESULT: ok
RESULT: fix-needed

If you choose `RESULT: fix-needed`, add a `## Findings` section with concrete, actionable items.

Response

## Plan Pass

## Problem
Fixer observed high CPU attributed to `python3.13`, but the command line is `/usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf`. The syscall excerpt shows `wait4(..., WNOHANG)` followed by `poll(..., 1000)` timing out after about one second, and the sampled process state is sleeping in `poll_schedule_timeout`. That does not currently identify a CPython runtime bug.

## Evidence Confidence
inferred

## Proposed Subject
No CPython source patch yet: diagnose the report as an application-level `supervisord` polling signal unless an independent reproduction shows CPython’s `select.poll`, `os.wait4`, subprocess, or thread runtime code misbehaving.

## Patch Plan
Do not edit files in this pass. The evidence is profiler/strace-only and the raw artifact files referenced by `evidence.json` are unavailable in the workspace, so a source patch would be speculative.

Before any later patch, collect stronger evidence from the script/application entrypoint first: run a bounded `supervisord` reproduction under `strace` and confirm whether the one-second `poll` loop corresponds to normal supervisor behavior or actual CPU burn. Only if that points back into CPython should the second investigation target be runtime code.

Relevant CPython conventions found: `README.rst` points contributors to the CPython Developer Guide and documents `./configure`, `make`, and `make test`; `Modules/selectmodule.c` uses `_PyTime_FromMillisecondsObject`, `_PyTime_AsMilliseconds`, `_PyDeadline_*`, `Py_BEGIN_ALLOW_THREADS`, and `PyErr_CheckSignals`; `Modules/posixmodule.c` uses the local `wait_helper` pattern around `wait4`; `Lib/subprocess.py` uses `_waitpid_lock` and bounded sleep behavior for timeout waits. No relevant local helper suggests changing this observed `supervisord` cadence in CPython.

No prior Fixer patch is present in the workspace (`git status --short` is clean), so there is nothing to improve or replace. If later evidence justifies a patch, it should follow the existing bounded loop/error-handling style and avoid awkward control flow such as unnecessary `goto`.

## Risks
A CPython patch based only on this evidence could change correct `poll`, `wait4`, or subprocess semantics for all Python users while addressing behavior that likely belongs to `supervisord` or its configuration.

The backtrace is not reliable enough for patch targeting: top frames include unresolved addresses and `pthread_attr_destroy`, while the kernel stack and strace show sleeping `poll`.

## Validation
First try the project-level entrypoint from the workspace root before any focused checks: `./configure && make`. If that fails due to missing build dependencies or generated files, record the exact command and failure reason.

Bounded independent signal check: if available, run `timeout 5s strace -f -ttT -e poll,wait4 /usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf` to see whether the same `wait4(WNOHANG)` plus one-second `poll` cadence appears. This would only reproduce the collected signal, not prove a CPython bug. If runtime evidence later appears, run focused CPython tests such as `./python -m test test_poll test_wait4 test_subprocess` after the project build.

## Patch Pass

Subject: Diagnose supervisord poll trace without CPython patch

## Commit Message
No source change is proposed. The collected signal points to `supervisord` running under Python and waking on a one-second `poll(2)` timeout, not to a demonstrated CPython runtime defect.

## Evidence Confidence
inferred

## Issue Connection
The collected signal is a `python3.13` process named `supervisord` with repeated `wait4(-1, ..., WNOHANG)` returning `ECHILD`, followed by `poll(..., 1000)` timing out after about one second. `/proc` evidence shows the sampled thread sleeping in `poll_schedule_timeout`, and the backtrace contains unresolved frames, so the likely root cause is an application-level supervisor event loop being attributed to the Python interpreter.

The relevant CPython code paths are thin wrappers: `select.poll()` uses `_PyTime_*`, `_PyDeadline_*`, `Py_BEGIN_ALLOW_THREADS`, and `PyErr_CheckSignals`; `os.wait4()` uses the local `wait_helper` pattern; `subprocess` uses `_waitpid_lock` around child polling. I found no local helper or nearby convention that would justify changing CPython behavior for this trace.

I followed the saved plan and left no source diff. The expected effect is no runtime behavior change; this avoids landing a speculative upstream patch from profiler/strace evidence that does not identify a CPython bug.

## Git Add Paths
None

## Validation
Ran `./configure && make` from the workspace root. It completed with exit code 0. The build reported optional module gaps: `_dbm`, `_gdbm`, and `_tkinter` missing, and `_ssl` built then removed because importing it failed with `undefined symbol: TLSv1_method`.

Attempted the bounded independent reproduction path from the plan, but it was blocked: `strace` exists at `/usr/bin/strace`, but `supervisord` is not installed, `/etc/supervisor/supervisord.conf` is absent, and the raw Fixer artifact directory referenced by `evidence.json` is not present.

Cleaned generated build artifacts with `make distclean`; `git status --short` is clean.

## Review Pass 1

RESULT: ok

No source diff is present, and `git status --short` is clean. The response correctly treats the evidence as `inferred`, avoids a speculative CPython patch, and explains the likely `supervisord` event-loop attribution from the perf/strace/proc excerpts.

Validation is acceptable for a no-patch diagnosis: it reports the project-level `./configure && make`, the optional module issues, and the blocked independent reproduction attempt.

diagnosis-only report

report

python3.13 likely remains stuck in a busy-poll loop. A diagnosis report and patch proposal were created locally.

state: readycreated: 2026-05-18 19:26 UTCvalidation: ready
Published session

Prompt

## Plan Pass

You are planning a fixer patch before any edits happen.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. The original pre-edit snapshot is available at `./source` if you need to inspect it. For interpreter processes, plan from the script/application entrypoint evidence first and include the runtime only as a second investigation target unless the evidence proves a runtime bug.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround. Inspect the relevant code, nearby callers, project contribution docs, and local helper/compat APIs, but do not edit files in this pass.

Return a short markdown plan with these exact sections:

## Problem
## Evidence Confidence
## Proposed Subject
## Patch Plan
## Risks
## Validation

Classify `## Evidence Confidence` as exactly one of `reproduced`, `observed`, or `inferred`. Use `inferred` only for a no-patch diagnosis/report plan unless you can name the extra evidence you will collect before editing; inferred source patches are blocked by Fixer because they are not pull-request-ready. For `observed` source-patch plans, plan to say in the final `## Issue Connection` that the failure was observed by Fixer and not independently reproduced. If the plan touches authentication, authorization, credentials, cryptography, sandboxing, permissions, or timing/throttling behavior, treat it as security-sensitive: do not plan a source patch unless validation can reproduce the behavior and analyze the security impact; otherwise plan a no-patch diagnosis/report. The plan must explain how the proposed code change addresses the observed issue evidence, call out any prior Fixer patch that should be improved or replaced, reject awkward control flow such as avoidable `goto` if there is a cleaner bounded alternative, name any local helper APIs or maintainer conventions the patch should follow, and keep the intended maintainer-facing explanation clear enough that someone unfamiliar with the local complaint wording can still follow the fix. In `## Validation`, name the reproducible configure/build/test entrypoint you will try from the workspace root before any focused leaf compile or smoke check, and include one bounded independent reproduction attempt for the collected failure signal when it is safe and cheap. Do not plan to claim `reproduced` unless that reproduction command or test can actually show the failure.

## Patch Pass

You are working on a bounded fixer proposal.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. Produce the smallest reasonable patch for the target repository, keep the change upstreamable, prefer the clearest control flow available, and do not keep avoidable `goto` when a simpler structure would read better. Before introducing new file, process, allocation, locking, networking, or platform APIs, inspect nearby code and project contribution docs for existing helpers or compatibility wrappers and use those local patterns unless you can explain why they do not fit. Validate from a reproducible workspace-root entrypoint before falling back to focused leaf commands; if a build or test cannot run, report the exact command, the exact blocker, and any narrower check you ran instead. During validation, also try one bounded independent reproduction of the collected failure signal when it is safe and cheap, such as a failing test, smoke command, perf/strace comparison, or before/after runtime check. Only use `reproduced` if that command or test actually reproduced the failure; otherwise keep `observed` and report the reproduction blocker. The final explanation must connect the observed issue evidence to the actual code change, not just paraphrase the diff. Write like a maintainer is going to read the patch mail cold: explain the bug in plain language, define subsystem-specific jargon the first time you need it, and make the causal story obvious. Explicitly classify evidence confidence as `reproduced`, `observed`, or `inferred`: `reproduced` means you reproduced the failure locally; `observed` means Fixer has direct crash/log/trace evidence but you did not independently reproduce it; `inferred` means the source patch is not pull-request-ready, so do not leave a source diff unless you first gather stronger observed/reproduced evidence; otherwise return a no-patch diagnosis/report. For any source-changing `observed` patch, say explicitly in `## Issue Connection` that the failure was observed by Fixer and not independently reproduced. Security-sensitive areas such as authentication, authorization, credentials, cryptography, sandboxing, permissions, and timing/throttling behavior need reproduced evidence plus explicit security-impact analysis before leaving a source diff; otherwise return a no-patch diagnosis/report for human review. If you introduce non-obvious state translation, index remapping, or backend split logic, add a short source comment that explains the invariant being preserved.

Start by explaining the likely root cause from the collected perf, strace, and /proc evidence. If you cannot land a safe patch, leave a diagnosis that is strong enough for an upstream bug report.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround. 

Keep the change narrowly scoped and summarize validation clearly.

In every authoring pass, your final response must start with `Subject: <single-line git commit subject>` and then include these markdown sections exactly:

## Commit Message
A short upstream-friendly explanation of what changed and why. Write it in plain language that a maintainer can follow without local complaint context. If you use subsystem jargon, define it immediately.

## Evidence Confidence
Exactly one word: `reproduced`, `observed`, or `inferred`. Use `reproduced` only when you reproduced the failure locally with a command or test, and include that command/test in `## Validation`. Use `observed` when Fixer has direct crash/log/trace evidence but you did not independently reproduce it. If `## Git Add Paths` lists source files for an `observed` patch, `## Issue Connection` must explicitly say the failure was observed by Fixer and not independently reproduced. Security-sensitive source changes touching authentication, authorization, credentials, cryptography, sandboxing, permissions, or timing/throttling behavior require reproduced evidence and explicit security-impact analysis; otherwise list `None` under `## Git Add Paths` and write a no-patch diagnosis/report. Use `inferred` for profiler/strace/indirect evidence; inferred responses may be no-patch diagnoses or reports, but inferred source patches are not pull-request-ready until stronger evidence is gathered.

## Issue Connection
Write this as maintainer-facing patch mail, not as local Fixer notes. Cover four things explicitly in readable sentences: the user-visible symptom or the exact collected signal, the code-level cause or the cautious inference from evidence, the specific change you made, and the expected effect. Do not invent a reproducer, command line, crash, or user-visible failure that is not present in the evidence bundle. If the evidence is direct-but-not-reproduced, say it was observed by Fixer and not independently reproduced. If the evidence is indirect and you did not gather stronger evidence, do not leave a source diff; write a no-patch diagnosis/report instead. Include an explicit effect sentence such as `The expected effect is ...`, `This should reduce ...`, or `This prevents ...` for source patches. If the logic is non-obvious in code, mention that you added a short explanatory comment.

## Git Add Paths
List the repo-relative paths that belong in the final patch, one per line. Use `None` only when you intentionally made no source changes. Include intentionally new files, and do not list generated build artifacts.

## Validation
List the checks you ran, or say clearly that you could not run them. Include the independent reproduction command/test and result when `## Evidence Confidence` is `reproduced`; if reproduction was attempted but blocked, name the exact blocker and keep confidence at `observed` or `inferred`.

Before editing, read the plan at `./plan-output.txt` and follow it unless the code proves part of it wrong. If you change course, say so explicitly in the final write-up instead of silently drifting from the plan.

## Review Pass 1

You are reviewing a freshly generated fixer patch.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. Review the first patch pass. The original pre-edit snapshot is available at `./source` for diffing.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout. The latest author response is at `./patch-output.txt`. Inspect the current code and changed paths like a strict code reviewer. Focus on correctness, regressions, maintainability, awkward control flow such as avoidable `goto`, missing validation, weak or non-gittable commit message text, and explanations that fail to connect the observed issue evidence to the code change. Also review the maintainer experience: the patch mail should be easy to accept upstream, the user-visible bug should be explained in plain language, subsystem-specific jargon should be defined when first used, and any non-obvious state translation or index remapping in code should have a short explanatory comment. Reject patches that omit `## Evidence Confidence`, use anything other than `reproduced`, `observed`, or `inferred`, or sound more certain than that evidence level allows. Reject patches that claim `reproduced` unless `## Validation` names the concrete reproduction command or test and its result. Reject source patches in security-sensitive areas such as authentication, authorization, credentials, cryptography, sandboxing, permissions, and timing/throttling behavior unless the author reproduced the behavior and explicitly analyzed the security impact of the change; observed-only evidence should become a diagnosis/report, not a PR-ready source diff. Reject patches that invent a reproducer, command line, crash, or user-visible failure not present in the evidence bundle; indirect profiler or strace evidence may justify a cautious mitigation, but the author must say it is indirect instead of presenting it as a confirmed upstream bug. Reject patches that introduce generic libc/std APIs when nearby code or project docs provide a local compat/helper API for the same job, unless the author explicitly justifies the exception. Reject validation that only reports a leaf object/syntax build when a project-level configure/build/test entrypoint exists and was not attempted; if a full build cannot run, the author must show the exact failed command and blocker.

Do not apply code changes in this pass.

Return a short markdown review report. The first non-empty line must be exactly one of:

RESULT: ok
RESULT: fix-needed

If you choose `RESULT: fix-needed`, add a `## Findings` section with concrete, actionable items.

Response

## Plan Pass

## Problem
Fixer observed high CPU attributed to `python3.13`, but the command line is `/usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf`. The syscall excerpt shows `wait4(..., WNOHANG)` followed by `poll(..., 1000)` timing out after about one second, and the sampled process state is sleeping in `poll_schedule_timeout`. That does not currently identify a CPython runtime bug.

## Evidence Confidence
inferred

## Proposed Subject
No CPython source patch yet: diagnose the report as an application-level `supervisord` polling signal unless an independent reproduction shows CPython’s `select.poll`, `os.wait4`, subprocess, or thread runtime code misbehaving.

## Patch Plan
Do not edit files in this pass. The evidence is profiler/strace-only and the raw artifact files referenced by `evidence.json` are unavailable in the workspace, so a source patch would be speculative.

Before any later patch, collect stronger evidence from the script/application entrypoint first: run a bounded `supervisord` reproduction under `strace` and confirm whether the one-second `poll` loop corresponds to normal supervisor behavior or actual CPU burn. Only if that points back into CPython should the second investigation target be runtime code.

Relevant CPython conventions found: `README.rst` points contributors to the CPython Developer Guide and documents `./configure`, `make`, and `make test`; `Modules/selectmodule.c` uses `_PyTime_FromMillisecondsObject`, `_PyTime_AsMilliseconds`, `_PyDeadline_*`, `Py_BEGIN_ALLOW_THREADS`, and `PyErr_CheckSignals`; `Modules/posixmodule.c` uses the local `wait_helper` pattern around `wait4`; `Lib/subprocess.py` uses `_waitpid_lock` and bounded sleep behavior for timeout waits. No relevant local helper suggests changing this observed `supervisord` cadence in CPython.

No prior Fixer patch is present in the workspace (`git status --short` is clean), so there is nothing to improve or replace. If later evidence justifies a patch, it should follow the existing bounded loop/error-handling style and avoid awkward control flow such as unnecessary `goto`.

## Risks
A CPython patch based only on this evidence could change correct `poll`, `wait4`, or subprocess semantics for all Python users while addressing behavior that likely belongs to `supervisord` or its configuration.

The backtrace is not reliable enough for patch targeting: top frames include unresolved addresses and `pthread_attr_destroy`, while the kernel stack and strace show sleeping `poll`.

## Validation
First try the project-level entrypoint from the workspace root before any focused checks: `./configure && make`. If that fails due to missing build dependencies or generated files, record the exact command and failure reason.

Bounded independent signal check: if available, run `timeout 5s strace -f -ttT -e poll,wait4 /usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf` to see whether the same `wait4(WNOHANG)` plus one-second `poll` cadence appears. This would only reproduce the collected signal, not prove a CPython bug. If runtime evidence later appears, run focused CPython tests such as `./python -m test test_poll test_wait4 test_subprocess` after the project build.

## Patch Pass

Subject: Diagnose supervisord poll trace without CPython patch

## Commit Message
No source change is proposed. The collected signal points to `supervisord` running under Python and waking on a one-second `poll(2)` timeout, not to a demonstrated CPython runtime defect.

## Evidence Confidence
inferred

## Issue Connection
The collected signal is a `python3.13` process named `supervisord` with repeated `wait4(-1, ..., WNOHANG)` returning `ECHILD`, followed by `poll(..., 1000)` timing out after about one second. `/proc` evidence shows the sampled thread sleeping in `poll_schedule_timeout`, and the backtrace contains unresolved frames, so the likely root cause is an application-level supervisor event loop being attributed to the Python interpreter.

The relevant CPython code paths are thin wrappers: `select.poll()` uses `_PyTime_*`, `_PyDeadline_*`, `Py_BEGIN_ALLOW_THREADS`, and `PyErr_CheckSignals`; `os.wait4()` uses the local `wait_helper` pattern; `subprocess` uses `_waitpid_lock` around child polling. I found no local helper or nearby convention that would justify changing CPython behavior for this trace.

I followed the saved plan and left no source diff. The expected effect is no runtime behavior change; this avoids landing a speculative upstream patch from profiler/strace evidence that does not identify a CPython bug.

## Git Add Paths
None

## Validation
Ran `./configure && make` from the workspace root. It completed with exit code 0. The build reported optional module gaps: `_dbm`, `_gdbm`, and `_tkinter` missing, and `_ssl` built then removed because importing it failed with `undefined symbol: TLSv1_method`.

Attempted the bounded independent reproduction path from the plan, but it was blocked: `strace` exists at `/usr/bin/strace`, but `supervisord` is not installed, `/etc/supervisor/supervisord.conf` is absent, and the raw Fixer artifact directory referenced by `evidence.json` is not present.

Cleaned generated build artifacts with `make distclean`; `git status --short` is clean.

## Review Pass 1

RESULT: ok

No source diff is present, and `git status --short` is clean. The response correctly treats the evidence as `inferred`, avoids a speculative CPython patch, and explains the likely `supervisord` event-loop attribution from the perf/strace/proc excerpts.

Validation is acceptable for a no-patch diagnosis: it reports the project-level `./configure && make`, the optional module issues, and the blocked independent reproduction attempt.

diagnosis-only report

report

python3.13 likely remains stuck in a busy-poll loop. A diagnosis report and patch proposal were created locally.

state: readycreated: 2026-05-18 18:07 UTCvalidation: ready
Published session

Prompt

## Plan Pass

You are planning a fixer patch before any edits happen.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. The original pre-edit snapshot is available at `./source` if you need to inspect it. For interpreter processes, plan from the script/application entrypoint evidence first and include the runtime only as a second investigation target unless the evidence proves a runtime bug.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround. Inspect the relevant code, nearby callers, project contribution docs, and local helper/compat APIs, but do not edit files in this pass.

Return a short markdown plan with these exact sections:

## Problem
## Evidence Confidence
## Proposed Subject
## Patch Plan
## Risks
## Validation

Classify `## Evidence Confidence` as exactly one of `reproduced`, `observed`, or `inferred`. Use `inferred` only for a no-patch diagnosis/report plan unless you can name the extra evidence you will collect before editing; inferred source patches are blocked by Fixer because they are not pull-request-ready. For `observed` source-patch plans, plan to say in the final `## Issue Connection` that the failure was observed by Fixer and not independently reproduced. If the plan touches authentication, authorization, credentials, cryptography, sandboxing, permissions, or timing/throttling behavior, treat it as security-sensitive: do not plan a source patch unless validation can reproduce the behavior and analyze the security impact; otherwise plan a no-patch diagnosis/report. The plan must explain how the proposed code change addresses the observed issue evidence, call out any prior Fixer patch that should be improved or replaced, reject awkward control flow such as avoidable `goto` if there is a cleaner bounded alternative, name any local helper APIs or maintainer conventions the patch should follow, and keep the intended maintainer-facing explanation clear enough that someone unfamiliar with the local complaint wording can still follow the fix. In `## Validation`, name the reproducible configure/build/test entrypoint you will try from the workspace root before any focused leaf compile or smoke check, and include one bounded independent reproduction attempt for the collected failure signal when it is safe and cheap. Do not plan to claim `reproduced` unless that reproduction command or test can actually show the failure.

## Patch Pass

You are working on a bounded fixer proposal.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. Produce the smallest reasonable patch for the target repository, keep the change upstreamable, prefer the clearest control flow available, and do not keep avoidable `goto` when a simpler structure would read better. Before introducing new file, process, allocation, locking, networking, or platform APIs, inspect nearby code and project contribution docs for existing helpers or compatibility wrappers and use those local patterns unless you can explain why they do not fit. Validate from a reproducible workspace-root entrypoint before falling back to focused leaf commands; if a build or test cannot run, report the exact command, the exact blocker, and any narrower check you ran instead. During validation, also try one bounded independent reproduction of the collected failure signal when it is safe and cheap, such as a failing test, smoke command, perf/strace comparison, or before/after runtime check. Only use `reproduced` if that command or test actually reproduced the failure; otherwise keep `observed` and report the reproduction blocker. The final explanation must connect the observed issue evidence to the actual code change, not just paraphrase the diff. Write like a maintainer is going to read the patch mail cold: explain the bug in plain language, define subsystem-specific jargon the first time you need it, and make the causal story obvious. Explicitly classify evidence confidence as `reproduced`, `observed`, or `inferred`: `reproduced` means you reproduced the failure locally; `observed` means Fixer has direct crash/log/trace evidence but you did not independently reproduce it; `inferred` means the source patch is not pull-request-ready, so do not leave a source diff unless you first gather stronger observed/reproduced evidence; otherwise return a no-patch diagnosis/report. For any source-changing `observed` patch, say explicitly in `## Issue Connection` that the failure was observed by Fixer and not independently reproduced. Security-sensitive areas such as authentication, authorization, credentials, cryptography, sandboxing, permissions, and timing/throttling behavior need reproduced evidence plus explicit security-impact analysis before leaving a source diff; otherwise return a no-patch diagnosis/report for human review. If you introduce non-obvious state translation, index remapping, or backend split logic, add a short source comment that explains the invariant being preserved.

Start by explaining the likely root cause from the collected perf, strace, and /proc evidence. If you cannot land a safe patch, leave a diagnosis that is strong enough for an upstream bug report.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround. 

Keep the change narrowly scoped and summarize validation clearly.

In every authoring pass, your final response must start with `Subject: <single-line git commit subject>` and then include these markdown sections exactly:

## Commit Message
A short upstream-friendly explanation of what changed and why. Write it in plain language that a maintainer can follow without local complaint context. If you use subsystem jargon, define it immediately.

## Evidence Confidence
Exactly one word: `reproduced`, `observed`, or `inferred`. Use `reproduced` only when you reproduced the failure locally with a command or test, and include that command/test in `## Validation`. Use `observed` when Fixer has direct crash/log/trace evidence but you did not independently reproduce it. If `## Git Add Paths` lists source files for an `observed` patch, `## Issue Connection` must explicitly say the failure was observed by Fixer and not independently reproduced. Security-sensitive source changes touching authentication, authorization, credentials, cryptography, sandboxing, permissions, or timing/throttling behavior require reproduced evidence and explicit security-impact analysis; otherwise list `None` under `## Git Add Paths` and write a no-patch diagnosis/report. Use `inferred` for profiler/strace/indirect evidence; inferred responses may be no-patch diagnoses or reports, but inferred source patches are not pull-request-ready until stronger evidence is gathered.

## Issue Connection
Write this as maintainer-facing patch mail, not as local Fixer notes. Cover four things explicitly in readable sentences: the user-visible symptom or the exact collected signal, the code-level cause or the cautious inference from evidence, the specific change you made, and the expected effect. Do not invent a reproducer, command line, crash, or user-visible failure that is not present in the evidence bundle. If the evidence is direct-but-not-reproduced, say it was observed by Fixer and not independently reproduced. If the evidence is indirect and you did not gather stronger evidence, do not leave a source diff; write a no-patch diagnosis/report instead. Include an explicit effect sentence such as `The expected effect is ...`, `This should reduce ...`, or `This prevents ...` for source patches. If the logic is non-obvious in code, mention that you added a short explanatory comment.

## Git Add Paths
List the repo-relative paths that belong in the final patch, one per line. Use `None` only when you intentionally made no source changes. Include intentionally new files, and do not list generated build artifacts.

## Validation
List the checks you ran, or say clearly that you could not run them. Include the independent reproduction command/test and result when `## Evidence Confidence` is `reproduced`; if reproduction was attempted but blocked, name the exact blocker and keep confidence at `observed` or `inferred`.

Before editing, read the plan at `./plan-output.txt` and follow it unless the code proves part of it wrong. If you change course, say so explicitly in the final write-up instead of silently drifting from the plan.

## Review Pass 1

You are reviewing a freshly generated fixer patch.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. Review the first patch pass. The original pre-edit snapshot is available at `./source` for diffing.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout. The latest author response is at `./patch-output.txt`. Inspect the current code and changed paths like a strict code reviewer. Focus on correctness, regressions, maintainability, awkward control flow such as avoidable `goto`, missing validation, weak or non-gittable commit message text, and explanations that fail to connect the observed issue evidence to the code change. Also review the maintainer experience: the patch mail should be easy to accept upstream, the user-visible bug should be explained in plain language, subsystem-specific jargon should be defined when first used, and any non-obvious state translation or index remapping in code should have a short explanatory comment. Reject patches that omit `## Evidence Confidence`, use anything other than `reproduced`, `observed`, or `inferred`, or sound more certain than that evidence level allows. Reject patches that claim `reproduced` unless `## Validation` names the concrete reproduction command or test and its result. Reject source patches in security-sensitive areas such as authentication, authorization, credentials, cryptography, sandboxing, permissions, and timing/throttling behavior unless the author reproduced the behavior and explicitly analyzed the security impact of the change; observed-only evidence should become a diagnosis/report, not a PR-ready source diff. Reject patches that invent a reproducer, command line, crash, or user-visible failure not present in the evidence bundle; indirect profiler or strace evidence may justify a cautious mitigation, but the author must say it is indirect instead of presenting it as a confirmed upstream bug. Reject patches that introduce generic libc/std APIs when nearby code or project docs provide a local compat/helper API for the same job, unless the author explicitly justifies the exception. Reject validation that only reports a leaf object/syntax build when a project-level configure/build/test entrypoint exists and was not attempted; if a full build cannot run, the author must show the exact failed command and blocker.

Do not apply code changes in this pass.

Return a short markdown review report. The first non-empty line must be exactly one of:

RESULT: ok
RESULT: fix-needed

If you choose `RESULT: fix-needed`, add a `## Findings` section with concrete, actionable items.

Response

## Plan Pass

## Problem
Fixer observed `/usr/bin/python3.13` running `supervisord` with high aggregate CPU, but the captured syscall evidence shows a one-second `poll([{fd=4,...}], 1, 1000)` timeout followed by `wait4(-1, ..., WNOHANG) = -1 ECHILD`. The sampled process state is `S (sleeping)` with `wchan` in `poll_schedule_timeout`, so the available evidence does not identify a CPython busy loop or a safe upstream CPython source change.

## Evidence Confidence
observed

## Proposed Subject
No CPython source patch in this pass: close as a diagnosis/report plan unless new evidence ties the hot path to CPython itself. The maintainer-facing subject would be: `Do not patch CPython for supervisord one-second poll evidence without a runtime reproducer`.

## Patch Plan
- Do not edit CPython yet. The script/application entrypoint is `supervisord`; per the evidence, investigate that event loop before treating `/usr/bin/python3.13` as defective.
- Use the evidence limit explicitly: Fixer observed CPU attribution to `python3.13`, but the syscall trace is a timed sleep loop, not a tight zero-timeout poll loop.
- Mention local CPython conventions checked: `README.rst` points to the CPython Developer Guide and `./configure && make && make test`; `Doc/README.rst` covers docs workflow. Relevant helpers found include `PyThread_*`, `PyMem_RawMalloc/Free`, `_del_safe.waitpid`, `_waitpid_lock`, and selector abstractions. No relevant local helper was found that would turn the observed `supervisord` loop into a CPython runtime fix.
- Do not add awkward control flow such as `goto`; no code change is planned. No prior Fixer patch was present in the clean workspace and none should be improved or replaced.
- If later evidence shows a CPython defect, scope the patch to the proven subsystem only, likely `Modules/selectmodule.c`, `Modules/posixmodule.c`, `Lib/subprocess.py`, or `Python/thread_pthread.h`, and add a focused regression test tied to the demonstrated failure.

## Risks
- A CPython patch based only on this bundle would likely mask normal supervisor behavior or change documented poll/wait semantics.
- The unresolved `pthread_attr_destroy` backtrace is not enough to prove thread-runtime fault; nearby CPython code destroys pthread attrs after thread creation and does not explain the observed `poll`/`wait4(ECHILD)` cadence.
- Running the captured system `supervisord` command could affect the host service environment, so reproduction should be bounded and isolated.

## Validation
- Before any future code patch, try the project-level entrypoint from the workspace root: `./configure && make`.
- If that fails due to missing build dependencies or generated files, record the exact failing command and reason, then run the narrowest relevant check, for example `./python -m test test_select test_os test_subprocess` after a partial build, or a leaf compile for the touched C file.
- Independent reproduction attempt, only if safe in an isolated container or disposable namespace: run `timeout 10 strace -f -ttT -e poll,wait4 /usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf` and verify whether it actually consumes CPU while producing the same one-second `poll`/`wait4(ECHILD)` pattern. Without that isolated reproduction, do not claim `reproduced`; final `## Issue Connection` should say the failure was observed by Fixer and not independently reproduced.

## Patch Pass

Subject: Diagnose supervisord poll trace without CPython patch

## Commit Message
The likely root cause is outside CPython: the collected trace is a `supervisord` process waking once per second, calling `wait4(..., WNOHANG)`, getting `ECHILD`, then sleeping again in `poll(..., 1000)`. That is an application event-loop cadence, not a tight CPython runtime spin.

No source change was made. CPython’s local patterns checked include `README.rst` build guidance, `PyThread_*`, `PyMem_RawMalloc/Free`, `os.wait4` wrappers in `Modules/posixmodule.c`, `select.poll` handling in `Modules/selectmodule.c`, and `subprocess`’s `_del_safe.waitpid` plus `_waitpid_lock`. No relevant local helper was found that would justify changing CPython for this signal.

## Evidence Confidence
observed

## Issue Connection
Fixer observed `/usr/bin/python3.13` running `/usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf` with high sampled CPU attribution, but the direct `/proc` and `strace` evidence shows the sampled thread sleeping in the kernel at `poll_schedule_timeout` and repeatedly executing `poll(..., 1000)` followed by `wait4(-1, ..., WNOHANG) = -1 ECHILD`.

The cautious code-level inference is that the Python process is running an application-level supervisor loop with a one-second timeout. The evidence does not show a zero-timeout poll loop, a CPython `select.poll()` bug, a broken `wait4()` wrapper, or a thread-startup failure despite the unresolved backtrace mentioning `pthread_attr_destroy`.

I followed the saved plan and made no source change. The expected effect is to avoid an upstream CPython patch that would be speculative and could change public `poll`, `wait4`, or subprocess semantics without a reproduced runtime bug. A useful upstream report should instead include an isolated `supervisord` reproduction or stronger evidence tying the hot path to CPython internals.

## Git Add Paths
None

## Validation
Ran `./configure && make` from the workspace root. It completed with exit code 0. Configure reported `poll`, `wait4`, `waitpid`, and pthread support available, and reported `poll()` as not broken. The build emitted existing warnings and reported `_ssl` failed to import because of undefined symbol `TLSv1_method`; optional `_dbm`, `_gdbm`, and `_tkinter` were missing. I cleaned generated build artifacts afterward with `make distclean`; `git status --short` is clean.

Independent reproduction was attempted only as a safety check, not by starting supervisor: `command -v strace || true; command -v supervisord || true; test -r /etc/supervisor/supervisord.conf ...`. Result: `strace` exists, `supervisord` is not on `PATH`, and `/etc/supervisor/supervisord.conf` is not readable. I did not run the captured supervisor command because using a host supervisor config could start or manage services outside this repo.

## Review Pass 1

RESULT: ok

No source diff is present, and the workspace matches the original snapshot. The no-patch diagnosis is appropriate for the evidence: the trace shows a `supervisord` process sleeping in one-second `poll()` calls with `wait4(... WNOHANG)` returning `ECHILD`, not a reproduced CPython runtime defect.

The author response includes valid `## Evidence Confidence` (`observed`), avoids claiming local reproduction, explains the evidence limit, names relevant CPython helpers/conventions checked, and reports the project-level `./configure && make` validation plus the bounded reproduction blocker. No fix-needed findings.

diagnosis-only report

report

python3.13 likely remains stuck in a busy-poll loop. A diagnosis report and patch proposal were created locally.

state: readycreated: 2026-05-18 18:07 UTCvalidation: ready
Published session

Prompt

## Plan Pass

You are planning a fixer patch before any edits happen.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. The original pre-edit snapshot is available at `./source` if you need to inspect it. For interpreter processes, plan from the script/application entrypoint evidence first and include the runtime only as a second investigation target unless the evidence proves a runtime bug.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround. Inspect the relevant code, nearby callers, project contribution docs, and local helper/compat APIs, but do not edit files in this pass.

Return a short markdown plan with these exact sections:

## Problem
## Evidence Confidence
## Proposed Subject
## Patch Plan
## Risks
## Validation

Classify `## Evidence Confidence` as exactly one of `reproduced`, `observed`, or `inferred`. Use `inferred` only for a no-patch diagnosis/report plan unless you can name the extra evidence you will collect before editing; inferred source patches are blocked by Fixer because they are not pull-request-ready. For `observed` source-patch plans, plan to say in the final `## Issue Connection` that the failure was observed by Fixer and not independently reproduced. If the plan touches authentication, authorization, credentials, cryptography, sandboxing, permissions, or timing/throttling behavior, treat it as security-sensitive: do not plan a source patch unless validation can reproduce the behavior and analyze the security impact; otherwise plan a no-patch diagnosis/report. The plan must explain how the proposed code change addresses the observed issue evidence, call out any prior Fixer patch that should be improved or replaced, reject awkward control flow such as avoidable `goto` if there is a cleaner bounded alternative, name any local helper APIs or maintainer conventions the patch should follow, and keep the intended maintainer-facing explanation clear enough that someone unfamiliar with the local complaint wording can still follow the fix. In `## Validation`, name the reproducible configure/build/test entrypoint you will try from the workspace root before any focused leaf compile or smoke check, and include one bounded independent reproduction attempt for the collected failure signal when it is safe and cheap. Do not plan to claim `reproduced` unless that reproduction command or test can actually show the failure.

## Patch Pass

You are working on a bounded fixer proposal.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. Produce the smallest reasonable patch for the target repository, keep the change upstreamable, prefer the clearest control flow available, and do not keep avoidable `goto` when a simpler structure would read better. Before introducing new file, process, allocation, locking, networking, or platform APIs, inspect nearby code and project contribution docs for existing helpers or compatibility wrappers and use those local patterns unless you can explain why they do not fit. Validate from a reproducible workspace-root entrypoint before falling back to focused leaf commands; if a build or test cannot run, report the exact command, the exact blocker, and any narrower check you ran instead. During validation, also try one bounded independent reproduction of the collected failure signal when it is safe and cheap, such as a failing test, smoke command, perf/strace comparison, or before/after runtime check. Only use `reproduced` if that command or test actually reproduced the failure; otherwise keep `observed` and report the reproduction blocker. The final explanation must connect the observed issue evidence to the actual code change, not just paraphrase the diff. Write like a maintainer is going to read the patch mail cold: explain the bug in plain language, define subsystem-specific jargon the first time you need it, and make the causal story obvious. Explicitly classify evidence confidence as `reproduced`, `observed`, or `inferred`: `reproduced` means you reproduced the failure locally; `observed` means Fixer has direct crash/log/trace evidence but you did not independently reproduce it; `inferred` means the source patch is not pull-request-ready, so do not leave a source diff unless you first gather stronger observed/reproduced evidence; otherwise return a no-patch diagnosis/report. For any source-changing `observed` patch, say explicitly in `## Issue Connection` that the failure was observed by Fixer and not independently reproduced. Security-sensitive areas such as authentication, authorization, credentials, cryptography, sandboxing, permissions, and timing/throttling behavior need reproduced evidence plus explicit security-impact analysis before leaving a source diff; otherwise return a no-patch diagnosis/report for human review. If you introduce non-obvious state translation, index remapping, or backend split logic, add a short source comment that explains the invariant being preserved.

Start by explaining the likely root cause from the collected perf, strace, and /proc evidence. If you cannot land a safe patch, leave a diagnosis that is strong enough for an upstream bug report.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround. 

Keep the change narrowly scoped and summarize validation clearly.

In every authoring pass, your final response must start with `Subject: <single-line git commit subject>` and then include these markdown sections exactly:

## Commit Message
A short upstream-friendly explanation of what changed and why. Write it in plain language that a maintainer can follow without local complaint context. If you use subsystem jargon, define it immediately.

## Evidence Confidence
Exactly one word: `reproduced`, `observed`, or `inferred`. Use `reproduced` only when you reproduced the failure locally with a command or test, and include that command/test in `## Validation`. Use `observed` when Fixer has direct crash/log/trace evidence but you did not independently reproduce it. If `## Git Add Paths` lists source files for an `observed` patch, `## Issue Connection` must explicitly say the failure was observed by Fixer and not independently reproduced. Security-sensitive source changes touching authentication, authorization, credentials, cryptography, sandboxing, permissions, or timing/throttling behavior require reproduced evidence and explicit security-impact analysis; otherwise list `None` under `## Git Add Paths` and write a no-patch diagnosis/report. Use `inferred` for profiler/strace/indirect evidence; inferred responses may be no-patch diagnoses or reports, but inferred source patches are not pull-request-ready until stronger evidence is gathered.

## Issue Connection
Write this as maintainer-facing patch mail, not as local Fixer notes. Cover four things explicitly in readable sentences: the user-visible symptom or the exact collected signal, the code-level cause or the cautious inference from evidence, the specific change you made, and the expected effect. Do not invent a reproducer, command line, crash, or user-visible failure that is not present in the evidence bundle. If the evidence is direct-but-not-reproduced, say it was observed by Fixer and not independently reproduced. If the evidence is indirect and you did not gather stronger evidence, do not leave a source diff; write a no-patch diagnosis/report instead. Include an explicit effect sentence such as `The expected effect is ...`, `This should reduce ...`, or `This prevents ...` for source patches. If the logic is non-obvious in code, mention that you added a short explanatory comment.

## Git Add Paths
List the repo-relative paths that belong in the final patch, one per line. Use `None` only when you intentionally made no source changes. Include intentionally new files, and do not list generated build artifacts.

## Validation
List the checks you ran, or say clearly that you could not run them. Include the independent reproduction command/test and result when `## Evidence Confidence` is `reproduced`; if reproduction was attempted but blocked, name the exact blocker and keep confidence at `observed` or `inferred`.

Before editing, read the plan at `./plan-output.txt` and follow it unless the code proves part of it wrong. If you change course, say so explicitly in the final write-up instead of silently drifting from the plan.

## Review Pass 1

You are reviewing a freshly generated fixer patch.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. Review the first patch pass. The original pre-edit snapshot is available at `./source` for diffing.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout. The latest author response is at `./patch-output.txt`. Inspect the current code and changed paths like a strict code reviewer. Focus on correctness, regressions, maintainability, awkward control flow such as avoidable `goto`, missing validation, weak or non-gittable commit message text, and explanations that fail to connect the observed issue evidence to the code change. Also review the maintainer experience: the patch mail should be easy to accept upstream, the user-visible bug should be explained in plain language, subsystem-specific jargon should be defined when first used, and any non-obvious state translation or index remapping in code should have a short explanatory comment. Reject patches that omit `## Evidence Confidence`, use anything other than `reproduced`, `observed`, or `inferred`, or sound more certain than that evidence level allows. Reject patches that claim `reproduced` unless `## Validation` names the concrete reproduction command or test and its result. Reject source patches in security-sensitive areas such as authentication, authorization, credentials, cryptography, sandboxing, permissions, and timing/throttling behavior unless the author reproduced the behavior and explicitly analyzed the security impact of the change; observed-only evidence should become a diagnosis/report, not a PR-ready source diff. Reject patches that invent a reproducer, command line, crash, or user-visible failure not present in the evidence bundle; indirect profiler or strace evidence may justify a cautious mitigation, but the author must say it is indirect instead of presenting it as a confirmed upstream bug. Reject patches that introduce generic libc/std APIs when nearby code or project docs provide a local compat/helper API for the same job, unless the author explicitly justifies the exception. Reject validation that only reports a leaf object/syntax build when a project-level configure/build/test entrypoint exists and was not attempted; if a full build cannot run, the author must show the exact failed command and blocker.

Do not apply code changes in this pass.

Return a short markdown review report. The first non-empty line must be exactly one of:

RESULT: ok
RESULT: fix-needed

If you choose `RESULT: fix-needed`, add a `## Findings` section with concrete, actionable items.

Response

## Plan Pass

## Problem
Fixer observed `/usr/bin/python3.13` running `supervisord` with high aggregate CPU, but the captured syscall evidence shows a one-second `poll([{fd=4,...}], 1, 1000)` timeout followed by `wait4(-1, ..., WNOHANG) = -1 ECHILD`. The sampled process state is `S (sleeping)` with `wchan` in `poll_schedule_timeout`, so the available evidence does not identify a CPython busy loop or a safe upstream CPython source change.

## Evidence Confidence
observed

## Proposed Subject
No CPython source patch in this pass: close as a diagnosis/report plan unless new evidence ties the hot path to CPython itself. The maintainer-facing subject would be: `Do not patch CPython for supervisord one-second poll evidence without a runtime reproducer`.

## Patch Plan
- Do not edit CPython yet. The script/application entrypoint is `supervisord`; per the evidence, investigate that event loop before treating `/usr/bin/python3.13` as defective.
- Use the evidence limit explicitly: Fixer observed CPU attribution to `python3.13`, but the syscall trace is a timed sleep loop, not a tight zero-timeout poll loop.
- Mention local CPython conventions checked: `README.rst` points to the CPython Developer Guide and `./configure && make && make test`; `Doc/README.rst` covers docs workflow. Relevant helpers found include `PyThread_*`, `PyMem_RawMalloc/Free`, `_del_safe.waitpid`, `_waitpid_lock`, and selector abstractions. No relevant local helper was found that would turn the observed `supervisord` loop into a CPython runtime fix.
- Do not add awkward control flow such as `goto`; no code change is planned. No prior Fixer patch was present in the clean workspace and none should be improved or replaced.
- If later evidence shows a CPython defect, scope the patch to the proven subsystem only, likely `Modules/selectmodule.c`, `Modules/posixmodule.c`, `Lib/subprocess.py`, or `Python/thread_pthread.h`, and add a focused regression test tied to the demonstrated failure.

## Risks
- A CPython patch based only on this bundle would likely mask normal supervisor behavior or change documented poll/wait semantics.
- The unresolved `pthread_attr_destroy` backtrace is not enough to prove thread-runtime fault; nearby CPython code destroys pthread attrs after thread creation and does not explain the observed `poll`/`wait4(ECHILD)` cadence.
- Running the captured system `supervisord` command could affect the host service environment, so reproduction should be bounded and isolated.

## Validation
- Before any future code patch, try the project-level entrypoint from the workspace root: `./configure && make`.
- If that fails due to missing build dependencies or generated files, record the exact failing command and reason, then run the narrowest relevant check, for example `./python -m test test_select test_os test_subprocess` after a partial build, or a leaf compile for the touched C file.
- Independent reproduction attempt, only if safe in an isolated container or disposable namespace: run `timeout 10 strace -f -ttT -e poll,wait4 /usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf` and verify whether it actually consumes CPU while producing the same one-second `poll`/`wait4(ECHILD)` pattern. Without that isolated reproduction, do not claim `reproduced`; final `## Issue Connection` should say the failure was observed by Fixer and not independently reproduced.

## Patch Pass

Subject: Diagnose supervisord poll trace without CPython patch

## Commit Message
The likely root cause is outside CPython: the collected trace is a `supervisord` process waking once per second, calling `wait4(..., WNOHANG)`, getting `ECHILD`, then sleeping again in `poll(..., 1000)`. That is an application event-loop cadence, not a tight CPython runtime spin.

No source change was made. CPython’s local patterns checked include `README.rst` build guidance, `PyThread_*`, `PyMem_RawMalloc/Free`, `os.wait4` wrappers in `Modules/posixmodule.c`, `select.poll` handling in `Modules/selectmodule.c`, and `subprocess`’s `_del_safe.waitpid` plus `_waitpid_lock`. No relevant local helper was found that would justify changing CPython for this signal.

## Evidence Confidence
observed

## Issue Connection
Fixer observed `/usr/bin/python3.13` running `/usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf` with high sampled CPU attribution, but the direct `/proc` and `strace` evidence shows the sampled thread sleeping in the kernel at `poll_schedule_timeout` and repeatedly executing `poll(..., 1000)` followed by `wait4(-1, ..., WNOHANG) = -1 ECHILD`.

The cautious code-level inference is that the Python process is running an application-level supervisor loop with a one-second timeout. The evidence does not show a zero-timeout poll loop, a CPython `select.poll()` bug, a broken `wait4()` wrapper, or a thread-startup failure despite the unresolved backtrace mentioning `pthread_attr_destroy`.

I followed the saved plan and made no source change. The expected effect is to avoid an upstream CPython patch that would be speculative and could change public `poll`, `wait4`, or subprocess semantics without a reproduced runtime bug. A useful upstream report should instead include an isolated `supervisord` reproduction or stronger evidence tying the hot path to CPython internals.

## Git Add Paths
None

## Validation
Ran `./configure && make` from the workspace root. It completed with exit code 0. Configure reported `poll`, `wait4`, `waitpid`, and pthread support available, and reported `poll()` as not broken. The build emitted existing warnings and reported `_ssl` failed to import because of undefined symbol `TLSv1_method`; optional `_dbm`, `_gdbm`, and `_tkinter` were missing. I cleaned generated build artifacts afterward with `make distclean`; `git status --short` is clean.

Independent reproduction was attempted only as a safety check, not by starting supervisor: `command -v strace || true; command -v supervisord || true; test -r /etc/supervisor/supervisord.conf ...`. Result: `strace` exists, `supervisord` is not on `PATH`, and `/etc/supervisor/supervisord.conf` is not readable. I did not run the captured supervisor command because using a host supervisor config could start or manage services outside this repo.

## Review Pass 1

RESULT: ok

No source diff is present, and the workspace matches the original snapshot. The no-patch diagnosis is appropriate for the evidence: the trace shows a `supervisord` process sleeping in one-second `poll()` calls with `wait4(... WNOHANG)` returning `ECHILD`, not a reproduced CPython runtime defect.

The author response includes valid `## Evidence Confidence` (`observed`), avoids claiming local reproduction, explains the evidence limit, names relevant CPython helpers/conventions checked, and reports the project-level `./configure && make` validation plus the bounded reproduction blocker. No fix-needed findings.

diagnosis-only report

report

python3.13 likely remains stuck in a busy-poll loop. A diagnosis report and patch proposal were created locally.

state: readycreated: 2026-05-18 15:56 UTCvalidation: ready
Published session

Prompt

## Plan Pass

You are planning a fixer patch before any edits happen.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. The original pre-edit snapshot is available at `./source` if you need to inspect it. For interpreter processes, plan from the script/application entrypoint evidence first and include the runtime only as a second investigation target unless the evidence proves a runtime bug.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround. Inspect the relevant code, nearby callers, project contribution docs, and local helper/compat APIs, but do not edit files in this pass.

Return a short markdown plan with these exact sections:

## Problem
## Evidence Confidence
## Proposed Subject
## Patch Plan
## Risks
## Validation

Classify `## Evidence Confidence` as exactly one of `reproduced`, `observed`, or `inferred`. Use `inferred` only for a no-patch diagnosis/report plan unless you can name the extra evidence you will collect before editing; inferred source patches are blocked by Fixer because they are not pull-request-ready. For `observed` source-patch plans, plan to say in the final `## Issue Connection` that the failure was observed by Fixer and not independently reproduced. If the plan touches authentication, authorization, credentials, cryptography, sandboxing, permissions, or timing/throttling behavior, treat it as security-sensitive: do not plan a source patch unless validation can reproduce the behavior and analyze the security impact; otherwise plan a no-patch diagnosis/report. The plan must explain how the proposed code change addresses the observed issue evidence, call out any prior Fixer patch that should be improved or replaced, reject awkward control flow such as avoidable `goto` if there is a cleaner bounded alternative, name any local helper APIs or maintainer conventions the patch should follow, and keep the intended maintainer-facing explanation clear enough that someone unfamiliar with the local complaint wording can still follow the fix. In `## Validation`, name the reproducible configure/build/test entrypoint you will try from the workspace root before any focused leaf compile or smoke check, and include one bounded independent reproduction attempt for the collected failure signal when it is safe and cheap. Do not plan to claim `reproduced` unless that reproduction command or test can actually show the failure.

## Patch Pass

You are working on a bounded fixer proposal.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. Produce the smallest reasonable patch for the target repository, keep the change upstreamable, prefer the clearest control flow available, and do not keep avoidable `goto` when a simpler structure would read better. Before introducing new file, process, allocation, locking, networking, or platform APIs, inspect nearby code and project contribution docs for existing helpers or compatibility wrappers and use those local patterns unless you can explain why they do not fit. Validate from a reproducible workspace-root entrypoint before falling back to focused leaf commands; if a build or test cannot run, report the exact command, the exact blocker, and any narrower check you ran instead. During validation, also try one bounded independent reproduction of the collected failure signal when it is safe and cheap, such as a failing test, smoke command, perf/strace comparison, or before/after runtime check. Only use `reproduced` if that command or test actually reproduced the failure; otherwise keep `observed` and report the reproduction blocker. The final explanation must connect the observed issue evidence to the actual code change, not just paraphrase the diff. Write like a maintainer is going to read the patch mail cold: explain the bug in plain language, define subsystem-specific jargon the first time you need it, and make the causal story obvious. Explicitly classify evidence confidence as `reproduced`, `observed`, or `inferred`: `reproduced` means you reproduced the failure locally; `observed` means Fixer has direct crash/log/trace evidence but you did not independently reproduce it; `inferred` means the source patch is not pull-request-ready, so do not leave a source diff unless you first gather stronger observed/reproduced evidence; otherwise return a no-patch diagnosis/report. For any source-changing `observed` patch, say explicitly in `## Issue Connection` that the failure was observed by Fixer and not independently reproduced. Security-sensitive areas such as authentication, authorization, credentials, cryptography, sandboxing, permissions, and timing/throttling behavior need reproduced evidence plus explicit security-impact analysis before leaving a source diff; otherwise return a no-patch diagnosis/report for human review. If you introduce non-obvious state translation, index remapping, or backend split logic, add a short source comment that explains the invariant being preserved.

Start by explaining the likely root cause from the collected perf, strace, and /proc evidence. If you cannot land a safe patch, leave a diagnosis that is strong enough for an upstream bug report.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround. 

Keep the change narrowly scoped and summarize validation clearly.

In every authoring pass, your final response must start with `Subject: <single-line git commit subject>` and then include these markdown sections exactly:

## Commit Message
A short upstream-friendly explanation of what changed and why. Write it in plain language that a maintainer can follow without local complaint context. If you use subsystem jargon, define it immediately.

## Evidence Confidence
Exactly one word: `reproduced`, `observed`, or `inferred`. Use `reproduced` only when you reproduced the failure locally with a command or test, and include that command/test in `## Validation`. Use `observed` when Fixer has direct crash/log/trace evidence but you did not independently reproduce it. If `## Git Add Paths` lists source files for an `observed` patch, `## Issue Connection` must explicitly say the failure was observed by Fixer and not independently reproduced. Security-sensitive source changes touching authentication, authorization, credentials, cryptography, sandboxing, permissions, or timing/throttling behavior require reproduced evidence and explicit security-impact analysis; otherwise list `None` under `## Git Add Paths` and write a no-patch diagnosis/report. Use `inferred` for profiler/strace/indirect evidence; inferred responses may be no-patch diagnoses or reports, but inferred source patches are not pull-request-ready until stronger evidence is gathered.

## Issue Connection
Write this as maintainer-facing patch mail, not as local Fixer notes. Cover four things explicitly in readable sentences: the user-visible symptom or the exact collected signal, the code-level cause or the cautious inference from evidence, the specific change you made, and the expected effect. Do not invent a reproducer, command line, crash, or user-visible failure that is not present in the evidence bundle. If the evidence is direct-but-not-reproduced, say it was observed by Fixer and not independently reproduced. If the evidence is indirect and you did not gather stronger evidence, do not leave a source diff; write a no-patch diagnosis/report instead. Include an explicit effect sentence such as `The expected effect is ...`, `This should reduce ...`, or `This prevents ...` for source patches. If the logic is non-obvious in code, mention that you added a short explanatory comment.

## Git Add Paths
List the repo-relative paths that belong in the final patch, one per line. Use `None` only when you intentionally made no source changes. Include intentionally new files, and do not list generated build artifacts.

## Validation
List the checks you ran, or say clearly that you could not run them. Include the independent reproduction command/test and result when `## Evidence Confidence` is `reproduced`; if reproduction was attempted but blocked, name the exact blocker and keep confidence at `observed` or `inferred`.

Before editing, read the plan at `./plan-output.txt` and follow it unless the code proves part of it wrong. If you change course, say so explicitly in the final write-up instead of silently drifting from the plan.

## Review Pass 1

You are reviewing a freshly generated fixer patch.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. Review the first patch pass. The original pre-edit snapshot is available at `./source` for diffing.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout. The latest author response is at `./patch-output.txt`. Inspect the current code and changed paths like a strict code reviewer. Focus on correctness, regressions, maintainability, awkward control flow such as avoidable `goto`, missing validation, weak or non-gittable commit message text, and explanations that fail to connect the observed issue evidence to the code change. Also review the maintainer experience: the patch mail should be easy to accept upstream, the user-visible bug should be explained in plain language, subsystem-specific jargon should be defined when first used, and any non-obvious state translation or index remapping in code should have a short explanatory comment. Reject patches that omit `## Evidence Confidence`, use anything other than `reproduced`, `observed`, or `inferred`, or sound more certain than that evidence level allows. Reject patches that claim `reproduced` unless `## Validation` names the concrete reproduction command or test and its result. Reject source patches in security-sensitive areas such as authentication, authorization, credentials, cryptography, sandboxing, permissions, and timing/throttling behavior unless the author reproduced the behavior and explicitly analyzed the security impact of the change; observed-only evidence should become a diagnosis/report, not a PR-ready source diff. Reject patches that invent a reproducer, command line, crash, or user-visible failure not present in the evidence bundle; indirect profiler or strace evidence may justify a cautious mitigation, but the author must say it is indirect instead of presenting it as a confirmed upstream bug. Reject patches that introduce generic libc/std APIs when nearby code or project docs provide a local compat/helper API for the same job, unless the author explicitly justifies the exception. Reject validation that only reports a leaf object/syntax build when a project-level configure/build/test entrypoint exists and was not attempted; if a full build cannot run, the author must show the exact failed command and blocker.

Do not apply code changes in this pass.

Return a short markdown review report. The first non-empty line must be exactly one of:

RESULT: ok
RESULT: fix-needed

If you choose `RESULT: fix-needed`, add a `## Findings` section with concrete, actionable items.

Response

## Plan Pass

## Problem
Fixer observed `/usr/bin/python3.13` running `/usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf` with repeated `wait4(-1, ..., WNOHANG) = ECHILD` followed by `poll(..., 1000)` timeouts. That pattern points first at the `supervisord` application loop, not a confirmed CPython runtime defect.

## Evidence Confidence
observed

## Proposed Subject
No CPython source patch yet: diagnose/report insufficient runtime evidence for `python3.13`, and redirect investigation toward the `supervisord` event-loop/child-reaping path unless a bounded reproduction shows CPython’s `select`, `os.wait4/waitpid`, signal handling, or thread runtime misbehaving.

## Patch Plan
Do not edit CPython in this pass. The evidence is profiler/strace-only and does not show a CPython API returning an incorrect result or spinning without blocking.

Start from the script/application entrypoint evidence: `supervisord` is doing a 1-second poll loop and checking for children when none exist. The process is also reported sleeping in `poll_schedule_timeout`, which weakens the “busy CPU in CPython” claim.

If later evidence proves a CPython issue, keep the patch upstream-style and local to the implicated subsystem. Relevant CPython conventions/helpers found:
`Modules/selectmodule.c` uses `_PyTime_FromMillisecondsObject`, `_PyDeadline_Init`, `_PyDeadline_Get`, `Py_BEGIN_ALLOW_THREADS`, and `PyErr_CheckSignals` around blocking poll/select calls.
`Python/thread_pthread.h` uses `PyMem_RawMalloc/Free` and pthread attribute cleanup conventions.
`README.rst` points contributors to the CPython Developer Guide and documents `./configure`, `make`, and `make test`.

No relevant prior Fixer patch was found to improve or replace. Avoid adding awkward control flow such as an unnecessary `goto`; if a future cleanup patch is justified, use the existing bounded cleanup style around the affected helper.

## Risks
A CPython patch from the current evidence would be speculative and likely misattribute an application-level supervisor loop to the interpreter.

Changing `select`, `os.wait*`, signal, or thread behavior without a reproducer risks regressions in asyncio, subprocess, multiprocessing, and embedders.

## Validation
First try the project-level entrypoint from the workspace root: `./configure && make`.

If that fails due to missing dependencies or generated files, record the exact failing command and reason, then run the narrowest relevant CPython check, likely a focused compile of the implicated module plus targeted tests such as `./python -m test test_select test_wait4 test_subprocess`.

Bounded independent reproduction attempt: run a small Python script that repeatedly calls `os.waitpid(-1, os.WNOHANG)` with no children and `select.poll().poll(1000)`, then confirm via timing/strace that it blocks for about one second per loop and does not demonstrate a CPython spin.

## Patch Pass

Subject: Diagnose supervisord poll loop evidence as non-CPython

## Commit Message
No source change. The collected signal shows `supervisord` repeatedly checking for exited children and then blocking in `poll(2)` for one second. That is not enough evidence for an upstream CPython runtime patch.

## Evidence Confidence
inferred

## Issue Connection
Fixer collected profiler, strace, and `/proc` evidence from `/usr/bin/python3.13` running `/usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf`. The strace excerpt shows repeated `wait4(-1, ..., WNOHANG) = -1 ECHILD` followed by `poll(..., 1000)` timeouts, while `/proc` reports the process sleeping in `poll_schedule_timeout`.

The cautious code-level inference is that this is an application-level supervisor loop: `ECHILD` means there are no child processes to reap, and the following `poll(..., 1000)` is a one-second blocking wait, not a zero-timeout spin. CPython’s nearby `select.poll()` code already uses `_PyTime_FromMillisecondsObject`, `_PyDeadline_Init`, `_PyDeadline_Get`, `Py_BEGIN_ALLOW_THREADS`, and `PyErr_CheckSignals`; `os.wait4()` similarly releases the GIL and retries only on `EINTR`.

I followed the prior plan and did not change course: no CPython source patch was left because the evidence does not identify an incorrect CPython return value, missed timeout, or interpreter-side busy loop. The expected effect is that this proposal becomes an upstream-ready diagnosis/report rather than a speculative runtime patch.

## Git Add Paths
None

## Validation
Checked contribution/style entry points before deciding not to patch. No `CONTRIBUTING`, `HACKING`, `README-hacking`, root `README.md`, `docs/`, or `dev-docs/` were present; `README.rst` points contributors to the CPython Developer Guide and documents `./configure`, `make`, and `make test`.

Ran workspace-root validation: `./configure && make`. It exited 0. Build output reported optional module issues: `_ssl` failed to import due `undefined symbol: TLSv1_method`, and `_dbm`, `_gdbm`, `_tkinter` were missing.

Ran focused tests: `./python -m test test_select test_wait4`. Result: success, both tests passed.

Independent reproduction attempt: a small script called `os.waitpid(-1, os.WNOHANG)` with no children and then `select.poll().poll(1000)` three times. Result: `child_errors=3`, empty poll results, elapsed `3.003` seconds, so the local behavior blocked for about one second per loop and did not reproduce a CPython busy spin.

Attempted syscall comparison with `strace -qq -e trace=wait4,poll ./python ...`, but ptrace is blocked in this environment: `PTRACE_TRACEME: Operation not permitted` and `ptrace(PTRACE_SEIZE, 5): Operation not permitted`.

## Review Pass 1

RESULT: ok

No blocking issues found. The workspace has no source diff, which matches the `inferred` evidence classification and the no-patch diagnosis.

The author’s response correctly avoids turning profiler/strace evidence into a speculative CPython patch, connects the signal to `supervisord`’s wait/poll loop, names relevant CPython helper patterns, and reports project-level validation plus a bounded local reproduction attempt.

diagnosis-only report

report

python3.13 likely remains stuck in a busy-poll loop. A diagnosis report and patch proposal were created locally.

state: readycreated: 2026-05-18 15:56 UTCvalidation: ready
Published session

Prompt

## Plan Pass

You are planning a fixer patch before any edits happen.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. The original pre-edit snapshot is available at `./source` if you need to inspect it. For interpreter processes, plan from the script/application entrypoint evidence first and include the runtime only as a second investigation target unless the evidence proves a runtime bug.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround. Inspect the relevant code, nearby callers, project contribution docs, and local helper/compat APIs, but do not edit files in this pass.

Return a short markdown plan with these exact sections:

## Problem
## Evidence Confidence
## Proposed Subject
## Patch Plan
## Risks
## Validation

Classify `## Evidence Confidence` as exactly one of `reproduced`, `observed`, or `inferred`. Use `inferred` only for a no-patch diagnosis/report plan unless you can name the extra evidence you will collect before editing; inferred source patches are blocked by Fixer because they are not pull-request-ready. For `observed` source-patch plans, plan to say in the final `## Issue Connection` that the failure was observed by Fixer and not independently reproduced. If the plan touches authentication, authorization, credentials, cryptography, sandboxing, permissions, or timing/throttling behavior, treat it as security-sensitive: do not plan a source patch unless validation can reproduce the behavior and analyze the security impact; otherwise plan a no-patch diagnosis/report. The plan must explain how the proposed code change addresses the observed issue evidence, call out any prior Fixer patch that should be improved or replaced, reject awkward control flow such as avoidable `goto` if there is a cleaner bounded alternative, name any local helper APIs or maintainer conventions the patch should follow, and keep the intended maintainer-facing explanation clear enough that someone unfamiliar with the local complaint wording can still follow the fix. In `## Validation`, name the reproducible configure/build/test entrypoint you will try from the workspace root before any focused leaf compile or smoke check, and include one bounded independent reproduction attempt for the collected failure signal when it is safe and cheap. Do not plan to claim `reproduced` unless that reproduction command or test can actually show the failure.

## Patch Pass

You are working on a bounded fixer proposal.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. Produce the smallest reasonable patch for the target repository, keep the change upstreamable, prefer the clearest control flow available, and do not keep avoidable `goto` when a simpler structure would read better. Before introducing new file, process, allocation, locking, networking, or platform APIs, inspect nearby code and project contribution docs for existing helpers or compatibility wrappers and use those local patterns unless you can explain why they do not fit. Validate from a reproducible workspace-root entrypoint before falling back to focused leaf commands; if a build or test cannot run, report the exact command, the exact blocker, and any narrower check you ran instead. During validation, also try one bounded independent reproduction of the collected failure signal when it is safe and cheap, such as a failing test, smoke command, perf/strace comparison, or before/after runtime check. Only use `reproduced` if that command or test actually reproduced the failure; otherwise keep `observed` and report the reproduction blocker. The final explanation must connect the observed issue evidence to the actual code change, not just paraphrase the diff. Write like a maintainer is going to read the patch mail cold: explain the bug in plain language, define subsystem-specific jargon the first time you need it, and make the causal story obvious. Explicitly classify evidence confidence as `reproduced`, `observed`, or `inferred`: `reproduced` means you reproduced the failure locally; `observed` means Fixer has direct crash/log/trace evidence but you did not independently reproduce it; `inferred` means the source patch is not pull-request-ready, so do not leave a source diff unless you first gather stronger observed/reproduced evidence; otherwise return a no-patch diagnosis/report. For any source-changing `observed` patch, say explicitly in `## Issue Connection` that the failure was observed by Fixer and not independently reproduced. Security-sensitive areas such as authentication, authorization, credentials, cryptography, sandboxing, permissions, and timing/throttling behavior need reproduced evidence plus explicit security-impact analysis before leaving a source diff; otherwise return a no-patch diagnosis/report for human review. If you introduce non-obvious state translation, index remapping, or backend split logic, add a short source comment that explains the invariant being preserved.

Start by explaining the likely root cause from the collected perf, strace, and /proc evidence. If you cannot land a safe patch, leave a diagnosis that is strong enough for an upstream bug report.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround. 

Keep the change narrowly scoped and summarize validation clearly.

In every authoring pass, your final response must start with `Subject: <single-line git commit subject>` and then include these markdown sections exactly:

## Commit Message
A short upstream-friendly explanation of what changed and why. Write it in plain language that a maintainer can follow without local complaint context. If you use subsystem jargon, define it immediately.

## Evidence Confidence
Exactly one word: `reproduced`, `observed`, or `inferred`. Use `reproduced` only when you reproduced the failure locally with a command or test, and include that command/test in `## Validation`. Use `observed` when Fixer has direct crash/log/trace evidence but you did not independently reproduce it. If `## Git Add Paths` lists source files for an `observed` patch, `## Issue Connection` must explicitly say the failure was observed by Fixer and not independently reproduced. Security-sensitive source changes touching authentication, authorization, credentials, cryptography, sandboxing, permissions, or timing/throttling behavior require reproduced evidence and explicit security-impact analysis; otherwise list `None` under `## Git Add Paths` and write a no-patch diagnosis/report. Use `inferred` for profiler/strace/indirect evidence; inferred responses may be no-patch diagnoses or reports, but inferred source patches are not pull-request-ready until stronger evidence is gathered.

## Issue Connection
Write this as maintainer-facing patch mail, not as local Fixer notes. Cover four things explicitly in readable sentences: the user-visible symptom or the exact collected signal, the code-level cause or the cautious inference from evidence, the specific change you made, and the expected effect. Do not invent a reproducer, command line, crash, or user-visible failure that is not present in the evidence bundle. If the evidence is direct-but-not-reproduced, say it was observed by Fixer and not independently reproduced. If the evidence is indirect and you did not gather stronger evidence, do not leave a source diff; write a no-patch diagnosis/report instead. Include an explicit effect sentence such as `The expected effect is ...`, `This should reduce ...`, or `This prevents ...` for source patches. If the logic is non-obvious in code, mention that you added a short explanatory comment.

## Git Add Paths
List the repo-relative paths that belong in the final patch, one per line. Use `None` only when you intentionally made no source changes. Include intentionally new files, and do not list generated build artifacts.

## Validation
List the checks you ran, or say clearly that you could not run them. Include the independent reproduction command/test and result when `## Evidence Confidence` is `reproduced`; if reproduction was attempted but blocked, name the exact blocker and keep confidence at `observed` or `inferred`.

Before editing, read the plan at `./plan-output.txt` and follow it unless the code proves part of it wrong. If you change course, say so explicitly in the final write-up instead of silently drifting from the plan.

## Review Pass 1

You are reviewing a freshly generated fixer patch.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. Review the first patch pass. The original pre-edit snapshot is available at `./source` for diffing.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout. The latest author response is at `./patch-output.txt`. Inspect the current code and changed paths like a strict code reviewer. Focus on correctness, regressions, maintainability, awkward control flow such as avoidable `goto`, missing validation, weak or non-gittable commit message text, and explanations that fail to connect the observed issue evidence to the code change. Also review the maintainer experience: the patch mail should be easy to accept upstream, the user-visible bug should be explained in plain language, subsystem-specific jargon should be defined when first used, and any non-obvious state translation or index remapping in code should have a short explanatory comment. Reject patches that omit `## Evidence Confidence`, use anything other than `reproduced`, `observed`, or `inferred`, or sound more certain than that evidence level allows. Reject patches that claim `reproduced` unless `## Validation` names the concrete reproduction command or test and its result. Reject source patches in security-sensitive areas such as authentication, authorization, credentials, cryptography, sandboxing, permissions, and timing/throttling behavior unless the author reproduced the behavior and explicitly analyzed the security impact of the change; observed-only evidence should become a diagnosis/report, not a PR-ready source diff. Reject patches that invent a reproducer, command line, crash, or user-visible failure not present in the evidence bundle; indirect profiler or strace evidence may justify a cautious mitigation, but the author must say it is indirect instead of presenting it as a confirmed upstream bug. Reject patches that introduce generic libc/std APIs when nearby code or project docs provide a local compat/helper API for the same job, unless the author explicitly justifies the exception. Reject validation that only reports a leaf object/syntax build when a project-level configure/build/test entrypoint exists and was not attempted; if a full build cannot run, the author must show the exact failed command and blocker.

Do not apply code changes in this pass.

Return a short markdown review report. The first non-empty line must be exactly one of:

RESULT: ok
RESULT: fix-needed

If you choose `RESULT: fix-needed`, add a `## Findings` section with concrete, actionable items.

Response

## Plan Pass

## Problem
Fixer observed `/usr/bin/python3.13` running `/usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf` with repeated `wait4(-1, ..., WNOHANG) = ECHILD` followed by `poll(..., 1000)` timeouts. That pattern points first at the `supervisord` application loop, not a confirmed CPython runtime defect.

## Evidence Confidence
observed

## Proposed Subject
No CPython source patch yet: diagnose/report insufficient runtime evidence for `python3.13`, and redirect investigation toward the `supervisord` event-loop/child-reaping path unless a bounded reproduction shows CPython’s `select`, `os.wait4/waitpid`, signal handling, or thread runtime misbehaving.

## Patch Plan
Do not edit CPython in this pass. The evidence is profiler/strace-only and does not show a CPython API returning an incorrect result or spinning without blocking.

Start from the script/application entrypoint evidence: `supervisord` is doing a 1-second poll loop and checking for children when none exist. The process is also reported sleeping in `poll_schedule_timeout`, which weakens the “busy CPU in CPython” claim.

If later evidence proves a CPython issue, keep the patch upstream-style and local to the implicated subsystem. Relevant CPython conventions/helpers found:
`Modules/selectmodule.c` uses `_PyTime_FromMillisecondsObject`, `_PyDeadline_Init`, `_PyDeadline_Get`, `Py_BEGIN_ALLOW_THREADS`, and `PyErr_CheckSignals` around blocking poll/select calls.
`Python/thread_pthread.h` uses `PyMem_RawMalloc/Free` and pthread attribute cleanup conventions.
`README.rst` points contributors to the CPython Developer Guide and documents `./configure`, `make`, and `make test`.

No relevant prior Fixer patch was found to improve or replace. Avoid adding awkward control flow such as an unnecessary `goto`; if a future cleanup patch is justified, use the existing bounded cleanup style around the affected helper.

## Risks
A CPython patch from the current evidence would be speculative and likely misattribute an application-level supervisor loop to the interpreter.

Changing `select`, `os.wait*`, signal, or thread behavior without a reproducer risks regressions in asyncio, subprocess, multiprocessing, and embedders.

## Validation
First try the project-level entrypoint from the workspace root: `./configure && make`.

If that fails due to missing dependencies or generated files, record the exact failing command and reason, then run the narrowest relevant CPython check, likely a focused compile of the implicated module plus targeted tests such as `./python -m test test_select test_wait4 test_subprocess`.

Bounded independent reproduction attempt: run a small Python script that repeatedly calls `os.waitpid(-1, os.WNOHANG)` with no children and `select.poll().poll(1000)`, then confirm via timing/strace that it blocks for about one second per loop and does not demonstrate a CPython spin.

## Patch Pass

Subject: Diagnose supervisord poll loop evidence as non-CPython

## Commit Message
No source change. The collected signal shows `supervisord` repeatedly checking for exited children and then blocking in `poll(2)` for one second. That is not enough evidence for an upstream CPython runtime patch.

## Evidence Confidence
inferred

## Issue Connection
Fixer collected profiler, strace, and `/proc` evidence from `/usr/bin/python3.13` running `/usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf`. The strace excerpt shows repeated `wait4(-1, ..., WNOHANG) = -1 ECHILD` followed by `poll(..., 1000)` timeouts, while `/proc` reports the process sleeping in `poll_schedule_timeout`.

The cautious code-level inference is that this is an application-level supervisor loop: `ECHILD` means there are no child processes to reap, and the following `poll(..., 1000)` is a one-second blocking wait, not a zero-timeout spin. CPython’s nearby `select.poll()` code already uses `_PyTime_FromMillisecondsObject`, `_PyDeadline_Init`, `_PyDeadline_Get`, `Py_BEGIN_ALLOW_THREADS`, and `PyErr_CheckSignals`; `os.wait4()` similarly releases the GIL and retries only on `EINTR`.

I followed the prior plan and did not change course: no CPython source patch was left because the evidence does not identify an incorrect CPython return value, missed timeout, or interpreter-side busy loop. The expected effect is that this proposal becomes an upstream-ready diagnosis/report rather than a speculative runtime patch.

## Git Add Paths
None

## Validation
Checked contribution/style entry points before deciding not to patch. No `CONTRIBUTING`, `HACKING`, `README-hacking`, root `README.md`, `docs/`, or `dev-docs/` were present; `README.rst` points contributors to the CPython Developer Guide and documents `./configure`, `make`, and `make test`.

Ran workspace-root validation: `./configure && make`. It exited 0. Build output reported optional module issues: `_ssl` failed to import due `undefined symbol: TLSv1_method`, and `_dbm`, `_gdbm`, `_tkinter` were missing.

Ran focused tests: `./python -m test test_select test_wait4`. Result: success, both tests passed.

Independent reproduction attempt: a small script called `os.waitpid(-1, os.WNOHANG)` with no children and then `select.poll().poll(1000)` three times. Result: `child_errors=3`, empty poll results, elapsed `3.003` seconds, so the local behavior blocked for about one second per loop and did not reproduce a CPython busy spin.

Attempted syscall comparison with `strace -qq -e trace=wait4,poll ./python ...`, but ptrace is blocked in this environment: `PTRACE_TRACEME: Operation not permitted` and `ptrace(PTRACE_SEIZE, 5): Operation not permitted`.

## Review Pass 1

RESULT: ok

No blocking issues found. The workspace has no source diff, which matches the `inferred` evidence classification and the no-patch diagnosis.

The author’s response correctly avoids turning profiler/strace evidence into a speculative CPython patch, connects the signal to `supervisord`’s wait/poll loop, names relevant CPython helper patterns, and reports project-level validation plus a bounded local reproduction attempt.

diagnosis-only report

report

python3.13 likely remains stuck in a busy-poll loop. A diagnosis report and patch proposal were created locally.

state: readycreated: 2026-05-18 14:19 UTCvalidation: ready
Published session

Prompt

## Plan Pass

You are planning a fixer patch before any edits happen.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. The original pre-edit snapshot is available at `./source` if you need to inspect it. For interpreter processes, plan from the script/application entrypoint evidence first and include the runtime only as a second investigation target unless the evidence proves a runtime bug.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround. Inspect the relevant code, nearby callers, project contribution docs, and local helper/compat APIs, but do not edit files in this pass.

Return a short markdown plan with these exact sections:

## Problem
## Evidence Confidence
## Proposed Subject
## Patch Plan
## Risks
## Validation

Classify `## Evidence Confidence` as exactly one of `reproduced`, `observed`, or `inferred`. Use `inferred` only for a no-patch diagnosis/report plan unless you can name the extra evidence you will collect before editing; inferred source patches are blocked by Fixer because they are not pull-request-ready. For `observed` source-patch plans, plan to say in the final `## Issue Connection` that the failure was observed by Fixer and not independently reproduced. If the plan touches authentication, authorization, credentials, cryptography, sandboxing, permissions, or timing/throttling behavior, treat it as security-sensitive: do not plan a source patch unless validation can reproduce the behavior and analyze the security impact; otherwise plan a no-patch diagnosis/report. The plan must explain how the proposed code change addresses the observed issue evidence, call out any prior Fixer patch that should be improved or replaced, reject awkward control flow such as avoidable `goto` if there is a cleaner bounded alternative, name any local helper APIs or maintainer conventions the patch should follow, and keep the intended maintainer-facing explanation clear enough that someone unfamiliar with the local complaint wording can still follow the fix. In `## Validation`, name the reproducible configure/build/test entrypoint you will try from the workspace root before any focused leaf compile or smoke check, and include one bounded independent reproduction attempt for the collected failure signal when it is safe and cheap. Do not plan to claim `reproduced` unless that reproduction command or test can actually show the failure.

## Patch Pass

You are working on a bounded fixer proposal.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. Produce the smallest reasonable patch for the target repository, keep the change upstreamable, prefer the clearest control flow available, and do not keep avoidable `goto` when a simpler structure would read better. Before introducing new file, process, allocation, locking, networking, or platform APIs, inspect nearby code and project contribution docs for existing helpers or compatibility wrappers and use those local patterns unless you can explain why they do not fit. Validate from a reproducible workspace-root entrypoint before falling back to focused leaf commands; if a build or test cannot run, report the exact command, the exact blocker, and any narrower check you ran instead. During validation, also try one bounded independent reproduction of the collected failure signal when it is safe and cheap, such as a failing test, smoke command, perf/strace comparison, or before/after runtime check. Only use `reproduced` if that command or test actually reproduced the failure; otherwise keep `observed` and report the reproduction blocker. The final explanation must connect the observed issue evidence to the actual code change, not just paraphrase the diff. Write like a maintainer is going to read the patch mail cold: explain the bug in plain language, define subsystem-specific jargon the first time you need it, and make the causal story obvious. Explicitly classify evidence confidence as `reproduced`, `observed`, or `inferred`: `reproduced` means you reproduced the failure locally; `observed` means Fixer has direct crash/log/trace evidence but you did not independently reproduce it; `inferred` means the source patch is not pull-request-ready, so do not leave a source diff unless you first gather stronger observed/reproduced evidence; otherwise return a no-patch diagnosis/report. For any source-changing `observed` patch, say explicitly in `## Issue Connection` that the failure was observed by Fixer and not independently reproduced. Security-sensitive areas such as authentication, authorization, credentials, cryptography, sandboxing, permissions, and timing/throttling behavior need reproduced evidence plus explicit security-impact analysis before leaving a source diff; otherwise return a no-patch diagnosis/report for human review. If you introduce non-obvious state translation, index remapping, or backend split logic, add a short source comment that explains the invariant being preserved.

Start by explaining the likely root cause from the collected perf, strace, and /proc evidence. If you cannot land a safe patch, leave a diagnosis that is strong enough for an upstream bug report.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround. 

Keep the change narrowly scoped and summarize validation clearly.

In every authoring pass, your final response must start with `Subject: <single-line git commit subject>` and then include these markdown sections exactly:

## Commit Message
A short upstream-friendly explanation of what changed and why. Write it in plain language that a maintainer can follow without local complaint context. If you use subsystem jargon, define it immediately.

## Evidence Confidence
Exactly one word: `reproduced`, `observed`, or `inferred`. Use `reproduced` only when you reproduced the failure locally with a command or test, and include that command/test in `## Validation`. Use `observed` when Fixer has direct crash/log/trace evidence but you did not independently reproduce it. If `## Git Add Paths` lists source files for an `observed` patch, `## Issue Connection` must explicitly say the failure was observed by Fixer and not independently reproduced. Security-sensitive source changes touching authentication, authorization, credentials, cryptography, sandboxing, permissions, or timing/throttling behavior require reproduced evidence and explicit security-impact analysis; otherwise list `None` under `## Git Add Paths` and write a no-patch diagnosis/report. Use `inferred` for profiler/strace/indirect evidence; inferred responses may be no-patch diagnoses or reports, but inferred source patches are not pull-request-ready until stronger evidence is gathered.

## Issue Connection
Write this as maintainer-facing patch mail, not as local Fixer notes. Cover four things explicitly in readable sentences: the user-visible symptom or the exact collected signal, the code-level cause or the cautious inference from evidence, the specific change you made, and the expected effect. Do not invent a reproducer, command line, crash, or user-visible failure that is not present in the evidence bundle. If the evidence is direct-but-not-reproduced, say it was observed by Fixer and not independently reproduced. If the evidence is indirect and you did not gather stronger evidence, do not leave a source diff; write a no-patch diagnosis/report instead. Include an explicit effect sentence such as `The expected effect is ...`, `This should reduce ...`, or `This prevents ...` for source patches. If the logic is non-obvious in code, mention that you added a short explanatory comment.

## Git Add Paths
List the repo-relative paths that belong in the final patch, one per line. Use `None` only when you intentionally made no source changes. Include intentionally new files, and do not list generated build artifacts.

## Validation
List the checks you ran, or say clearly that you could not run them. Include the independent reproduction command/test and result when `## Evidence Confidence` is `reproduced`; if reproduction was attempted but blocked, name the exact blocker and keep confidence at `observed` or `inferred`.

Before editing, read the plan at `./plan-output.txt` and follow it unless the code proves part of it wrong. If you change course, say so explicitly in the final write-up instead of silently drifting from the plan.

## Review Pass 1 (local metadata check)

Local metadata consistency check

## Refinement Pass 1

You are refining a fixer patch after an explicit code review.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. Read the latest author response at `./patch-output.txt`. Read the review report at `./review-1-output.txt`. This is refinement round 1. The original pre-edit snapshot is available at `./source` if you need to compare the current patch against it. Re-read the planning pass at `./plan-output.txt` before editing. The workspace currently changes these repo-relative paths: Lib/__pycache__/__future__.cpython-313.pyc, Lib/__pycache__/_collections_abc.cpython-313.pyc, Lib/__pycache__/_colorize.cpython-313.pyc, Lib/__pycache__/_compat_pickle.cpython-313.pyc, Lib/__pycache__/_compression.cpython-313.pyc, Lib/__pycache__/_opcode_metadata.cpython-313.pyc, Lib/__pycache__/_sitebuiltins.cpython-313.pyc, Lib/__pycache__/_weakrefset.cpython-313.pyc, Lib/__pycache__/abc.cpython-313.pyc, Lib/__pycache__/argparse.cpython-313.pyc, Lib/__pycache__/ast.cpython-313.pyc, Lib/__pycache__/bz2.cpython-313.pyc, Lib/__pycache__/codecs.cpython-313.pyc, Lib/__pycache__/contextlib.cpython-313.pyc, Lib/__pycache__/contextvars.cpython-313.pyc, Lib/__pycache__/copy.cpython-313.pyc, Lib/__pycache__/copyreg.cpython-313.pyc, Lib/__pycache__/datetime.cpython-313.pyc, Lib/__pycache__/dis.cpython-313.pyc, Lib/__pycache__/enum.cpython-313.pyc, Lib/__pycache__/fnmatch.cpython-313.pyc, Lib/__pycache__/functools.cpython-313.pyc, Lib/__pycache__/genericpath.cpython-313.pyc, Lib/__pycache__/gettext.cpython-313.pyc, Lib/__pycache__/glob.cpython-313.pyc, Lib/__pycache__/heapq.cpython-313.pyc, Lib/__pycache__/inspect.cpython-313.pyc, Lib/__pycache__/io.cpython-313.pyc, Lib/__pycache__/keyword.cpython-313.pyc, Lib/__pycache__/linecache.cpython-313.pyc, Lib/__pycache__/locale.cpython-313.pyc, Lib/__pycache__/lzma.cpython-313.pyc, Lib/__pycache__/numbers.cpython-313.pyc, Lib/__pycache__/opcode.cpython-313.pyc, Lib/__pycache__/operator.cpython-313.pyc, Lib/__pycache__/os.cpython-313.pyc, Lib/__pycache__/posixpath.cpython-313.pyc, Lib/__pycache__/reprlib.cpython-313.pyc, Lib/__pycache__/selectors.cpython-313.pyc, Lib/__pycache__/shutil.cpython-313.pyc, Lib/__pycache__/signal.cpython-313.pyc, Lib/__pycache__/site.cpython-313.pyc, Lib/__pycache__/socket.cpython-313.pyc, Lib/__pycache__/ssl.cpython-313.pyc, Lib/__pycache__/stat.cpython-313.pyc, Lib/__pycache__/string.cpython-313.pyc, Lib/__pycache__/struct.cpython-313.pyc, Lib/__pycache__/subprocess.cpython-313.pyc, Lib/__pycache__/textwrap.cpython-313.pyc, Lib/__pycache__/threading.cpython-313.pyc, Lib/__pycache__/token.cpython-313.pyc, Lib/__pycache__/tokenize.cpython-313.pyc, Lib/__pycache__/traceback.cpython-313.pyc, Lib/__pycache__/types.cpython-313.pyc, Lib/__pycache__/typing.cpython-313.pyc, Lib/__pycache__/warnings.cpython-313.pyc, Lib/__pycache__/weakref.cpython-313.pyc, Lib/asyncio/__pycache__/__init__.cpython-313.pyc, Lib/asyncio/__pycache__/base_events.cpython-313.pyc, Lib/asyncio/__pycache__/base_futures.cpython-313.pyc, Lib/asyncio/__pycache__/base_subprocess.cpython-313.pyc, Lib/asyncio/__pycache__/base_tasks.cpython-313.pyc, Lib/asyncio/__pycache__/constants.cpython-313.pyc, Lib/asyncio/__pycache__/coroutines.cpython-313.pyc, Lib/asyncio/__pycache__/events.cpython-313.pyc, Lib/asyncio/__pycache__/exceptions.cpython-313.pyc, Lib/asyncio/__pycache__/format_helpers.cpython-313.pyc, Lib/asyncio/__pycache__/futures.cpython-313.pyc, Lib/asyncio/__pycache__/locks.cpython-313.pyc, Lib/asyncio/__pycache__/log.cpython-313.pyc, Lib/asyncio/__pycache__/mixins.cpython-313.pyc, Lib/asyncio/__pycache__/protocols.cpython-313.pyc, Lib/asyncio/__pycache__/queues.cpython-313.pyc, Lib/asyncio/__pycache__/runners.cpython-313.pyc, Lib/asyncio/__pycache__/selector_events.cpython-313.pyc, Lib/asyncio/__pycache__/sslproto.cpython-313.pyc, Lib/asyncio/__pycache__/staggered.cpython-313.pyc, Lib/asyncio/__pycache__/streams.cpython-313.pyc, Lib/asyncio/__pycache__/subprocess.cpython-313.pyc, Lib/asyncio/__pycache__/taskgroups.cpython-313.pyc, Lib/asyncio/__pycache__/tasks.cpython-313.pyc, Lib/asyncio/__pycache__/threads.cpython-313.pyc, Lib/asyncio/__pycache__/timeouts.cpython-313.pyc, Lib/asyncio/__pycache__/transports.cpython-313.pyc, Lib/asyncio/__pycache__/trsock.cpython-313.pyc, Lib/asyncio/__pycache__/unix_events.cpython-313.pyc, Lib/collections/__pycache__/__init__.cpython-313.pyc, Lib/concurrent/__pycache__/__init__.cpython-313.pyc, Lib/concurrent/futures/__pycache__/__init__.cpython-313.pyc, Lib/concurrent/futures/__pycache__/_base.cpython-313.pyc, Lib/encodings/__pycache__/__init__.cpython-313.pyc, Lib/encodings/__pycache__/aliases.cpython-313.pyc, Lib/encodings/__pycache__/ascii.cpython-313.pyc, Lib/encodings/__pycache__/utf_8.cpython-313.pyc, Lib/importlib/__pycache__/__init__.cpython-313.pyc, Lib/importlib/__pycache__/_abc.cpython-313.pyc, Lib/logging/__pycache__/__init__.cpython-313.pyc, Lib/pathlib/__pycache__/__init__.cpython-313.pyc, Lib/pathlib/__pycache__/_abc.cpython-313.pyc, Lib/pathlib/__pycache__/_local.cpython-313.pyc, Lib/re/__pycache__/__init__.cpython-313.pyc, Lib/re/__pycache__/_casefix.cpython-313.pyc, Lib/re/__pycache__/_compiler.cpython-313.pyc, Lib/re/__pycache__/_constants.cpyth

[truncated 29270 bytes]

Response

## Plan Pass

## Problem
Fixer observed a `supervisord` process running under `/usr/bin/python3.13` with high aggregate CPU attribution, but the concrete syscall evidence shows a one-second `poll()` timeout followed by `wait4(-1, ..., WNOHANG) = ECHILD`. That pattern is owned by the Python application/event loop more than by CPython’s interpreter core, and the sampled process state was sleeping in `poll_schedule_timeout`.

## Evidence Confidence
inferred

## Proposed Subject
No CPython source patch in this pass. Produce a diagnosis/report that the evidence does not establish a Python 3.13 runtime bug, and collect application-entrypoint evidence from `supervisord` before considering any upstream CPython change.

## Patch Plan
Do not edit CPython for this evidence bundle.

The local CPython convention is documented in `README.rst`: use the upstream Developer Guide, `./configure`, `make`, and `make test`. The relevant local helpers/conventions found are `selectors.PollSelector`, `select.poll.poll()`’s timeout conversion via `_PyTime_FromMillisecondsObject()` / `_PyDeadline_*`, `Py_BEGIN_ALLOW_THREADS`, and POSIX wrappers such as `posix_error()` / `wait_helper()` in `posixmodule.c`. None points to an obvious interpreter busy loop for the observed one-second blocking `poll()`.

No prior Fixer patch was found. The workspace contains Debian quilt patches, but none appears tied to this Fixer finding.

If later evidence proves a CPython bug, prefer the existing bounded retry/EINTR patterns in `selectmodule.c` or `posixmodule.c`; avoid awkward control flow such as an avoidable `goto`.

## Risks
A source patch would be speculative and likely upstream-unacceptable because the command line is `/usr/bin/python3 /usr/bin/supervisord ...`, while the bundle does not include `supervisord` Python stack frames or a CPython-level reproducer.

The issue is timing/poll-loop-adjacent, so it should not be patched without a reproducible behavior and security-impact analysis.

## Validation
Before any future source patch, try the project entrypoint from the workspace root:

```sh
./configure && make
```

If that fails, record the exact failure and then use the narrowest relevant build/test.

Bounded independent check: after building, run a small `./python` script under `strace` that performs `os.waitpid(-1, os.WNOHANG)` and `select.poll().poll(1000)` for a few iterations, confirming whether CPython blocks for about one second rather than spinning. This would not reproduce the Fixer failure; it would test the suspected runtime primitives.

## Patch Pass

Subject: Diagnose supervisord poll trace without CPython change

## Commit Message
No source change. The collected trace most likely shows `supervisord` waking once per second to reap children and poll a file descriptor, not a CPython busy loop. CPython’s `poll` and `wait4` paths already pass through to the platform calls with existing timeout and EINTR handling.

## Evidence Confidence
inferred

## Issue Connection
Fixer collected perf, strace, and `/proc` evidence for `/usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf`. The exact signal is repeated `wait4(-1, ..., WNOHANG) = -1 ECHILD` followed by `poll(..., 1000) = 0 (Timeout) <1.001...>`, with `/proc` showing the sampled thread sleeping in `poll_schedule_timeout`.

The cautious code-level inference is that this is an application event-loop pattern: `supervisord` checks for children and then sleeps in `poll(2)` for one second. I inspected CPython’s matching paths: `selectors.PollSelector`, `select.poll.poll()` using `_PyTime_FromMillisecondsObject()`, `_PyDeadline_*`, and `Py_BEGIN_ALLOW_THREADS`, plus `os.wait4()`/`os.waitpid()` using `posix_error()` and `wait_helper()`. No relevant local helper was missing, and no CPython defect was established.

I followed the saved plan and made no source change. The expected effect is avoiding an upstream-unacceptable speculative runtime patch for evidence that currently points outside CPython.

## Git Add Paths
None

## Validation
Ran project-level entrypoint from the workspace root:

```sh
./configure && make
```

It completed with exit code 0. Configure/build noted optional module issues: `_dbm`, `_gdbm`, and `_tkinter` were missing, and `_ssl` was built then removed because it could not import with `undefined symbol: TLSv1_method`.

Bounded independent check:

```sh
/usr/bin/time -p ./python - <<'PY'
import os, select
r, w = os.pipe()
try:
    p = select.poll()
    p.register(r, select.POLLIN | select.POLLPRI | select.POLLHUP)
    for _ in range(3):
        try:
            os.wait4(-1, os.WNOHANG)
        except ChildProcessError:
            pass
        p.poll(1000)
finally:
    os.close(r)
    os.close(w)
PY
```

Result: `real 3.01`, `user 0.00`, `sys 0.00`, consistent with sleeping one second per poll rather than reproducing a CPU spin. A syscall-level `strace` check was attempted but blocked by ptrace restrictions: `PTRACE_TRACEME: Operation not permitted`.

## Review Pass 1 (local metadata check)

RESULT: fix-needed

## Findings
1. Patch metadata drift: the workspace currently changes `Lib/__pycache__/__future__.cpython-313.pyc`, `Lib/__pycache__/_collections_abc.cpython-313.pyc`, `Lib/__pycache__/_colorize.cpython-313.pyc`, `Lib/__pycache__/_compat_pickle.cpython-313.pyc`, `Lib/__pycache__/_compression.cpython-313.pyc`, `Lib/__pycache__/_opcode_metadata.cpython-313.pyc`, `Lib/__pycache__/_sitebuiltins.cpython-313.pyc`, `Lib/__pycache__/_weakrefset.cpython-313.pyc`, `Lib/__pycache__/abc.cpython-313.pyc`, `Lib/__pycache__/argparse.cpython-313.pyc`, `Lib/__pycache__/ast.cpython-313.pyc`, `Lib/__pycache__/bz2.cpython-313.pyc`, `Lib/__pycache__/codecs.cpython-313.pyc`, `Lib/__pycache__/contextlib.cpython-313.pyc`, `Lib/__pycache__/contextvars.cpython-313.pyc`, `Lib/__pycache__/copy.cpython-313.pyc`, `Lib/__pycache__/copyreg.cpython-313.pyc`, `Lib/__pycache__/datetime.cpython-313.pyc`, `Lib/__pycache__/dis.cpython-313.pyc`, `Lib/__pycache__/enum.cpython-313.pyc`, `Lib/__pycache__/fnmatch.cpython-313.pyc`, `Lib/__pycache__/functools.cpython-313.pyc`, `Lib/__pycache__/genericpath.cpython-313.pyc`, `Lib/__pycache__/gettext.cpython-313.pyc`, `Lib/__pycache__/glob.cpython-313.pyc`, `Lib/__pycache__/heapq.cpython-313.pyc`, `Lib/__pycache__/inspect.cpython-313.pyc`, `Lib/__pycache__/io.cpython-313.pyc`, `Lib/__pycache__/keyword.cpython-313.pyc`, `Lib/__pycache__/linecache.cpython-313.pyc`, `Lib/__pycache__/locale.cpython-313.pyc`, `Lib/__pycache__/lzma.cpython-313.pyc`, `Lib/__pycache__/numbers.cpython-313.pyc`, `Lib/__pycache__/opcode.cpython-313.pyc`, `Lib/__pycache__/operator.cpython-313.pyc`, `Lib/__pycache__/os.cpython-313.pyc`, `Lib/__pycache__/posixpath.cpython-313.pyc`, `Lib/__pycache__/reprlib.cpython-313.pyc`, `Lib/__pycache__/selectors.cpython-313.pyc`, `Lib/__pycache__/shutil.cpython-313.pyc`, `Lib/__pycache__/signal.cpython-313.pyc`, `Lib/__pycache__/site.cpython-313.pyc`, `Lib/__pycache__/socket.cpython-313.pyc`, `Lib/__pycache__/ssl.cpython-313.pyc`, `Lib/__pycache__/stat.cpython-313.pyc`, `Lib/__pycache__/string.cpython-313.pyc`, `Lib/__pycache__/struct.cpython-313.pyc`, `Lib/__pycache__/subprocess.cpython-313.pyc`, `Lib/__pycache__/textwrap.cpython-313.pyc`, `Lib/__pycache__/threading.cpython-313.pyc`, `Lib/__pycache__/token.cpython-313.pyc`, `Lib/__pycache__/tokenize.cpython-313.pyc`, `Lib/__pycache__/traceback.cpython-313.pyc`, `Lib/__pycache__/types.cpython-313.pyc`, `Lib/__pycache__/typing.cpython-313.pyc`, `Lib/__pycache__/warnings.cpython-313.pyc`, `Lib/__pycache__/weakref.cpython-313.pyc`, `Lib/asyncio/__pycache__/__init__.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_events.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_futures.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_subprocess.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_tasks.cpython-313.pyc`, `Lib/asyncio/__pycache__/constants.cpython-313.pyc`, `Lib/asyncio/__pycache__/coroutines.cpython-313.pyc`, `Lib/asyncio/__pycache__/events.cpython-313.pyc`, `Lib/asyncio/__pycache__/exceptions.cpython-313.pyc`, `Lib/asyncio/__pycache__/format_helpers.cpython-313.pyc`, `Lib/asyncio/__pycache__/futures.cpython-313.pyc`, `Lib/asyncio/__pycache__/locks.cpython-313.pyc`, `Lib/asyncio/__pycache__/log.cpython-313.pyc`, `Lib/asyncio/__pycache__/mixins.cpython-313.pyc`, `Lib/asyncio/__pycache__/protocols.cpython-313.pyc`, `Lib/asyncio/__pycache__/queues.cpython-313.pyc`, `Lib/asyncio/__pycache__/runners.cpython-313.pyc`, `Lib/asyncio/__pycache__/selector_events.cpython-313.pyc`, `Lib/asyncio/__pycache__/sslproto.cpython-313.pyc`, `Lib/asyncio/__pycache__/staggered.cpython-313.pyc`, `Lib/asyncio/__pycache__/streams.cpython-313.pyc`, `Lib/asyncio/__pycache__/subprocess.cpython-313.pyc`, `Lib/asyncio/__pycache__/taskgroups.cpython-313.pyc`, `Lib/asyncio/__pycache__/tasks.cpython-313.pyc`, `Lib/asyncio/__pycache__/threads.cpython-313.pyc`, `Lib/asyncio/__pycache__/timeouts.cpython-313.pyc`, `Lib/asyncio/__pycache__/transports.cpython-313.pyc`, `Lib/asyncio/__pycache__/trsock.cpython-313.pyc`, `Lib/asyncio/__pycache__/unix_events.cpython-313.pyc`, `Lib/collections/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/futures/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/futures/__pycache__/_base.cpython-313.pyc`, `Lib/encodings/__pycache__/__init__.cpython-313.pyc`, `Lib/encodings/__pycache__/aliases.cpython-313.pyc`, `Lib/encodings/__pycache__/ascii.cpython-313.pyc`, `Lib/encodings/__pycache__/utf_8.cpython-313.pyc`, `Lib/importlib/__pycache__/__init__.cpython-313.pyc`, `Lib/importlib/__pycache__/_abc.cpython-313.pyc`, `Lib/logging/__pycache__/__init__.cpython-313.pyc`, `Lib/pathlib/__pycache__/__init__.cpython-313.pyc`, `Lib/pathlib/__pycache__/_abc.cpython-313.pyc`, `Lib/pathlib/__pycache__/_local.cpython-313.pyc`, `Lib/re/__pycache__/__init__.cpython-313.pyc`, `Lib/re/__pycache__/_casefix.cpython-313.pyc`, `Lib/re/__pycache__/_compiler.cpython-313.pyc`, `Lib/re/__pycache__/_constants.cpython-313.pyc`, `Lib/re/__pycache__/_parser.cpython-313.pyc`, `Lib/sysconfig/__pycache__/__init__.cpython-313.pyc`, `Lib/sysconfig/__pycache__/__main__.cpython-313.pyc`, `Lib/xml/__pycache__/__init__.cpython-313.pyc`, `Lib/xml/etree/__pycache__/ElementPath.cpython-313.pyc`, `Lib/xml/etree/__pycache__/__init__.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/__init__.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/_common.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/_tzpath.cpython-313.pyc`, `Makefile`, `Makefile.pre`, `Misc/python-config.sh`, `Misc/python-embed.pc`, `Misc/python.pc`, `Modules/Setup.bootstrap`, `Modules/Setup.local`, `Modules/Setup.stdlib`, `Modules/_abc.o`, `Modules/_asyncio.cpython-313-x86_64-linux-gnu.so`, `Modules/_asynciomodule.o`, `Modules/_bisect.cpython-313-x86_64-linux-gnu.so`, `Modules/_bisectmodule.o`, `Modules/_blake2.cpython-313-x86_64-linux-gnu.so`, `Modules/_blake2/blake2b_impl.o`, `Modules/_blake2/blake2module.o`, `Modules/_blake2/blake2s_impl.o`, `Modules/_bz2.cpython-313-x86_64-linux-gnu.so`, `Modules/_bz2module.o`, `Modules/_codecs_cn.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_hk.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_iso2022.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_jp.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_kr.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_tw.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecsmodule.o`, `Modules/_collectionsmodule.o`, `Modules/_contextvars.cpython-313-x86_64-linux-gnu.so`, `Modules/_contextvarsmodule.o`, `Modules/_csv.cpython-313-x86_64-linux-gnu.so`, `Modules/_csv.o`, `Modules/_ctypes.cpython-313-x86_64-linux-gnu.so`, `Modules/_ctypes/_ctypes.o`, `Modules/_ctypes/_ctypes_test.o`, `Modules/_ctypes/callbacks.o`, `Modules/_ctypes/callproc.o`, `Modules/_ctypes/cfield.o`, `Modules/_ctypes/stgdict.o`, `Modules/_ctypes_test.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses_panel.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses_panel.o`, `Modules/_cursesmodule.o`, `Modules/_datetime.cpython-313-x86_64-linux-gnu.so`, `Modules/_datetimemodule.o`, `Modules/_decimal.cpython-313-x86_64-linux-gnu.so`, `Modules/_decimal/_decimal.o`, `Modules/_decimal/libmpdec/basearith.o`, `Modules/_decimal/libmpdec/constants.o`, `Modules/_decimal/libmpdec/context.o`, `Modules/_decimal/libmpdec/convolute.o`, `Modules/_decimal/libmpdec/crt.o`, `Modules/_decimal/libmpdec/difradix2.o`, `Modules/_decimal/libmpdec/fnt.o`, `Modules/_decimal/libmpdec/fourstep.o`, `Modules/_decimal/libmpdec/io.o`, `Modules/_decimal/libmpdec/libmpdec.a`, `Modules/_decimal/libmpdec/mpalloc.o`, `Modules/_decimal/libmpdec/mpdecimal.o`, `Modules/_decimal/libmpdec/numbertheory.o`, `Modules/_decimal/libmpdec/sixstep.o`, `Modules/_decimal/libmpdec/transpose.o`, `Modules/_elementtree.cpython-313-x86_64-linux-gnu.so`, `Modules/_elementtree.o`, `Modules/_functoolsmodule.o`, `Modules/_hacl/Hacl_Hash_MD5.o`, `Modules/_hacl/Hacl_Hash_SHA1.o`, `Modules/_hacl/Hacl_Hash_SHA2.o`, `Modules/_hacl/Hacl_Hash_SHA3.o`, `Modules/_hacl/libHacl_Hash_SHA2.a`, `Modules/_hashlib.cpython-313-x86_64-linux-gnu.so`, `Modules/_hashopenssl.o`, `Modules/_heapq.cpython-313-x86_64-linux-gnu.so`, `Modules/_heapqmodule.o`, `Modules/_interpchannels.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpchannelsmodule.o`, `Modules/_interpqueues.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpqueuesmodule.o`, `Modules/_interpreters.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpretersmodule.o`, `Modules/_io/_iomodule.o`, `Modules/_io/bufferedio.o`, `Modules/_io/bytesio.o`, `Modules/_io/fileio.o`, `Modules/_io/iobase.o`, `Modules/_io/stringio.o`, `Modules/_io/textio.o`, `Modules/_json.cpython-313-x86_64-linux-gnu.so`, `Modules/_json.o`, `Modules/_localemodule.o`, `Modules/_lsprof.cpython-313-x86_64-linux-gnu.so`, `Modules/_lsprof.o`, `Modules/_lzma.cpython-313-x86_64-linux-gnu.so`, `Modules/_lzmamodule.o`, `Modules/_md5.cpython-313-x86_64-linux-gnu.so`, `Modules/_multibytecodec.cpython-313-x86_64-linux-gnu.so`, `Modules/_multiprocessing.cpython-313-x86_64-linux-gnu.so`, `Modules/_multiprocessing/multiprocessing.o`, `Modules/_multiprocessing/posixshmem.o`, `Modules/_multiprocessing/semaphore.o`, `Modules/_opcode.cpython-313-x86_64-linux-gnu.so`, `Modules/_opcode.o`, `Modules/_operator.o`, `Modules/_pickle.cpython-313-x86_64-linux-gnu.so`, `Modules/_pickle.o`, `Modules/_posixshmem.cpython-313-x86_64-linux-gnu.so`, `Modules/_posixsubprocess.cpython-313-x86_64-linux-gnu.so`, `Modules/_posixsubprocess.o`, `Modules/_queue.cpython-313-x86_64-linux-gnu.so`, `Modules/_queuemodule.o`, `Modules/_random.cpython-313-x86_64-linux-gnu.so`, `Modules/_randommodule.o`, `Modules/_sha1.cpython-313-x86_64-linux-gnu.so`, `Modules/_sha2.cpython-313-x86_64-linux-gnu.so`, `Modules/_sha3.cpython-313-x86_64-linux-gnu.so`, `Modules/_socket.cpython-313-x86_64-linux-gnu.so`, `Modules/_sqlite/blob.o`, `Modules/_sqlite/connection.o`, `Modules/_sqlite/cursor.o`, `Modules/_sqlite/microprotocols.o`, `Modules/_sqlite/module.o`, `Modules/_sqlite/prepare_protocol.o`, `Modules/_sqlite/row.o`, `Modules/_sqlite/statement.o`, `Modules/_sqlite/util.o`, `Modules/_sqlite3.cpython-313-x86_64-linux-gnu.so`, `Modules/_sre/sre.o`, `Modules/_ssl.o`, `Modules/_ssl_failed.cpython-313-x86_64-linux-gnu.so`, `Modules/_stat.o`, `Modules/_statistics.cpython-313-x86_64-linux-gnu.so`, `Modules/_statisticsmodule.o`, `Modules/_struct.cpython-313-x86_64-linux-gnu.so`, `Modules/_struct.o`, `Modules/_suggestions.o`, `Modules/_sysconfig.o`, `Modules/_testbuffer.cpython-313-x86_64-linux-gnu.so`, `Modules/_testbuffer.o`, `Modules/_testcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testcapi/abstract.o`, `Modules/_testcapi/buffer.o`, `Modules/_testcapi/bytes.o`, `Modules/_testcapi/code.o`, `Modules/_testcapi/codec.o`, `Modules/_testcapi/complex.o`, `Modules/_testcapi/datetime.o`, `Modules/_testcapi/dict.o`, `Modules/_testcapi/docstring.o`, `Modules/_testcapi/exceptions.o`, `Modules/_testcapi/file.o`, `Modules/_testcapi/float.o`, `Modules/_testcapi/gc.o`, `Modules/_testcapi/getargs.o`, `Modules/_testcapi/hash.o`, `Modules/_testcapi/heaptype.o`, `Modules/_testcapi/immortal.o`, `Modules/_testcapi/list.o`, `Modules/_testcapi/long.o`, `Modules/_testcapi/mem.o`, `Modules/_testcapi/monitoring.o`, `Modules/_testcapi/numbers.o`, `Modules/_testcapi/object.o`, `Modules/_testcapi/pyatomic.o`, `Modules/_testcapi/run.o`, `Modules/_testcapi/set.o`, `Modules/_testcapi/structmember.o`, `Modules/_testcapi/time.o`, `Modules/_testcapi/tuple.o`, `Modules/_testcapi/unicode.o`, `Modules/_testcapi/vectorcall.o`, `Modules/_testcapi/watchers.o`, `Modules/_testcapimodule.o`, `Modules/_testclinic.cpython-313-x86_64-linux-gnu.so`, `Modules/_testclinic.o`, `Modules/_testclinic_limited.cpython-313-x86_64-linux-gnu.so`, `Modules/_testclinic_limited.o`, `Modules/_testexternalinspection.cpython-313-x86_64-linux-gnu.so`, `Modules/_testexternalinspection.o`, `Modules/_testimportmultiple.cpython-313-x86_64-linux-gnu.so`, `Modules/_testimportmultiple.o`, `Modules/_testinternalcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testinternalcapi.o`, `Modules/_testinternalcapi/pytime.o`, `Modules/_testinternalcapi/set.o`, `Modules/_testinternalcapi/test_critical_sections.o`, `Modules/_testinternalcapi/test_lock.o`, `Modules/_testlimitedcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testlimitedcapi.o`, `Modules/_testlimitedcapi/abstract.o`, `Modules/_testlimitedcapi/bytearray.o`, `Modules/_testlimitedcapi/bytes.o`, `Modules/_testlimitedcapi/complex.o`, `Modules/_testlimitedcapi/dict.o`, `Modules/_testlimitedcapi/eval.o`, `Modules/_testlimitedcapi/file.o`, `Modules/_testlimitedcapi/float.o`, `Modules/_testlimitedcapi/heaptype_relative.o`, `Modules/_testlimitedcapi/import.o`, `Modules/_testlimitedcapi/list.o`, `Modules/_testlimitedcapi/long.o`, `Modules/_testlimitedcapi/object.o`, `Modules/_testlimitedcapi/pyos.o`, `Modules/_testlimitedcapi/set.o`, `Modules/_testlimitedcapi/sys.o`, `Modules/_testlimitedcapi/tuple.o`, `Modules/_testlimitedcapi/unicode.o`, `Modules/_testlimitedcapi/vectorcall_limited.o`, `Modules/_testmultiphase.cpython-313-x86_64-linux-gnu.so`, `Modules/_testmultiphase.o`, `Modules/_testsinglephase.cpython-313-x86_64-linux-gnu.so`, `Modules/_testsinglephase.o`, `Modules/_threadmodule.o`, `Modules/_tracemalloc.o`, `Modules/_typingmodule.o`, `Modules/_uuid.cpython-313-x86_64-linux-gnu.so`, `Modules/_uuidmodule.o`, `Modules/_weakref.o`, `Modules/_xxtestfuzz.cpython-313-x86_64-linux-gnu.so`, `Modules/_xxtestfuzz/_xxtestfuzz.o`, `Modules/_xxtestfuzz/fuzzer.o`, `Modules/_zoneinfo.cpython-313-x86_64-linux-gnu.so`, `Modules/_zoneinfo.o`, `Modules/array.cpython-313-x86_64-linux-gnu.so`, `Modules/arraymodule.o`, `Modules/atexitmodule.o`, `Modules/binascii.cpython-313-x86_64-linux-gnu.so`, `Modules/binascii.o`, `Modules/cjkcodecs/_codecs_cn.o`, `Modules/cjkcodecs/_codecs_hk.o`, `Modules/cjkcodecs/_codecs_iso2022.o`, `Modules/cjkcodecs/_codecs_jp.o`, `Modules/cjkcodecs/_codecs_kr.o`, `Modules/cjkcodecs/_codecs_tw.o`, `Modules/cjkcodecs/multibytecodec.o`, `Modules/cmath.cpython-313-x86_64-linux-gnu.so`, `Modules/cmathmodule.o`, `Modules/config.c`, `Modules/config.o`, `Modules/errnomodule.o`, `Modules/expat/libexpat.a`, `Modules/expat/xmlparse.o`, `Modules/expat/xmlrole.o`, `Modules/expat/xmltok.o`, `Modules/faulthandler.o`, `Modules/fcntl.cpython-313-x86_64-linux-gnu.so`, `Modules/fcntlmodule.o`, `Modules/gcmodule.o`, `Modules/getbuildinfo.o`, `Modules/getpath.o`, `Modules/getpath_noop.o`, `Modules/grp.cpython-313-x86_64-linux-gnu.so`, `Modules/grpmodule.o`, `Modules/itertoolsmodule.o`, `Modules/ld_so_aix`, `Modules/main.o`, `Modules/math.cpython-313-x86_64-linux-gnu.so`, `Modules/mathmodule.o`, `Modules/md5module.o`, `Modules/mmap.cpython-313-x86_64-linux-gnu.so`, `Modules/mmapmodule.o`, `Modules/posixmodule.o`, `Modules/pwdmodule.o`, `Modules/pyexpat.cpython-313-x86_64-linux-gnu.so`, `Modules/pyexpat.o`, `Modules/readline.cpython-313-x86_64-linux-gnu.so`, `Modules/readline.o`, `Modules/resource.cpython-313-x86_64-linux-gnu.so`, `Modules/resource.o`, `Modules/rotatingtree.o`, `Modules/select.cpython-313-x86_64-linux-gnu.so`, `Modules/selectmodule.o`, `Modules/sha1module.o`, `Modules/sha2module.o`, `Modules/sha3module.o`, `Modules/signalmodule.o`, `Modules/socketmodule.o`, `Modules/symtablemodule.o`, `Modules/syslog.cpython-313-x86_64-linux-gnu.so`, `Modules/syslogmodule.o`, `Modules/termios.cpython-313-x86_64-linux-gnu.so`, `Modules/termios.o`, `Modules/timemodule.o`, `Modules/unicodedata.cpython-313-x86_64-linux-gnu.so`, `Modules/unicodedata.o`, `Modules/xxlimited.cpython-313-x86_64-linux-gnu.so`, `Modules/xxlimited.o`, `Modules/xxlimited_35.cpython-313-x86_64-linux-gnu.so`, `Modules/xxlimited_35.o`, `Modules/xxsubtype.cpython-313-x86_64-linux-gnu.so`, `Modules/xxsubtype.o`, `Modules/zlib.cpython-313-x86_64-linux-gnu.so`, `Modules/zlibmodule.o`, `Objects/abstract.o`, `Objects/boolobject.o`, `Objects/bytearrayobject.o`, `Objects/bytes_methods.o`, `Objects/bytesobject.o`, `Objects/call.o`, `Objects/capsule.o`, `Objects/cellobject.o`, `Objects/classobject.o`, `Objects/codeobject.o`, `Objects/complexobject.o`, `Objects/descrobject.o`, `Objects/dictobject.o`, `Objects/enumobject.o`, `Objects/exceptions.o`, `Objects/fileobject.o`, `Objects/floatobject.o`, `Objects/frameobject.o`, `Objects/funcobject.o`, `Objects/genericaliasobject.o`, `Objects/genobject.o`, `Objects/iterobject.o`, `Objects/listobject.o`, `Objects/longobject.o`, `Objects/memoryobject.o`, `Objects/methodobject.o`, `Objects/moduleobject.o`, `Objects/namespaceobject.o`, `Objects/object.o`, `Objects/obmalloc.o`, `Objects/odictobject.o`, `Objects/picklebufobject.o`, `Objects/rangeobject.o`, `Objects/setobject.o`, `Objects/sliceobject.o`, `Objects/structseq.o`, `Objects/tupleobject.o`, `Objects/typeobject.o`, `Objects/typevarobject.o`, `Objects/unicodectype.o`, `Objects/unicodeobject.o`, `Objects/unionobject.o`, `Objects/weakrefobject.o`, `Parser/action_helpers.o`, `Parser/lexer/buffer.o`, `Parser/lexer/lexer.o`, `Parser/lexer/state.o`, `Parser/myreadline.o`, `Parser/parser.o`, `Parser/peg_api.o`, `Parser/pegen.o`, `Parser/pegen_errors.o`, `Parser/string_parser.o`, `Parser/token.o`, `Parser/tokenizer/file_tokenizer.o`, `Parser/tokenizer/helpers.o`, `Parser/tokenizer/readline_tokenizer.o`, `Parser/tokenizer/string_tokenizer.o`, `Parser/tokenizer/utf8_tokenizer.o`, `Programs/_bootstrap_python.o`, `Programs/_freeze_module`, `Programs/_freeze_module.o`, `Programs/_testembed`, `Programs/_testembed.o`, `Programs/python.o`, `Python/Python-ast.o`, `Python/Python-tokenize.o`, `Python/_warnings.o`, `Python/asdl.o`, `Python/asm_trampoline.o`, `Python/assemble.o`, `Python/ast.o`, `Python/ast_opt.o`, `Python/ast_unparse.o`, `Python/bltinmodule.o`, `Python/bootstrap_hash.o`, `Python/brc.o`, `Python/ceval.o`, `Python/ceval_gil.o`, `Python/codecs.o`, `Python/compile.o`, `Python/context.o`, `Python/critical_section.o`, `Python/crossinterp.o`, `Python/dtoa.o`, `Python/dynamic_annotations.o`, `Python/dynload_shlib.o`, `Python/errors.o`, `Python/fileutils.o`, `Python/flowgraph.o`, `Python/formatter_unicode.o`, `Python/frame.o`, `Python/frozen.o`, `Python/frozen_modules/__hello__.h`, `Python/frozen_modules/__phello__.h`, `Python/frozen_modules/__phello__.ham.eggs.h`, `Python/frozen_modules/__phello__.ham.h`, `Python/frozen_modules/__phello__.spam.h`, `Python/frozen_modules/_collections_abc.h`, `Python/frozen_modules/_sitebuiltins.h`, `Python/frozen_modules/abc.h`, `Python/frozen_modules/codecs.h`, `Python/frozen_modules/frozen_only.h`, `Python/frozen_modules/genericpath.h`, `Python/frozen_modules/getpath.h`, `Python/frozen_modules/importlib._bootstrap.h`, `Python/frozen_modules/importlib._bootstrap_external.h`, `Python/frozen_modules/importlib.machinery.h`, `Python/frozen_modules/importlib.util.h`, `Python/frozen_modules/io.h`, `Python/frozen_modules/ntpath.h`, `Python/frozen_modules/os.h`, `Python/frozen_modules/posixpath.h`, `Python/frozen_modules/runpy.h`, `Python/frozen_modules/site.h`, `Python/frozen_modules/stat.h`, `Python/frozen_modules/zipimport.h`, `Python/frozenmain.o`, `Python/future.o`, `Python/gc.o`, `Python/gc_free_threading.o`, `Python/gc_gil.o`, `Python/getargs.o`, `Python/getcompiler.o`, `Python/getcopyright.o`, `Python/getopt.o`, `Python/getplatform.o`, `Python/getversion.o`, `Python/hamt.o`, `Python/hashtable.o`, `Python/import.o`, `Python/importdl.o`, `Python/initconfig.o`, `Python/instruction_sequence.o`, `Python/instrumentation.o`, `Python/interpconfig.o`, `Python/intrinsics.o`, `Python/jit.o`, `Python/legacy_tracing.o`, `Python/lock.o`, `Python/marshal.o`, `Python/modsupport.o`, `Python/mysnprintf.o`, `Python/mystrtoul.o`, `Python/object_stack.o`, `Python/optimizer.o`, `Python/optimizer_analysis.o`, `Python/optimizer_symbols.o`, `Python/parking_lot.o`, `Python/pathconfig.o`, `Python/perf_jit_trampoline.o`, `Python/perf_trampoline.o`, `Python/preconfig.o`, `Python/pyarena.o`, `Python/pyctype.o`, `Python/pyfpe.o`, `Python/pyhash.o`, `Python/pylifecycle.o`, `Python/pymath.o`, `Python/pystate.o`, `Python/pystrcmp.o`, `Python/pystrhex.o`, `Python/pystrtod.o`, `Python/pythonrun.o`, `Python/pytime.o`, `Python/qsbr.o`, `Python/specialize.o`, `Python/structmember.o`, `Python/suggestions.o`, `Python/symtable.o`, `Python/sysmodule.o`, `Python/thread.o`, `Python/traceback.o`, `Python/tracemalloc.o`, `_bootstrap_python`, `build/lib.linux-x86_64-3.13/__pycache__/_sysconfigdata__linux_x86_64-linux-gnu.cpython-313.pyc`, `build/lib.linux-x86_64-3.13/_asyncio.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_bisect.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_blake2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_bz2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_cn.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_hk.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_iso2022.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_jp.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_kr.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_tw.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_contextvars.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_csv.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_ctypes.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_ctypes_test.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_curses.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_curses_panel.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_datetime.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_decimal.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_elementtree.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_hashlib.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_heapq.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpchannels.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpqueues.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpreters.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_json.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_lsprof.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_lzma.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_md5.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_multibytecodec.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_multiprocessing.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_opcode.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_pickle.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_posixshmem.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_posixsubprocess.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_queue.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_random.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha1.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha3.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_socket.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sqlite3.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_statistics.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_struct.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sysconfigdata__linux_x86_64-linux-gnu.py`, `build/lib.linux-x86_64-3.13/_testbuffer.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testclinic.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testclinic_limited.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testexternalinspection.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testimportmultiple.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testinternalcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testlimitedcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testmultiphase.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testsinglephase.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_uuid.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_xxtestfuzz.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_zoneinfo.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/array.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/binascii.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/cmath.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/fcntl.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/grp.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/math.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/mmap.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/pyexpat.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/readline.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/resource.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/select.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/syslog.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/termios.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/unicodedata.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxlimited.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxlimited_35.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxsubtype.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/zlib.cpython-313-x86_64-linux-gnu.so`, `build/scripts-3.13/idle3.13`, `build/scripts-3.13/pydoc3.13`, `config.log`, `config.status`, `libpython3.13.a`, `platform`, `pybuilddir.txt`, `pyconfig.h`, `python`, `python-config`, `python-config.py`, `python-gdb.py`, but `## Git Add Paths` lists `None`. Update `## Git Add Paths` to match the real shipped file set exactly, and make sure `## Issue Connection` explains every functional file that remains in the patch.
2. Missing from `## Git Add Paths`: `Lib/__pycache__/__future__.cpython-313.pyc`, `Lib/__pycache__/_collections_abc.cpython-313.pyc`, `Lib/__pycache__/_colorize.cpython-313.pyc`, `Lib/__pycache__/_compat_pickle.cpython-313.pyc`, `Lib/__pycache__/_compression.cpython-313.pyc`, `Lib/__pycache__/_opcode_metadata.cpython-313.pyc`, `Lib/__pycache__/_sitebuiltins.cpython-313.pyc`, `Lib/__pycache__/_weakrefset.cpython-313.pyc`, `Lib/__pycache__/abc.cpython-313.pyc`, `Lib/__pycache__/argparse.cpython-313.pyc`, `Lib/__pycache__/ast.cpython-313.pyc`, `Lib/__pycache__/bz2.cpython-313.pyc`, `Lib/__pycache__/codecs.cpython-313.pyc`, `Lib/__pycache__/contextlib.cpython-313.pyc`, `Lib/__pycache__/contextvars.cpython-313.pyc`, `Lib/__pycache__/copy.cpython-313.pyc`, `Lib/__pycache__/copyreg.cpython-313.pyc`, `Lib/__pycache__/datetime.cpython-313.pyc`, `Lib/__pycache__/dis.cpython-313.pyc`, `Lib/__pycache__/enum.cpython-313.pyc`, `Lib/__pycache__/fnmatch.cpython-313.pyc`, `Lib/__pycache__/functools.cpython-313.pyc`, `Lib/__pycache__/genericpath.cpython-313.pyc`, `Lib/__pycache__/gettext.cpython-313.pyc`, `Lib/__pycache__/glob.cpython-313.pyc`, `Lib/__pycache__/heapq.cpython-313.pyc`, `Lib/__pycache__/inspect.cpython-313.pyc`, `Lib/__pycache__/io.cpython-313.pyc`, `Lib/__pycache__/keyword.cpython-313.pyc`, `Lib/__pycache__/linecache.cpython-313.pyc`, `Lib/__pycache__/locale.cpython-313.pyc`, `Lib/__pycache__/lzma.cpython-313.pyc`, `Lib/__pycache__/numbers.cpython-313.pyc`, `Lib/__pycache__/opcode.cpython-313.pyc`, `Lib/__pycache__/operator.cpython-313.pyc`, `Lib/__pycache__/os.cpython-313.pyc`, `Lib/__pycache__/posixpath.cpython-313.pyc`, `Lib/__pycache__/reprlib.cpython-313.pyc`, `Lib/__pycache__/selectors.cpython-313.pyc`, `Lib/__pycache__/shutil.cpython-313.pyc`, `Lib/__pycache__/signal.cpython-313.pyc`, `Lib/__pycache__/site.cpython-313.pyc`, `Lib/__pycache__/socket.cpython-313.pyc`, `Lib/__pycache__/ssl.cpython-313.pyc`, `Lib/__pycache__/stat.cpython-313.pyc`, `Lib/__pycache__/string.cpython-313.pyc`, `Lib/__pycache__/struct.cpython-313.pyc`, `Lib/__pycache__/subprocess.cpython-313.pyc`, `Lib/__pycache__/textwrap.cpython-313.pyc`, `Lib/__pycache__/threading.cpython-313.pyc`, `Lib/__pycache__/token.cpython-313.pyc`, `Lib/__pycache__/tokenize.cpython-313.pyc`, `Lib/__pycache__/traceback.cpython-313.pyc`, `Lib/__pycache__/types.cpython-313.pyc`, `Lib/__pycache__/typing.cpython-313.pyc`, `Lib/__pycache__/warnings.cpython-313.pyc`, `Lib/__pycache__/weakref.cpython-313.pyc`, `Lib/asyncio/__pycache__/__init__.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_events.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_futures.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_subprocess.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_tasks.cpython-313.pyc`, `Lib/asyncio/__pycache__/constants.cpython-313.pyc`, `Lib/asyncio/__pycache__/coroutines.cpython-313.pyc`, `Lib/asyncio/__pycache__/events.cpython-313.pyc`, `Lib/asyncio/__pycache__/exceptions.cpython-313.pyc`, `Lib/asyncio/__pycache__/format_helpers.cpython-313.pyc`, `Lib/asyncio/__pycache__/futures.cpython-313.pyc`, `Lib/asyncio/__pycache__/locks.cpython-313.pyc`, `Lib/asyncio/__pycache__/log.cpython-313.pyc`, `Lib/asyncio/__pycache__/mixins.cpython-313.pyc`, `Lib/asyncio/__pycache__/protocols.cpython-313.pyc`, `Lib/asyncio/__pycache__/queues.cpython-313.pyc`, `Lib/asyncio/__pycache__/runners.cpython-313.pyc`, `Lib/asyncio/__pycache__/selector_events.cpython-313.pyc`, `Lib/asyncio/__pycache__/sslproto.cpython-313.pyc`, `Lib/asyncio/__pycache__/staggered.cpython-313.pyc`, `Lib/asyncio/__pycache__/streams.cpython-313.pyc`, `Lib/asyncio/__pycache__/subprocess.cpython-313.pyc`, `Lib/asyncio/__pycache__/taskgroups.cpython-313.pyc`, `Lib/asyncio/__pycache__/tasks.cpython-313.pyc`, `Lib/asyncio/__pycache__/threads.cpython-313.pyc`, `Lib/asyncio/__pycache__/timeouts.cpython-313.pyc`, `Lib/asyncio/__pycache__/transports.cpython-313.pyc`, `Lib/asyncio/__pycache__/trsock.cpython-313.pyc`, `Lib/asyncio/__pycache__/unix_events.cpython-313.pyc`, `Lib/collections/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/futures/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/futures/__pycache__/_base.cpython-313.pyc`, `Lib/encodings/__pycache__/__init__.cpython-313.pyc`, `Lib/encodings/__pycache__/aliases.cpython-313.pyc`, `Lib/encodings/__pycache__/ascii.cpython-313.pyc`, `Lib/encodings/__pycache__/utf_8.cpython-313.pyc`, `Lib/importlib/__pycache__/__init__.cpython-313.pyc`, `Lib/importlib/__pycache__/_abc.cpython-313.pyc`, `Lib/logging/__pycache__/__init__.cpython-313.pyc`, `Lib/pathlib/__pycache__/__init__.cpython-313.pyc`, `Lib/pathlib/__pycache__/_abc.cpython-313.pyc`, `Lib/pathlib/__pycache__/_local.cpython-313.pyc`, `Lib/re/__pycache__/__init__.cpython-313.pyc`, `Lib/re/__pycache__/_casefix.cpython-313.pyc`, `Lib/re/__pycache__/_compiler.cpython-313.pyc`, `Lib/re/__pycache__/_constants.cpython-313.pyc`, `Lib/re/__pycache__/_parser.cpython-313.pyc`, `Lib/sysconfig/__pycache__/__init__.cpython-313.pyc`, `Lib/sysconfig/__pycache__/__main__.cpython-313.pyc`, `Lib/xml/__pycache__/__init__.cpython-313.pyc`, `Lib/xml/etree/__pycache__/ElementPath.cpython-313.pyc`, `Lib/xml/etree/__pycache__/__init__.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/__init__.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/_common.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/_tzpath.cpython-313.pyc`, `Makefile`, `Makefile.pre`, `Misc/python-config.sh`, `Misc/python-embed.pc`, `Misc/python.pc`, `Modules/Setup.bootstrap`, `Modules/Setup.local`, `Modules/Setup.stdlib`, `Modules/_abc.o`, `Modules/_asyncio.cpython-313-x86_64-linux-gnu.so`, `Modules/_asynciomodule.o`, `Modules/_bisect.cpython-313-x86_64-linux-gnu.so`, `Modules/_bisectmodule.o`, `Modules/_blake2.cpython-313-x86_64-linux-gnu.so`, `Modules/_blake2/blake2b_impl.o`, `Modules/_blake2/blake2module.o`, `Modules/_blake2/blake2s_impl.o`, `Modules/_bz2.cpython-313-x86_64-linux-gnu.so`, `Modules/_bz2module.o`, `Modules/_codecs_cn.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_hk.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_iso2022.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_jp.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_kr.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_tw.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecsmodule.o`, `Modules/_collectionsmodule.o`, `Modules/_contextvars.cpython-313-x86_64-linux-gnu.so`, `Modules/_contextvarsmodule.o`, `Modules/_csv.cpython-313-x86_64-linux-gnu.so`, `Modules/_csv.o`, `Modules/_ctypes.cpython-313-x86_64-linux-gnu.so`, `Modules/_ctypes/_ctypes.o`, `Modules/_ctypes/_ctypes_test.o`, `Modules/_ctypes/callbacks.o`, `Modules/_ctypes/callproc.o`, `Modules/_ctypes/cfield.o`, `Modules/_ctypes/stgdict.o`, `Modules/_ctypes_test.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses_panel.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses_panel.o`, `Modules/_cursesmodule.o`, `Modules/_datetime.cpython-313-x86_64-linux-gnu.so`, `Modules/_datetimemodule.o`, `Modules/_decimal.cpython-313-x86_64-linux-gnu.so`, `Modules/_decimal/_decimal.o`, `Modules/_decimal/libmpdec/basearith.o`, `Modules/_decimal/libmpdec/constants.o`, `Modules/_decimal/libmpdec/context.o`, `Modules/_decimal/libmpdec/convolute.o`, `Modules/_decimal/libmpdec/crt.o`, `Modules/_decimal/libmpdec/difradix2.o`, `Modules/_decimal/libmpdec/fnt.o`, `Modules/_decimal/libmpdec/fourstep.o`, `Modules/_decimal/libmpdec/io.o`, `Modules/_decimal/libmpdec/libmpdec.a`, `Modules/_decimal/libmpdec/mpalloc.o`, `Modules/_decimal/libmpdec/mpdecimal.o`, `Modules/_decimal/libmpdec/numbertheory.o`, `Modules/_decimal/libmpdec/sixstep.o`, `Modules/_decimal/libmpdec/transpose.o`, `Modules/_elementtree.cpython-313-x86_64-linux-gnu.so`, `Modules/_elementtree.o`, `Modules/_functoolsmodule.o`, `Modules/_hacl/Hacl_Hash_MD5.o`, `Modules/_hacl/Hacl_Hash_SHA1.o`, `Modules/_hacl/Hacl_Hash_SHA2.o`, `Modules/_hacl/Hacl_Hash_SHA3.o`, `Modules/_hacl/libHacl_Hash_SHA2.a`, `Modules/_hashlib.cpython-313-x86_64-linux-gnu.so`, `Modules/_hashopenssl.o`, `Modules/_heapq.cpython-313-x86_64-linux-gnu.so`, `Modules/_heapqmodule.o`, `Modules/_interpchannels.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpchannelsmodule.o`, `Modules/_interpqueues.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpqueuesmodule.o`, `Modules/_interpreters.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpretersmodule.o`, `Modules/_io/_iomodule.o`, `Modules/_io/bufferedio.o`, `Modules/_io/bytesio.o`, `Modules/_io/fileio.o`, `Modules/_io/iobase.o`, `Modules/_io/stringio.o`, `Modules/_io/textio.o`, `Modules/_json.cpython-313-x86_64-linux-gnu.so`, `Modules/_json.o`, `Modules/_localemodule.o`, `Modules/_lsprof.cpython-313-x86_64-linux-gnu.so`, `Modules/_lsprof.o`, `Modules/_lzma.cpython-313-x86_64-linux-gnu.so`, `Modules/_lzmamodule.o`, `Modules/_md5.cpython-313-x86_64-linux-gnu.so`, `Modules/_multibytecodec.cpython-313-x86_64-linux-gnu.so`, `Modules/_multiprocessing.cpython-313-x86_64-linux-gnu.so`, `Modules/_multiprocessing/multiprocessing.o`, `Modules/_multiprocessing/posixshmem.o`, `Modules/_multiprocessing/semaphore.o`, `Modules/_opcode.cpython-313-x86_64-linux-gnu.so`, `Modules/_opcode.o`, `Modules/_operator.o`, `Modules/_pickle.cpython-313-x86_64-linux-gnu.so`, `Modules/_pickle.o`, `Modules/_posixshmem.cpython-313-x86_64-linux-gnu.so`, `Modules/_posixsubprocess.cpython-313-x86_64-linux-gnu.so`, `Modules/_posixsubprocess.o`, `Modules/_queue.cpython-313-x86_64-linux-gnu.so`, `Modules/_queuemodule.o`, `Modules/_random.cpython-313-x86_64-linux-gnu.so`, `Modules/_randommodule.o`, `Modules/_sha1.cpython-313-x86_64-linux-gnu.so`, `Modules/_sha2.cpython-313-x86_64-linux-gnu.so`, `Modules/_sha3.cpython-313-x86_64-linux-gnu.so`, `Modules/_socket.cpython-313-x86_64-linux-gnu.so`, `Modules/_sqlite/blob.o`, `Modules/_sqlite/connection.o`, `Modules/_sqlite/cursor.o`, `Modules/_sqlite/microprotocols.o`, `Modules/_sqlite/module.o`, `Modules/_sqlite/prepare_protocol.o`, `Modules/_sqlite/row.o`, `Modules/_sqlite/statement.o`, `Modules/_sqlite/util.o`, `Modules/_sqlite3.cpython-313-x86_64-linux-gnu.so`, `Modules/_sre/sre.o`, `Modules/_ssl.o`, `Modules/_ssl_failed.cpython-313-x86_64-linux-gnu.so`, `Modules/_stat.o`, `Modules/_statistics.cpython-313-x86_64-linux-gnu.so`, `Modules/_statisticsmodule.o`, `Modules/_struct.cpython-313-x86_64-linux-gnu.so`, `Modules/_struct.o`, `Modules/_suggestions.o`, `Modules/_sysconfig.o`, `Modules/_testbuffer.cpython-313-x86_64-linux-gnu.so`, `Modules/_testbuffer.o`, `Modules/_testcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testcapi/abstract.o`, `Modules/_testcapi/buffer.o`, `Modules/_testcapi/bytes.o`, `Modules/_testcapi/code.o`, `Modules/_testcapi/codec.o`, `Modules/_testcapi/complex.o`, `Modules/_testcapi/datetime.o`, `Modules/_testcapi/dict.o`, `Modules/_testcapi/docstring.o`, `Modules/_testcapi/exceptions.o`, `Modules/_testcapi/file.o`, `Modules/_testcapi/float.o`, `Modules/_testcapi/gc.o`, `Modules/_testcapi/getargs.o`, `Modules/_testcapi/hash.o`, `Modules/_testcapi/heaptype.o`, `Modules/_testcapi/immortal.o`, `Modules/_testcapi/list.o`, `Modules/_testcapi/long.o`, `Modules/_testcapi/mem.o`, `Modules/_testcapi/monitoring.o`, `Modules/_testcapi/numbers.o`, `Modules/_testcapi/object.o`, `Modules/_testcapi/pyatomic.o`, `Modules/_testcapi/run.o`, `Modules/_testcapi/set.o`, `Modules/_testcapi/structmember.o`, `Modules/_testcapi/time.o`, `Modules/_testcapi/tuple.o`, `Modules/_testcapi/unicode.o`, `Modules/_testcapi/vectorcall.o`, `Modules/_testcapi/watchers.o`, `Modules/_testcapimodule.o`, `Modules/_testclinic.cpython-313-x86_64-linux-gnu.so`, `Modules/_testclinic.o`, `Modules/_testclinic_limited.cpython-313-x86_64-linux-gnu.so`, `Modules/_testclinic_limited.o`, `Modules/_testexternalinspection.cpython-313-x86_64-linux-gnu.so`, `Modules/_testexternalinspection.o`, `Modules/_testimportmultiple.cpython-313-x86_64-linux-gnu.so`, `Modules/_testimportmultiple.o`, `Modules/_testinternalcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testinternalcapi.o`, `Modules/_testinternalcapi/pytime.o`, `Modules/_testinternalcapi/set.o`, `Modules/_testinternalcapi/test_critical_sections.o`, `Modules/_testinternalcapi/test_lock.o`, `Modules/_testlimitedcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testlimitedcapi.o`, `Modules/_testlimitedcapi/abstract.o`, `Modules/_testlimitedcapi/bytearray.o`, `Modules/_testlimitedcapi/bytes.o`, `Modules/_testlimitedcapi/complex.o`, `Modules/_testlimitedcapi/dict.o`, `Modules/_testlimitedcapi/eval.o`, `Modules/_testlimitedcapi/file.o`, `Modules/_testlimitedcapi/float.o`, `Modules/_testlimitedcapi/heaptype_relative.o`, `Modules/_testlimitedcapi/import.o`, `Modules/_testlimitedcapi/list.o`, `Modules/_testlimitedcapi/long.o`, `Modules/_testlimitedcapi/object.o`, `Modules/_testlimitedcapi/pyos.o`, `Modules/_testlimitedcapi/set.o`, `Modules/_testlimitedcapi/sys.o`, `Modules/_testlimitedcapi/tuple.o`, `Modules/_testlimitedcapi/unicode.o`, `Modules/_testlimitedcapi/vectorcall_limited.o`, `Modules/_testmultiphase.cpython-313-x86_64-linux-gnu.so`, `Modules/_testmultiphase.o`, `Modules/_testsinglephase.cpython-313-x86_64-linux-gnu.so`, `Modules/_testsinglephase.o`, `Modules/_threadmodule.o`, `Modules/_tracemalloc.o`, `Modules/_typingmodule.o`, `Modules/_uuid.cpython-313-x86_64-linux-gnu.so`, `Modules/_uuidmodule.o`, `Modules/_weakref.o`, `Modules/_xxtestfuzz.cpython-313-x86_64-linux-gnu.so`, `Modules/_xxtestfuzz/_xxtestfuzz.o`, `Modules/_xxtestfuzz/fuzzer.o`, `Modules/_zoneinfo.cpython-313-x86_64-linux-gnu.so`, `Modules/_zoneinfo.o`, `Modules/array.cpython-313-x86_64-linux-gnu.so`, `Modules/arraymodule.o`, `Modules/atexitmodule.o`, `Modules/binascii.cpython-313-x86_64-linux-gnu.so`, `Modules/binascii.o`, `Modules/cjkcodecs/_codecs_cn.o`, `Modules/cjkcodecs/_codecs_hk.o`, `Modules/cjkcodecs/_codecs_iso2022.o`, `Modules/cjkcodecs/_codecs_jp.o`, `Modules/cjkcodecs/_codecs_kr.o`, `Modules/cjkcodecs/_codecs_tw.o`, `Modules/cjkcodecs/multibytecodec.o`, `Modules/cmath.cpython-313-x86_64-linux-gnu.so`, `Modules/cmathmodule.o`, `Modules/config.c`, `Modules/config.o`, `Modules/errnomodule.o`, `Modules/expat/libexpat.a`, `Modules/expat/xmlparse.o`, `Modules/expat/xmlrole.o`, `Modules/expat/xmltok.o`, `Modules/faulthandler.o`, `Modules/fcntl.cpython-313-x86_64-linux-gnu.so`, `Modules/fcntlmodule.o`, `Modules/gcmodule.o`, `Modules/getbuildinfo.o`, `Modules/getpath.o`, `Modules/getpath_noop.o`, `Modules/grp.cpython-313-x86_64-linux-gnu.so`, `Modules/grpmodule.o`, `Modules/itertoolsmodule.o`, `Modules/ld_so_aix`, `Modules/main.o`, `Modules/math.cpython-313-x86_64-linux-gnu.so`, `Modules/mathmodule.o`, `Modules/md5module.o`, `Modules/mmap.cpython-313-x86_64-linux-gnu.so`, `Modules/mmapmodule.o`, `Modules/posixmodule.o`, `Modules/pwdmodule.o`, `Modules/pyexpat.cpython-313-x86_64-linux-gnu.so`, `Modules/pyexpat.o`, `Modules/readline.cpython-313-x86_64-linux-gnu.so`, `Modules/readline.o`, `Modules/resource.cpython-313-x86_64-linux-gnu.so`, `Modules/resource.o`, `Modules/rotatingtree.o`, `Modules/select.cpython-313-x86_64-linux-gnu.so`, `Modules/selectmodule.o`, `Modules/sha1module.o`, `Modules/sha2module.o`, `Modules/sha3module.o`, `Modules/signalmodule.o`, `Modules/socketmodule.o`, `Modules/symtablemodule.o`, `Modules/syslog.cpython-313-x86_64-linux-gnu.so`, `Modules/syslogmodule.o`, `Modules/termios.cpython-313-x86_64-linux-gnu.so`, `Modules/termios.o`, `Modules/timemodule.o`, `Modules/unicodedata.cpython-313-x86_64-linux-gnu.so`, `Modules/unicodedata.o`, `Modules/xxlimited.cpython-313-x86_64-linux-gnu.so`, `Modules/xxlimited.o`, `Modules/xxlimited_35.cpython-313-x86_64-linux-gnu.so`, `Modules/xxlimited_35.o`, `Modules/xxsubtype.cpython-313-x86_64-linux-gnu.so`, `Modules/xxsubtype.o`, `Modules/zlib.cpython-313-x86_64-linux-gnu.so`, `Modules/zlibmodule.o`, `Objects/abstract.o`, `Objects/boolobject.o`, `Objects/bytearrayobject.o`, `Objects/bytes_methods.o`, `Objects/bytesobject.o`, `Objects/call.o`, `Objects/capsule.o`, `Objects/cellobject.o`, `Objects/classobject.o`, `Objects/codeobject.o`, `Objects/complexobject.o`, `Objects/descrobject.o`, `Objects/dictobject.o`, `Objects/enumobject.o`, `Objects/exceptions.o`, `Objects/fileobject.o`, `Objects/floatobject.o`, `Objects/frameobject.o`, `Objects/funcobject.o`, `Objects/genericaliasobject.o`, `Objects/genobject.o`, `Objects/iterobject.o`, `Objects/listobject.o`, `Objects/longobject.o`, `Objects/memoryobject.o`, `Objects/methodobject.o`, `Objects/moduleobject.o`, `Objects/namespaceobject.o`, `Objects/object.o`, `Objects/obmalloc.o`, `Objects/odictobject.o`, `Objects/picklebufobject.o`, `Objects/rangeobject.o`, `Objects/setobject.o`, `Objects/sliceobject.o`, `Objects/structseq.o`, `Objects/tupleobject.o`, `Objects/typeobject.o`, `Objects/typevarobject.o`, `Objects/unicodectype.o`, `Objects/unicodeobject.o`, `Objects/unionobject.o`, `Objects/weakrefobject.o`, `Parser/action_helpers.o`, `Parser/lexer/buffer.o`, `Parser/lexer/lexer.o`, `Parser/lexer/state.o`, `Parser/myreadline.o`, `Parser/parser.o`, `Parser/peg_api.o`, `Parser/pegen.o`, `Parser/pegen_errors.o`, `Parser/string_parser.o`, `Parser/token.o`, `Parser/tokenizer/file_tokenizer.o`, `Parser/tokenizer/helpers.o`, `Parser/tokenizer/readline_tokenizer.o`, `Parser/tokenizer/string_tokenizer.o`, `Parser/tokenizer/utf8_tokenizer.o`, `Programs/_bootstrap_python.o`, `Programs/_freeze_module`, `Programs/_freeze_module.o`, `Programs/_testembed`, `Programs/_testembed.o`, `Programs/python.o`, `Python/Python-ast.o`, `Python/Python-tokenize.o`, `Python/_warnings.o`, `Python/asdl.o`, `Python/asm_trampoline.o`, `Python/assemble.o`, `Python/ast.o`, `Python/ast_opt.o`, `Python/ast_unparse.o`, `Python/bltinmodule.o`, `Python/bootstrap_hash.o`, `Python/brc.o`, `Python/ceval.o`, `Python/ceval_gil.o`, `Python/codecs.o`, `Python/compile.o`, `Python/context.o`, `Python/critical_section.o`, `Python/crossinterp.o`, `Python/dtoa.o`, `Python/dynamic_annotations.o`, `Python/dynload_shlib.o`, `Python/errors.o`, `Python/fileutils.o`, `Python/flowgraph.o`, `Python/formatter_unicode.o`, `Python/frame.o`, `Python/frozen.o`, `Python/frozen_modules/__hello__.h`, `Python/frozen_modules/__phello__.h`, `Python/frozen_modules/__phello__.ham.eggs.h`, `Python/frozen_modules/__phello__.ham.h`, `Python/frozen_modules/__phello__.spam.h`, `Python/frozen_modules/_collections_abc.h`, `Python/frozen_modules/_sitebuiltins.h`, `Python/frozen_modules/abc.h`, `Python/frozen_modules/codecs.h`, `Python/frozen_modules/frozen_only.h`, `Python/frozen_modules/genericpath.h`, `Python/frozen_modules/getpath.h`, `Python/frozen_modules/importlib._bootstrap.h`, `Python/frozen_modules/importlib._bootstrap_external.h`, `Python/frozen_modules/importlib.machinery.h`, `Python/frozen_modules/importlib.util.h`, `Python/frozen_modules/io.h`, `Python/frozen_modules/ntpath.h`, `Python/frozen_modules/os.h`, `Python/frozen_modules/posixpath.h`, `Python/frozen_modules/runpy.h`, `Python/frozen_modules/site.h`, `Python/frozen_modules/stat.h`, `Python/frozen_modules/zipimport.h`, `Python/frozenmain.o`, `Python/future.o`, `Python/gc.o`, `Python/gc_free_threading.o`, `Python/gc_gil.o`, `Python/getargs.o`, `Python/getcompiler.o`, `Python/getcopyright.o`, `Python/getopt.o`, `Python/getplatform.o`, `Python/getversion.o`, `Python/hamt.o`, `Python/hashtable.o`, `Python/import.o`, `Python/importdl.o`, `Python/initconfig.o`, `Python/instruction_sequence.o`, `Python/instrumentation.o`, `Python/interpconfig.o`, `Python/intrinsics.o`, `Python/jit.o`, `Python/legacy_tracing.o`, `Python/lock.o`, `Python/marshal.o`, `Python/modsupport.o`, `Python/mysnprintf.o`, `Python/mystrtoul.o`, `Python/object_stack.o`, `Python/optimizer.o`, `Python/optimizer_analysis.o`, `Python/optimizer_symbols.o`, `Python/parking_lot.o`, `Python/pathconfig.o`, `Python/perf_jit_trampoline.o`, `Python/perf_trampoline.o`, `Python/preconfig.o`, `Python/pyarena.o`, `Python/pyctype.o`, `Python/pyfpe.o`, `Python/pyhash.o`, `Python/pylifecycle.o`, `Python/pymath.o`, `Python/pystate.o`, `Python/pystrcmp.o`, `Python/pystrhex.o`, `Python/pystrtod.o`, `Python/pythonrun.o`, `Python/pytime.o`, `Python/qsbr.o`, `Python/specialize.o`, `Python/structmember.o`, `Python/suggestions.o`, `Python/symtable.o`, `Python/sysmodule.o`, `Python/thread.o`, `Python/traceback.o`, `Python/tracemalloc.o`, `_bootstrap_python`, `build/lib.linux-x86_64-3.13/__pycache__/_sysconfigdata__linux_x86_64-linux-gnu.cpython-313.pyc`, `build/lib.linux-x86_64-3.13/_asyncio.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_bisect.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_blake2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_bz2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_cn.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_hk.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_iso2022.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_jp.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_kr.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_tw.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_contextvars.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_csv.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_ctypes.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_ctypes_test.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_curses.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_curses_panel.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_datetime.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_decimal.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_elementtree.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_hashlib.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_heapq.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpchannels.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpqueues.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpreters.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_json.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_lsprof.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_lzma.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_md5.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_multibytecodec.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_multiprocessing.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_opcode.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_pickle.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_posixshmem.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_posixsubprocess.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_queue.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_random.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha1.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha3.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_socket.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sqlite3.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_statistics.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_struct.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sysconfigdata__linux_x86_64-linux-gnu.py`, `build/lib.linux-x86_64-3.13/_testbuffer.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testclinic.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testclinic_limited.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testexternalinspection.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testimportmultiple.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testinternalcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testlimitedcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testmultiphase.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testsinglephase.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_uuid.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_xxtestfuzz.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_zoneinfo.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/array.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/binascii.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/cmath.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/fcntl.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/grp.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/math.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/mmap.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/pyexpat.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/readline.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/resource.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/select.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/syslog.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/termios.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/unicodedata.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxlimited.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxlimited_35.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxsubtype.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/zlib.cpython-313-x86_64-linux-gnu.so`, `build/scripts-3.13/idle3.13`, `build/scripts-3.13/pydoc3.13`, `config.log`, `config.status`, `libpython3.13.a`, `platform`, `pybuilddir.txt`, `pyconfig.h`, `python`, `python-config`, `python-config.py`, `python-gdb.py`.
2. Listed in `## Git Add Paths` but not actually changed: `None`.

## Refinement Pass 1

Subject: Keep CPython tree clean for supervisord poll diagnosis

## Commit Message
No source change. The collected trace points to `supervisord` waking once per second to reap children and poll a file descriptor, not to a demonstrated CPython runtime bug. This refinement addresses the review finding by removing generated validation artifacts so the no-patch diagnosis matches the clean workspace.

## Evidence Confidence
inferred

## Issue Connection
Fixer collected perf, strace, and `/proc` evidence for `/usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf`. The exact collected signal is repeated `wait4(-1, ..., WNOHANG) = -1 ECHILD` followed by `poll(..., 1000) = 0 (Timeout) <1.001...>`, while `/proc` reported the sampled thread sleeping in `poll_schedule_timeout`.

The cautious inference is that this is an application event-loop pattern: `supervisord` checks for child exits and then sleeps in `poll(2)` for one second. I rechecked CPython’s matching paths and local conventions: `selectors.PollSelector`, `select.poll.poll()` using `_PyTime_FromMillisecondsObject()`, `_PyDeadline_*`, and `Py_BEGIN_ALLOW_THREADS`, plus `os.wait4()`/`os.waitpid()` using `posix_error()` and `wait_helper()`. No relevant local helper was missing, and no CPython source defect was established.

The specific refinement change was cleanup only: I removed generated build artifacts and pycache files left by validation with `make distclean`. The expected effect is that the final proposal remains a clean no-patch diagnosis with no generated files drifting against `## Git Add Paths`.

## Git Add Paths
None

## Validation
Previously ran the project-level entrypoint from the workspace root:

```sh
./configure && make
```

It completed with exit code 0. The build reported optional module issues: `_dbm`, `_gdbm`, and `_tkinter` were missing, and `_ssl` was built then removed because it could not import with `undefined symbol: TLSv1_method`.

Previously ran the bounded independent check:

```sh
/usr/bin/time -p ./python - <<'PY'
import os, select
r, w = os.pipe()
try:
    p = select.poll()
    p.register(r, select.POLLIN | select.POLLPRI | select.POLLHUP)
    for _ in range(3):
        try:
            os.wait4(-1, os.WNOHANG)
        except ChildProcessError:
            pass
        p.poll(1000)
finally:
    os.close(r)
    os.close(w)
PY
```

Result: `real 3.01`, `user 0.00`, `sys 0.00`, consistent with sleeping one second per poll rather than reproducing a CPU spin. A syscall-level `strace` check was attempted but blocked by ptrace restrictions: `PTRACE_TRACEME: Operation not permitted`.

For this refinement, I ran `make distclean` to address the review’s generated-artifact finding, then verified `git status --short --untracked-files=all` and `git diff --stat` are clean.

## Review Pass 2

RESULT: ok

No source or generated-file changes remain in the workspace: `git status --short --untracked-files=all`, `git diff --stat`, and `git diff --name-status` are clean.

The refined response is consistent with the evidence level. It uses `inferred`, lists `None` under `## Git Add Paths`, avoids claiming a reproduced CPython bug, and explains why the strace pattern is more consistent with the `supervisord` application loop than a runtime defect. The validation text includes the project-level `./configure && make` attempt, the optional-module build notes, the bounded timing smoke check, and the ptrace blocker for `strace`.

diagnosis-only report

report

python3.13 likely remains stuck in a busy-poll loop. A diagnosis report and patch proposal were created locally.

state: readycreated: 2026-05-18 14:19 UTCvalidation: ready
Published session

Prompt

## Plan Pass

You are planning a fixer patch before any edits happen.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. The original pre-edit snapshot is available at `./source` if you need to inspect it. For interpreter processes, plan from the script/application entrypoint evidence first and include the runtime only as a second investigation target unless the evidence proves a runtime bug.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround. Inspect the relevant code, nearby callers, project contribution docs, and local helper/compat APIs, but do not edit files in this pass.

Return a short markdown plan with these exact sections:

## Problem
## Evidence Confidence
## Proposed Subject
## Patch Plan
## Risks
## Validation

Classify `## Evidence Confidence` as exactly one of `reproduced`, `observed`, or `inferred`. Use `inferred` only for a no-patch diagnosis/report plan unless you can name the extra evidence you will collect before editing; inferred source patches are blocked by Fixer because they are not pull-request-ready. For `observed` source-patch plans, plan to say in the final `## Issue Connection` that the failure was observed by Fixer and not independently reproduced. If the plan touches authentication, authorization, credentials, cryptography, sandboxing, permissions, or timing/throttling behavior, treat it as security-sensitive: do not plan a source patch unless validation can reproduce the behavior and analyze the security impact; otherwise plan a no-patch diagnosis/report. The plan must explain how the proposed code change addresses the observed issue evidence, call out any prior Fixer patch that should be improved or replaced, reject awkward control flow such as avoidable `goto` if there is a cleaner bounded alternative, name any local helper APIs or maintainer conventions the patch should follow, and keep the intended maintainer-facing explanation clear enough that someone unfamiliar with the local complaint wording can still follow the fix. In `## Validation`, name the reproducible configure/build/test entrypoint you will try from the workspace root before any focused leaf compile or smoke check, and include one bounded independent reproduction attempt for the collected failure signal when it is safe and cheap. Do not plan to claim `reproduced` unless that reproduction command or test can actually show the failure.

## Patch Pass

You are working on a bounded fixer proposal.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. Produce the smallest reasonable patch for the target repository, keep the change upstreamable, prefer the clearest control flow available, and do not keep avoidable `goto` when a simpler structure would read better. Before introducing new file, process, allocation, locking, networking, or platform APIs, inspect nearby code and project contribution docs for existing helpers or compatibility wrappers and use those local patterns unless you can explain why they do not fit. Validate from a reproducible workspace-root entrypoint before falling back to focused leaf commands; if a build or test cannot run, report the exact command, the exact blocker, and any narrower check you ran instead. During validation, also try one bounded independent reproduction of the collected failure signal when it is safe and cheap, such as a failing test, smoke command, perf/strace comparison, or before/after runtime check. Only use `reproduced` if that command or test actually reproduced the failure; otherwise keep `observed` and report the reproduction blocker. The final explanation must connect the observed issue evidence to the actual code change, not just paraphrase the diff. Write like a maintainer is going to read the patch mail cold: explain the bug in plain language, define subsystem-specific jargon the first time you need it, and make the causal story obvious. Explicitly classify evidence confidence as `reproduced`, `observed`, or `inferred`: `reproduced` means you reproduced the failure locally; `observed` means Fixer has direct crash/log/trace evidence but you did not independently reproduce it; `inferred` means the source patch is not pull-request-ready, so do not leave a source diff unless you first gather stronger observed/reproduced evidence; otherwise return a no-patch diagnosis/report. For any source-changing `observed` patch, say explicitly in `## Issue Connection` that the failure was observed by Fixer and not independently reproduced. Security-sensitive areas such as authentication, authorization, credentials, cryptography, sandboxing, permissions, and timing/throttling behavior need reproduced evidence plus explicit security-impact analysis before leaving a source diff; otherwise return a no-patch diagnosis/report for human review. If you introduce non-obvious state translation, index remapping, or backend split logic, add a short source comment that explains the invariant being preserved.

Start by explaining the likely root cause from the collected perf, strace, and /proc evidence. If you cannot land a safe patch, leave a diagnosis that is strong enough for an upstream bug report.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround. 

Keep the change narrowly scoped and summarize validation clearly.

In every authoring pass, your final response must start with `Subject: <single-line git commit subject>` and then include these markdown sections exactly:

## Commit Message
A short upstream-friendly explanation of what changed and why. Write it in plain language that a maintainer can follow without local complaint context. If you use subsystem jargon, define it immediately.

## Evidence Confidence
Exactly one word: `reproduced`, `observed`, or `inferred`. Use `reproduced` only when you reproduced the failure locally with a command or test, and include that command/test in `## Validation`. Use `observed` when Fixer has direct crash/log/trace evidence but you did not independently reproduce it. If `## Git Add Paths` lists source files for an `observed` patch, `## Issue Connection` must explicitly say the failure was observed by Fixer and not independently reproduced. Security-sensitive source changes touching authentication, authorization, credentials, cryptography, sandboxing, permissions, or timing/throttling behavior require reproduced evidence and explicit security-impact analysis; otherwise list `None` under `## Git Add Paths` and write a no-patch diagnosis/report. Use `inferred` for profiler/strace/indirect evidence; inferred responses may be no-patch diagnoses or reports, but inferred source patches are not pull-request-ready until stronger evidence is gathered.

## Issue Connection
Write this as maintainer-facing patch mail, not as local Fixer notes. Cover four things explicitly in readable sentences: the user-visible symptom or the exact collected signal, the code-level cause or the cautious inference from evidence, the specific change you made, and the expected effect. Do not invent a reproducer, command line, crash, or user-visible failure that is not present in the evidence bundle. If the evidence is direct-but-not-reproduced, say it was observed by Fixer and not independently reproduced. If the evidence is indirect and you did not gather stronger evidence, do not leave a source diff; write a no-patch diagnosis/report instead. Include an explicit effect sentence such as `The expected effect is ...`, `This should reduce ...`, or `This prevents ...` for source patches. If the logic is non-obvious in code, mention that you added a short explanatory comment.

## Git Add Paths
List the repo-relative paths that belong in the final patch, one per line. Use `None` only when you intentionally made no source changes. Include intentionally new files, and do not list generated build artifacts.

## Validation
List the checks you ran, or say clearly that you could not run them. Include the independent reproduction command/test and result when `## Evidence Confidence` is `reproduced`; if reproduction was attempted but blocked, name the exact blocker and keep confidence at `observed` or `inferred`.

Before editing, read the plan at `./plan-output.txt` and follow it unless the code proves part of it wrong. If you change course, say so explicitly in the final write-up instead of silently drifting from the plan.

## Review Pass 1 (local metadata check)

Local metadata consistency check

## Refinement Pass 1

You are refining a fixer patch after an explicit code review.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. Read the latest author response at `./patch-output.txt`. Read the review report at `./review-1-output.txt`. This is refinement round 1. The original pre-edit snapshot is available at `./source` if you need to compare the current patch against it. Re-read the planning pass at `./plan-output.txt` before editing. The workspace currently changes these repo-relative paths: Lib/__pycache__/__future__.cpython-313.pyc, Lib/__pycache__/_collections_abc.cpython-313.pyc, Lib/__pycache__/_colorize.cpython-313.pyc, Lib/__pycache__/_compat_pickle.cpython-313.pyc, Lib/__pycache__/_compression.cpython-313.pyc, Lib/__pycache__/_opcode_metadata.cpython-313.pyc, Lib/__pycache__/_sitebuiltins.cpython-313.pyc, Lib/__pycache__/_weakrefset.cpython-313.pyc, Lib/__pycache__/abc.cpython-313.pyc, Lib/__pycache__/argparse.cpython-313.pyc, Lib/__pycache__/ast.cpython-313.pyc, Lib/__pycache__/bz2.cpython-313.pyc, Lib/__pycache__/codecs.cpython-313.pyc, Lib/__pycache__/contextlib.cpython-313.pyc, Lib/__pycache__/contextvars.cpython-313.pyc, Lib/__pycache__/copy.cpython-313.pyc, Lib/__pycache__/copyreg.cpython-313.pyc, Lib/__pycache__/datetime.cpython-313.pyc, Lib/__pycache__/dis.cpython-313.pyc, Lib/__pycache__/enum.cpython-313.pyc, Lib/__pycache__/fnmatch.cpython-313.pyc, Lib/__pycache__/functools.cpython-313.pyc, Lib/__pycache__/genericpath.cpython-313.pyc, Lib/__pycache__/gettext.cpython-313.pyc, Lib/__pycache__/glob.cpython-313.pyc, Lib/__pycache__/heapq.cpython-313.pyc, Lib/__pycache__/inspect.cpython-313.pyc, Lib/__pycache__/io.cpython-313.pyc, Lib/__pycache__/keyword.cpython-313.pyc, Lib/__pycache__/linecache.cpython-313.pyc, Lib/__pycache__/locale.cpython-313.pyc, Lib/__pycache__/lzma.cpython-313.pyc, Lib/__pycache__/numbers.cpython-313.pyc, Lib/__pycache__/opcode.cpython-313.pyc, Lib/__pycache__/operator.cpython-313.pyc, Lib/__pycache__/os.cpython-313.pyc, Lib/__pycache__/posixpath.cpython-313.pyc, Lib/__pycache__/reprlib.cpython-313.pyc, Lib/__pycache__/selectors.cpython-313.pyc, Lib/__pycache__/shutil.cpython-313.pyc, Lib/__pycache__/signal.cpython-313.pyc, Lib/__pycache__/site.cpython-313.pyc, Lib/__pycache__/socket.cpython-313.pyc, Lib/__pycache__/ssl.cpython-313.pyc, Lib/__pycache__/stat.cpython-313.pyc, Lib/__pycache__/string.cpython-313.pyc, Lib/__pycache__/struct.cpython-313.pyc, Lib/__pycache__/subprocess.cpython-313.pyc, Lib/__pycache__/textwrap.cpython-313.pyc, Lib/__pycache__/threading.cpython-313.pyc, Lib/__pycache__/token.cpython-313.pyc, Lib/__pycache__/tokenize.cpython-313.pyc, Lib/__pycache__/traceback.cpython-313.pyc, Lib/__pycache__/types.cpython-313.pyc, Lib/__pycache__/typing.cpython-313.pyc, Lib/__pycache__/warnings.cpython-313.pyc, Lib/__pycache__/weakref.cpython-313.pyc, Lib/asyncio/__pycache__/__init__.cpython-313.pyc, Lib/asyncio/__pycache__/base_events.cpython-313.pyc, Lib/asyncio/__pycache__/base_futures.cpython-313.pyc, Lib/asyncio/__pycache__/base_subprocess.cpython-313.pyc, Lib/asyncio/__pycache__/base_tasks.cpython-313.pyc, Lib/asyncio/__pycache__/constants.cpython-313.pyc, Lib/asyncio/__pycache__/coroutines.cpython-313.pyc, Lib/asyncio/__pycache__/events.cpython-313.pyc, Lib/asyncio/__pycache__/exceptions.cpython-313.pyc, Lib/asyncio/__pycache__/format_helpers.cpython-313.pyc, Lib/asyncio/__pycache__/futures.cpython-313.pyc, Lib/asyncio/__pycache__/locks.cpython-313.pyc, Lib/asyncio/__pycache__/log.cpython-313.pyc, Lib/asyncio/__pycache__/mixins.cpython-313.pyc, Lib/asyncio/__pycache__/protocols.cpython-313.pyc, Lib/asyncio/__pycache__/queues.cpython-313.pyc, Lib/asyncio/__pycache__/runners.cpython-313.pyc, Lib/asyncio/__pycache__/selector_events.cpython-313.pyc, Lib/asyncio/__pycache__/sslproto.cpython-313.pyc, Lib/asyncio/__pycache__/staggered.cpython-313.pyc, Lib/asyncio/__pycache__/streams.cpython-313.pyc, Lib/asyncio/__pycache__/subprocess.cpython-313.pyc, Lib/asyncio/__pycache__/taskgroups.cpython-313.pyc, Lib/asyncio/__pycache__/tasks.cpython-313.pyc, Lib/asyncio/__pycache__/threads.cpython-313.pyc, Lib/asyncio/__pycache__/timeouts.cpython-313.pyc, Lib/asyncio/__pycache__/transports.cpython-313.pyc, Lib/asyncio/__pycache__/trsock.cpython-313.pyc, Lib/asyncio/__pycache__/unix_events.cpython-313.pyc, Lib/collections/__pycache__/__init__.cpython-313.pyc, Lib/concurrent/__pycache__/__init__.cpython-313.pyc, Lib/concurrent/futures/__pycache__/__init__.cpython-313.pyc, Lib/concurrent/futures/__pycache__/_base.cpython-313.pyc, Lib/encodings/__pycache__/__init__.cpython-313.pyc, Lib/encodings/__pycache__/aliases.cpython-313.pyc, Lib/encodings/__pycache__/ascii.cpython-313.pyc, Lib/encodings/__pycache__/utf_8.cpython-313.pyc, Lib/importlib/__pycache__/__init__.cpython-313.pyc, Lib/importlib/__pycache__/_abc.cpython-313.pyc, Lib/logging/__pycache__/__init__.cpython-313.pyc, Lib/pathlib/__pycache__/__init__.cpython-313.pyc, Lib/pathlib/__pycache__/_abc.cpython-313.pyc, Lib/pathlib/__pycache__/_local.cpython-313.pyc, Lib/re/__pycache__/__init__.cpython-313.pyc, Lib/re/__pycache__/_casefix.cpython-313.pyc, Lib/re/__pycache__/_compiler.cpython-313.pyc, Lib/re/__pycache__/_constants.cpyth

[truncated 29270 bytes]

Response

## Plan Pass

## Problem
Fixer observed a `supervisord` process running under `/usr/bin/python3.13` with high aggregate CPU attribution, but the concrete syscall evidence shows a one-second `poll()` timeout followed by `wait4(-1, ..., WNOHANG) = ECHILD`. That pattern is owned by the Python application/event loop more than by CPython’s interpreter core, and the sampled process state was sleeping in `poll_schedule_timeout`.

## Evidence Confidence
inferred

## Proposed Subject
No CPython source patch in this pass. Produce a diagnosis/report that the evidence does not establish a Python 3.13 runtime bug, and collect application-entrypoint evidence from `supervisord` before considering any upstream CPython change.

## Patch Plan
Do not edit CPython for this evidence bundle.

The local CPython convention is documented in `README.rst`: use the upstream Developer Guide, `./configure`, `make`, and `make test`. The relevant local helpers/conventions found are `selectors.PollSelector`, `select.poll.poll()`’s timeout conversion via `_PyTime_FromMillisecondsObject()` / `_PyDeadline_*`, `Py_BEGIN_ALLOW_THREADS`, and POSIX wrappers such as `posix_error()` / `wait_helper()` in `posixmodule.c`. None points to an obvious interpreter busy loop for the observed one-second blocking `poll()`.

No prior Fixer patch was found. The workspace contains Debian quilt patches, but none appears tied to this Fixer finding.

If later evidence proves a CPython bug, prefer the existing bounded retry/EINTR patterns in `selectmodule.c` or `posixmodule.c`; avoid awkward control flow such as an avoidable `goto`.

## Risks
A source patch would be speculative and likely upstream-unacceptable because the command line is `/usr/bin/python3 /usr/bin/supervisord ...`, while the bundle does not include `supervisord` Python stack frames or a CPython-level reproducer.

The issue is timing/poll-loop-adjacent, so it should not be patched without a reproducible behavior and security-impact analysis.

## Validation
Before any future source patch, try the project entrypoint from the workspace root:

```sh
./configure && make
```

If that fails, record the exact failure and then use the narrowest relevant build/test.

Bounded independent check: after building, run a small `./python` script under `strace` that performs `os.waitpid(-1, os.WNOHANG)` and `select.poll().poll(1000)` for a few iterations, confirming whether CPython blocks for about one second rather than spinning. This would not reproduce the Fixer failure; it would test the suspected runtime primitives.

## Patch Pass

Subject: Diagnose supervisord poll trace without CPython change

## Commit Message
No source change. The collected trace most likely shows `supervisord` waking once per second to reap children and poll a file descriptor, not a CPython busy loop. CPython’s `poll` and `wait4` paths already pass through to the platform calls with existing timeout and EINTR handling.

## Evidence Confidence
inferred

## Issue Connection
Fixer collected perf, strace, and `/proc` evidence for `/usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf`. The exact signal is repeated `wait4(-1, ..., WNOHANG) = -1 ECHILD` followed by `poll(..., 1000) = 0 (Timeout) <1.001...>`, with `/proc` showing the sampled thread sleeping in `poll_schedule_timeout`.

The cautious code-level inference is that this is an application event-loop pattern: `supervisord` checks for children and then sleeps in `poll(2)` for one second. I inspected CPython’s matching paths: `selectors.PollSelector`, `select.poll.poll()` using `_PyTime_FromMillisecondsObject()`, `_PyDeadline_*`, and `Py_BEGIN_ALLOW_THREADS`, plus `os.wait4()`/`os.waitpid()` using `posix_error()` and `wait_helper()`. No relevant local helper was missing, and no CPython defect was established.

I followed the saved plan and made no source change. The expected effect is avoiding an upstream-unacceptable speculative runtime patch for evidence that currently points outside CPython.

## Git Add Paths
None

## Validation
Ran project-level entrypoint from the workspace root:

```sh
./configure && make
```

It completed with exit code 0. Configure/build noted optional module issues: `_dbm`, `_gdbm`, and `_tkinter` were missing, and `_ssl` was built then removed because it could not import with `undefined symbol: TLSv1_method`.

Bounded independent check:

```sh
/usr/bin/time -p ./python - <<'PY'
import os, select
r, w = os.pipe()
try:
    p = select.poll()
    p.register(r, select.POLLIN | select.POLLPRI | select.POLLHUP)
    for _ in range(3):
        try:
            os.wait4(-1, os.WNOHANG)
        except ChildProcessError:
            pass
        p.poll(1000)
finally:
    os.close(r)
    os.close(w)
PY
```

Result: `real 3.01`, `user 0.00`, `sys 0.00`, consistent with sleeping one second per poll rather than reproducing a CPU spin. A syscall-level `strace` check was attempted but blocked by ptrace restrictions: `PTRACE_TRACEME: Operation not permitted`.

## Review Pass 1 (local metadata check)

RESULT: fix-needed

## Findings
1. Patch metadata drift: the workspace currently changes `Lib/__pycache__/__future__.cpython-313.pyc`, `Lib/__pycache__/_collections_abc.cpython-313.pyc`, `Lib/__pycache__/_colorize.cpython-313.pyc`, `Lib/__pycache__/_compat_pickle.cpython-313.pyc`, `Lib/__pycache__/_compression.cpython-313.pyc`, `Lib/__pycache__/_opcode_metadata.cpython-313.pyc`, `Lib/__pycache__/_sitebuiltins.cpython-313.pyc`, `Lib/__pycache__/_weakrefset.cpython-313.pyc`, `Lib/__pycache__/abc.cpython-313.pyc`, `Lib/__pycache__/argparse.cpython-313.pyc`, `Lib/__pycache__/ast.cpython-313.pyc`, `Lib/__pycache__/bz2.cpython-313.pyc`, `Lib/__pycache__/codecs.cpython-313.pyc`, `Lib/__pycache__/contextlib.cpython-313.pyc`, `Lib/__pycache__/contextvars.cpython-313.pyc`, `Lib/__pycache__/copy.cpython-313.pyc`, `Lib/__pycache__/copyreg.cpython-313.pyc`, `Lib/__pycache__/datetime.cpython-313.pyc`, `Lib/__pycache__/dis.cpython-313.pyc`, `Lib/__pycache__/enum.cpython-313.pyc`, `Lib/__pycache__/fnmatch.cpython-313.pyc`, `Lib/__pycache__/functools.cpython-313.pyc`, `Lib/__pycache__/genericpath.cpython-313.pyc`, `Lib/__pycache__/gettext.cpython-313.pyc`, `Lib/__pycache__/glob.cpython-313.pyc`, `Lib/__pycache__/heapq.cpython-313.pyc`, `Lib/__pycache__/inspect.cpython-313.pyc`, `Lib/__pycache__/io.cpython-313.pyc`, `Lib/__pycache__/keyword.cpython-313.pyc`, `Lib/__pycache__/linecache.cpython-313.pyc`, `Lib/__pycache__/locale.cpython-313.pyc`, `Lib/__pycache__/lzma.cpython-313.pyc`, `Lib/__pycache__/numbers.cpython-313.pyc`, `Lib/__pycache__/opcode.cpython-313.pyc`, `Lib/__pycache__/operator.cpython-313.pyc`, `Lib/__pycache__/os.cpython-313.pyc`, `Lib/__pycache__/posixpath.cpython-313.pyc`, `Lib/__pycache__/reprlib.cpython-313.pyc`, `Lib/__pycache__/selectors.cpython-313.pyc`, `Lib/__pycache__/shutil.cpython-313.pyc`, `Lib/__pycache__/signal.cpython-313.pyc`, `Lib/__pycache__/site.cpython-313.pyc`, `Lib/__pycache__/socket.cpython-313.pyc`, `Lib/__pycache__/ssl.cpython-313.pyc`, `Lib/__pycache__/stat.cpython-313.pyc`, `Lib/__pycache__/string.cpython-313.pyc`, `Lib/__pycache__/struct.cpython-313.pyc`, `Lib/__pycache__/subprocess.cpython-313.pyc`, `Lib/__pycache__/textwrap.cpython-313.pyc`, `Lib/__pycache__/threading.cpython-313.pyc`, `Lib/__pycache__/token.cpython-313.pyc`, `Lib/__pycache__/tokenize.cpython-313.pyc`, `Lib/__pycache__/traceback.cpython-313.pyc`, `Lib/__pycache__/types.cpython-313.pyc`, `Lib/__pycache__/typing.cpython-313.pyc`, `Lib/__pycache__/warnings.cpython-313.pyc`, `Lib/__pycache__/weakref.cpython-313.pyc`, `Lib/asyncio/__pycache__/__init__.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_events.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_futures.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_subprocess.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_tasks.cpython-313.pyc`, `Lib/asyncio/__pycache__/constants.cpython-313.pyc`, `Lib/asyncio/__pycache__/coroutines.cpython-313.pyc`, `Lib/asyncio/__pycache__/events.cpython-313.pyc`, `Lib/asyncio/__pycache__/exceptions.cpython-313.pyc`, `Lib/asyncio/__pycache__/format_helpers.cpython-313.pyc`, `Lib/asyncio/__pycache__/futures.cpython-313.pyc`, `Lib/asyncio/__pycache__/locks.cpython-313.pyc`, `Lib/asyncio/__pycache__/log.cpython-313.pyc`, `Lib/asyncio/__pycache__/mixins.cpython-313.pyc`, `Lib/asyncio/__pycache__/protocols.cpython-313.pyc`, `Lib/asyncio/__pycache__/queues.cpython-313.pyc`, `Lib/asyncio/__pycache__/runners.cpython-313.pyc`, `Lib/asyncio/__pycache__/selector_events.cpython-313.pyc`, `Lib/asyncio/__pycache__/sslproto.cpython-313.pyc`, `Lib/asyncio/__pycache__/staggered.cpython-313.pyc`, `Lib/asyncio/__pycache__/streams.cpython-313.pyc`, `Lib/asyncio/__pycache__/subprocess.cpython-313.pyc`, `Lib/asyncio/__pycache__/taskgroups.cpython-313.pyc`, `Lib/asyncio/__pycache__/tasks.cpython-313.pyc`, `Lib/asyncio/__pycache__/threads.cpython-313.pyc`, `Lib/asyncio/__pycache__/timeouts.cpython-313.pyc`, `Lib/asyncio/__pycache__/transports.cpython-313.pyc`, `Lib/asyncio/__pycache__/trsock.cpython-313.pyc`, `Lib/asyncio/__pycache__/unix_events.cpython-313.pyc`, `Lib/collections/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/futures/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/futures/__pycache__/_base.cpython-313.pyc`, `Lib/encodings/__pycache__/__init__.cpython-313.pyc`, `Lib/encodings/__pycache__/aliases.cpython-313.pyc`, `Lib/encodings/__pycache__/ascii.cpython-313.pyc`, `Lib/encodings/__pycache__/utf_8.cpython-313.pyc`, `Lib/importlib/__pycache__/__init__.cpython-313.pyc`, `Lib/importlib/__pycache__/_abc.cpython-313.pyc`, `Lib/logging/__pycache__/__init__.cpython-313.pyc`, `Lib/pathlib/__pycache__/__init__.cpython-313.pyc`, `Lib/pathlib/__pycache__/_abc.cpython-313.pyc`, `Lib/pathlib/__pycache__/_local.cpython-313.pyc`, `Lib/re/__pycache__/__init__.cpython-313.pyc`, `Lib/re/__pycache__/_casefix.cpython-313.pyc`, `Lib/re/__pycache__/_compiler.cpython-313.pyc`, `Lib/re/__pycache__/_constants.cpython-313.pyc`, `Lib/re/__pycache__/_parser.cpython-313.pyc`, `Lib/sysconfig/__pycache__/__init__.cpython-313.pyc`, `Lib/sysconfig/__pycache__/__main__.cpython-313.pyc`, `Lib/xml/__pycache__/__init__.cpython-313.pyc`, `Lib/xml/etree/__pycache__/ElementPath.cpython-313.pyc`, `Lib/xml/etree/__pycache__/__init__.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/__init__.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/_common.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/_tzpath.cpython-313.pyc`, `Makefile`, `Makefile.pre`, `Misc/python-config.sh`, `Misc/python-embed.pc`, `Misc/python.pc`, `Modules/Setup.bootstrap`, `Modules/Setup.local`, `Modules/Setup.stdlib`, `Modules/_abc.o`, `Modules/_asyncio.cpython-313-x86_64-linux-gnu.so`, `Modules/_asynciomodule.o`, `Modules/_bisect.cpython-313-x86_64-linux-gnu.so`, `Modules/_bisectmodule.o`, `Modules/_blake2.cpython-313-x86_64-linux-gnu.so`, `Modules/_blake2/blake2b_impl.o`, `Modules/_blake2/blake2module.o`, `Modules/_blake2/blake2s_impl.o`, `Modules/_bz2.cpython-313-x86_64-linux-gnu.so`, `Modules/_bz2module.o`, `Modules/_codecs_cn.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_hk.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_iso2022.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_jp.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_kr.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_tw.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecsmodule.o`, `Modules/_collectionsmodule.o`, `Modules/_contextvars.cpython-313-x86_64-linux-gnu.so`, `Modules/_contextvarsmodule.o`, `Modules/_csv.cpython-313-x86_64-linux-gnu.so`, `Modules/_csv.o`, `Modules/_ctypes.cpython-313-x86_64-linux-gnu.so`, `Modules/_ctypes/_ctypes.o`, `Modules/_ctypes/_ctypes_test.o`, `Modules/_ctypes/callbacks.o`, `Modules/_ctypes/callproc.o`, `Modules/_ctypes/cfield.o`, `Modules/_ctypes/stgdict.o`, `Modules/_ctypes_test.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses_panel.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses_panel.o`, `Modules/_cursesmodule.o`, `Modules/_datetime.cpython-313-x86_64-linux-gnu.so`, `Modules/_datetimemodule.o`, `Modules/_decimal.cpython-313-x86_64-linux-gnu.so`, `Modules/_decimal/_decimal.o`, `Modules/_decimal/libmpdec/basearith.o`, `Modules/_decimal/libmpdec/constants.o`, `Modules/_decimal/libmpdec/context.o`, `Modules/_decimal/libmpdec/convolute.o`, `Modules/_decimal/libmpdec/crt.o`, `Modules/_decimal/libmpdec/difradix2.o`, `Modules/_decimal/libmpdec/fnt.o`, `Modules/_decimal/libmpdec/fourstep.o`, `Modules/_decimal/libmpdec/io.o`, `Modules/_decimal/libmpdec/libmpdec.a`, `Modules/_decimal/libmpdec/mpalloc.o`, `Modules/_decimal/libmpdec/mpdecimal.o`, `Modules/_decimal/libmpdec/numbertheory.o`, `Modules/_decimal/libmpdec/sixstep.o`, `Modules/_decimal/libmpdec/transpose.o`, `Modules/_elementtree.cpython-313-x86_64-linux-gnu.so`, `Modules/_elementtree.o`, `Modules/_functoolsmodule.o`, `Modules/_hacl/Hacl_Hash_MD5.o`, `Modules/_hacl/Hacl_Hash_SHA1.o`, `Modules/_hacl/Hacl_Hash_SHA2.o`, `Modules/_hacl/Hacl_Hash_SHA3.o`, `Modules/_hacl/libHacl_Hash_SHA2.a`, `Modules/_hashlib.cpython-313-x86_64-linux-gnu.so`, `Modules/_hashopenssl.o`, `Modules/_heapq.cpython-313-x86_64-linux-gnu.so`, `Modules/_heapqmodule.o`, `Modules/_interpchannels.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpchannelsmodule.o`, `Modules/_interpqueues.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpqueuesmodule.o`, `Modules/_interpreters.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpretersmodule.o`, `Modules/_io/_iomodule.o`, `Modules/_io/bufferedio.o`, `Modules/_io/bytesio.o`, `Modules/_io/fileio.o`, `Modules/_io/iobase.o`, `Modules/_io/stringio.o`, `Modules/_io/textio.o`, `Modules/_json.cpython-313-x86_64-linux-gnu.so`, `Modules/_json.o`, `Modules/_localemodule.o`, `Modules/_lsprof.cpython-313-x86_64-linux-gnu.so`, `Modules/_lsprof.o`, `Modules/_lzma.cpython-313-x86_64-linux-gnu.so`, `Modules/_lzmamodule.o`, `Modules/_md5.cpython-313-x86_64-linux-gnu.so`, `Modules/_multibytecodec.cpython-313-x86_64-linux-gnu.so`, `Modules/_multiprocessing.cpython-313-x86_64-linux-gnu.so`, `Modules/_multiprocessing/multiprocessing.o`, `Modules/_multiprocessing/posixshmem.o`, `Modules/_multiprocessing/semaphore.o`, `Modules/_opcode.cpython-313-x86_64-linux-gnu.so`, `Modules/_opcode.o`, `Modules/_operator.o`, `Modules/_pickle.cpython-313-x86_64-linux-gnu.so`, `Modules/_pickle.o`, `Modules/_posixshmem.cpython-313-x86_64-linux-gnu.so`, `Modules/_posixsubprocess.cpython-313-x86_64-linux-gnu.so`, `Modules/_posixsubprocess.o`, `Modules/_queue.cpython-313-x86_64-linux-gnu.so`, `Modules/_queuemodule.o`, `Modules/_random.cpython-313-x86_64-linux-gnu.so`, `Modules/_randommodule.o`, `Modules/_sha1.cpython-313-x86_64-linux-gnu.so`, `Modules/_sha2.cpython-313-x86_64-linux-gnu.so`, `Modules/_sha3.cpython-313-x86_64-linux-gnu.so`, `Modules/_socket.cpython-313-x86_64-linux-gnu.so`, `Modules/_sqlite/blob.o`, `Modules/_sqlite/connection.o`, `Modules/_sqlite/cursor.o`, `Modules/_sqlite/microprotocols.o`, `Modules/_sqlite/module.o`, `Modules/_sqlite/prepare_protocol.o`, `Modules/_sqlite/row.o`, `Modules/_sqlite/statement.o`, `Modules/_sqlite/util.o`, `Modules/_sqlite3.cpython-313-x86_64-linux-gnu.so`, `Modules/_sre/sre.o`, `Modules/_ssl.o`, `Modules/_ssl_failed.cpython-313-x86_64-linux-gnu.so`, `Modules/_stat.o`, `Modules/_statistics.cpython-313-x86_64-linux-gnu.so`, `Modules/_statisticsmodule.o`, `Modules/_struct.cpython-313-x86_64-linux-gnu.so`, `Modules/_struct.o`, `Modules/_suggestions.o`, `Modules/_sysconfig.o`, `Modules/_testbuffer.cpython-313-x86_64-linux-gnu.so`, `Modules/_testbuffer.o`, `Modules/_testcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testcapi/abstract.o`, `Modules/_testcapi/buffer.o`, `Modules/_testcapi/bytes.o`, `Modules/_testcapi/code.o`, `Modules/_testcapi/codec.o`, `Modules/_testcapi/complex.o`, `Modules/_testcapi/datetime.o`, `Modules/_testcapi/dict.o`, `Modules/_testcapi/docstring.o`, `Modules/_testcapi/exceptions.o`, `Modules/_testcapi/file.o`, `Modules/_testcapi/float.o`, `Modules/_testcapi/gc.o`, `Modules/_testcapi/getargs.o`, `Modules/_testcapi/hash.o`, `Modules/_testcapi/heaptype.o`, `Modules/_testcapi/immortal.o`, `Modules/_testcapi/list.o`, `Modules/_testcapi/long.o`, `Modules/_testcapi/mem.o`, `Modules/_testcapi/monitoring.o`, `Modules/_testcapi/numbers.o`, `Modules/_testcapi/object.o`, `Modules/_testcapi/pyatomic.o`, `Modules/_testcapi/run.o`, `Modules/_testcapi/set.o`, `Modules/_testcapi/structmember.o`, `Modules/_testcapi/time.o`, `Modules/_testcapi/tuple.o`, `Modules/_testcapi/unicode.o`, `Modules/_testcapi/vectorcall.o`, `Modules/_testcapi/watchers.o`, `Modules/_testcapimodule.o`, `Modules/_testclinic.cpython-313-x86_64-linux-gnu.so`, `Modules/_testclinic.o`, `Modules/_testclinic_limited.cpython-313-x86_64-linux-gnu.so`, `Modules/_testclinic_limited.o`, `Modules/_testexternalinspection.cpython-313-x86_64-linux-gnu.so`, `Modules/_testexternalinspection.o`, `Modules/_testimportmultiple.cpython-313-x86_64-linux-gnu.so`, `Modules/_testimportmultiple.o`, `Modules/_testinternalcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testinternalcapi.o`, `Modules/_testinternalcapi/pytime.o`, `Modules/_testinternalcapi/set.o`, `Modules/_testinternalcapi/test_critical_sections.o`, `Modules/_testinternalcapi/test_lock.o`, `Modules/_testlimitedcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testlimitedcapi.o`, `Modules/_testlimitedcapi/abstract.o`, `Modules/_testlimitedcapi/bytearray.o`, `Modules/_testlimitedcapi/bytes.o`, `Modules/_testlimitedcapi/complex.o`, `Modules/_testlimitedcapi/dict.o`, `Modules/_testlimitedcapi/eval.o`, `Modules/_testlimitedcapi/file.o`, `Modules/_testlimitedcapi/float.o`, `Modules/_testlimitedcapi/heaptype_relative.o`, `Modules/_testlimitedcapi/import.o`, `Modules/_testlimitedcapi/list.o`, `Modules/_testlimitedcapi/long.o`, `Modules/_testlimitedcapi/object.o`, `Modules/_testlimitedcapi/pyos.o`, `Modules/_testlimitedcapi/set.o`, `Modules/_testlimitedcapi/sys.o`, `Modules/_testlimitedcapi/tuple.o`, `Modules/_testlimitedcapi/unicode.o`, `Modules/_testlimitedcapi/vectorcall_limited.o`, `Modules/_testmultiphase.cpython-313-x86_64-linux-gnu.so`, `Modules/_testmultiphase.o`, `Modules/_testsinglephase.cpython-313-x86_64-linux-gnu.so`, `Modules/_testsinglephase.o`, `Modules/_threadmodule.o`, `Modules/_tracemalloc.o`, `Modules/_typingmodule.o`, `Modules/_uuid.cpython-313-x86_64-linux-gnu.so`, `Modules/_uuidmodule.o`, `Modules/_weakref.o`, `Modules/_xxtestfuzz.cpython-313-x86_64-linux-gnu.so`, `Modules/_xxtestfuzz/_xxtestfuzz.o`, `Modules/_xxtestfuzz/fuzzer.o`, `Modules/_zoneinfo.cpython-313-x86_64-linux-gnu.so`, `Modules/_zoneinfo.o`, `Modules/array.cpython-313-x86_64-linux-gnu.so`, `Modules/arraymodule.o`, `Modules/atexitmodule.o`, `Modules/binascii.cpython-313-x86_64-linux-gnu.so`, `Modules/binascii.o`, `Modules/cjkcodecs/_codecs_cn.o`, `Modules/cjkcodecs/_codecs_hk.o`, `Modules/cjkcodecs/_codecs_iso2022.o`, `Modules/cjkcodecs/_codecs_jp.o`, `Modules/cjkcodecs/_codecs_kr.o`, `Modules/cjkcodecs/_codecs_tw.o`, `Modules/cjkcodecs/multibytecodec.o`, `Modules/cmath.cpython-313-x86_64-linux-gnu.so`, `Modules/cmathmodule.o`, `Modules/config.c`, `Modules/config.o`, `Modules/errnomodule.o`, `Modules/expat/libexpat.a`, `Modules/expat/xmlparse.o`, `Modules/expat/xmlrole.o`, `Modules/expat/xmltok.o`, `Modules/faulthandler.o`, `Modules/fcntl.cpython-313-x86_64-linux-gnu.so`, `Modules/fcntlmodule.o`, `Modules/gcmodule.o`, `Modules/getbuildinfo.o`, `Modules/getpath.o`, `Modules/getpath_noop.o`, `Modules/grp.cpython-313-x86_64-linux-gnu.so`, `Modules/grpmodule.o`, `Modules/itertoolsmodule.o`, `Modules/ld_so_aix`, `Modules/main.o`, `Modules/math.cpython-313-x86_64-linux-gnu.so`, `Modules/mathmodule.o`, `Modules/md5module.o`, `Modules/mmap.cpython-313-x86_64-linux-gnu.so`, `Modules/mmapmodule.o`, `Modules/posixmodule.o`, `Modules/pwdmodule.o`, `Modules/pyexpat.cpython-313-x86_64-linux-gnu.so`, `Modules/pyexpat.o`, `Modules/readline.cpython-313-x86_64-linux-gnu.so`, `Modules/readline.o`, `Modules/resource.cpython-313-x86_64-linux-gnu.so`, `Modules/resource.o`, `Modules/rotatingtree.o`, `Modules/select.cpython-313-x86_64-linux-gnu.so`, `Modules/selectmodule.o`, `Modules/sha1module.o`, `Modules/sha2module.o`, `Modules/sha3module.o`, `Modules/signalmodule.o`, `Modules/socketmodule.o`, `Modules/symtablemodule.o`, `Modules/syslog.cpython-313-x86_64-linux-gnu.so`, `Modules/syslogmodule.o`, `Modules/termios.cpython-313-x86_64-linux-gnu.so`, `Modules/termios.o`, `Modules/timemodule.o`, `Modules/unicodedata.cpython-313-x86_64-linux-gnu.so`, `Modules/unicodedata.o`, `Modules/xxlimited.cpython-313-x86_64-linux-gnu.so`, `Modules/xxlimited.o`, `Modules/xxlimited_35.cpython-313-x86_64-linux-gnu.so`, `Modules/xxlimited_35.o`, `Modules/xxsubtype.cpython-313-x86_64-linux-gnu.so`, `Modules/xxsubtype.o`, `Modules/zlib.cpython-313-x86_64-linux-gnu.so`, `Modules/zlibmodule.o`, `Objects/abstract.o`, `Objects/boolobject.o`, `Objects/bytearrayobject.o`, `Objects/bytes_methods.o`, `Objects/bytesobject.o`, `Objects/call.o`, `Objects/capsule.o`, `Objects/cellobject.o`, `Objects/classobject.o`, `Objects/codeobject.o`, `Objects/complexobject.o`, `Objects/descrobject.o`, `Objects/dictobject.o`, `Objects/enumobject.o`, `Objects/exceptions.o`, `Objects/fileobject.o`, `Objects/floatobject.o`, `Objects/frameobject.o`, `Objects/funcobject.o`, `Objects/genericaliasobject.o`, `Objects/genobject.o`, `Objects/iterobject.o`, `Objects/listobject.o`, `Objects/longobject.o`, `Objects/memoryobject.o`, `Objects/methodobject.o`, `Objects/moduleobject.o`, `Objects/namespaceobject.o`, `Objects/object.o`, `Objects/obmalloc.o`, `Objects/odictobject.o`, `Objects/picklebufobject.o`, `Objects/rangeobject.o`, `Objects/setobject.o`, `Objects/sliceobject.o`, `Objects/structseq.o`, `Objects/tupleobject.o`, `Objects/typeobject.o`, `Objects/typevarobject.o`, `Objects/unicodectype.o`, `Objects/unicodeobject.o`, `Objects/unionobject.o`, `Objects/weakrefobject.o`, `Parser/action_helpers.o`, `Parser/lexer/buffer.o`, `Parser/lexer/lexer.o`, `Parser/lexer/state.o`, `Parser/myreadline.o`, `Parser/parser.o`, `Parser/peg_api.o`, `Parser/pegen.o`, `Parser/pegen_errors.o`, `Parser/string_parser.o`, `Parser/token.o`, `Parser/tokenizer/file_tokenizer.o`, `Parser/tokenizer/helpers.o`, `Parser/tokenizer/readline_tokenizer.o`, `Parser/tokenizer/string_tokenizer.o`, `Parser/tokenizer/utf8_tokenizer.o`, `Programs/_bootstrap_python.o`, `Programs/_freeze_module`, `Programs/_freeze_module.o`, `Programs/_testembed`, `Programs/_testembed.o`, `Programs/python.o`, `Python/Python-ast.o`, `Python/Python-tokenize.o`, `Python/_warnings.o`, `Python/asdl.o`, `Python/asm_trampoline.o`, `Python/assemble.o`, `Python/ast.o`, `Python/ast_opt.o`, `Python/ast_unparse.o`, `Python/bltinmodule.o`, `Python/bootstrap_hash.o`, `Python/brc.o`, `Python/ceval.o`, `Python/ceval_gil.o`, `Python/codecs.o`, `Python/compile.o`, `Python/context.o`, `Python/critical_section.o`, `Python/crossinterp.o`, `Python/dtoa.o`, `Python/dynamic_annotations.o`, `Python/dynload_shlib.o`, `Python/errors.o`, `Python/fileutils.o`, `Python/flowgraph.o`, `Python/formatter_unicode.o`, `Python/frame.o`, `Python/frozen.o`, `Python/frozen_modules/__hello__.h`, `Python/frozen_modules/__phello__.h`, `Python/frozen_modules/__phello__.ham.eggs.h`, `Python/frozen_modules/__phello__.ham.h`, `Python/frozen_modules/__phello__.spam.h`, `Python/frozen_modules/_collections_abc.h`, `Python/frozen_modules/_sitebuiltins.h`, `Python/frozen_modules/abc.h`, `Python/frozen_modules/codecs.h`, `Python/frozen_modules/frozen_only.h`, `Python/frozen_modules/genericpath.h`, `Python/frozen_modules/getpath.h`, `Python/frozen_modules/importlib._bootstrap.h`, `Python/frozen_modules/importlib._bootstrap_external.h`, `Python/frozen_modules/importlib.machinery.h`, `Python/frozen_modules/importlib.util.h`, `Python/frozen_modules/io.h`, `Python/frozen_modules/ntpath.h`, `Python/frozen_modules/os.h`, `Python/frozen_modules/posixpath.h`, `Python/frozen_modules/runpy.h`, `Python/frozen_modules/site.h`, `Python/frozen_modules/stat.h`, `Python/frozen_modules/zipimport.h`, `Python/frozenmain.o`, `Python/future.o`, `Python/gc.o`, `Python/gc_free_threading.o`, `Python/gc_gil.o`, `Python/getargs.o`, `Python/getcompiler.o`, `Python/getcopyright.o`, `Python/getopt.o`, `Python/getplatform.o`, `Python/getversion.o`, `Python/hamt.o`, `Python/hashtable.o`, `Python/import.o`, `Python/importdl.o`, `Python/initconfig.o`, `Python/instruction_sequence.o`, `Python/instrumentation.o`, `Python/interpconfig.o`, `Python/intrinsics.o`, `Python/jit.o`, `Python/legacy_tracing.o`, `Python/lock.o`, `Python/marshal.o`, `Python/modsupport.o`, `Python/mysnprintf.o`, `Python/mystrtoul.o`, `Python/object_stack.o`, `Python/optimizer.o`, `Python/optimizer_analysis.o`, `Python/optimizer_symbols.o`, `Python/parking_lot.o`, `Python/pathconfig.o`, `Python/perf_jit_trampoline.o`, `Python/perf_trampoline.o`, `Python/preconfig.o`, `Python/pyarena.o`, `Python/pyctype.o`, `Python/pyfpe.o`, `Python/pyhash.o`, `Python/pylifecycle.o`, `Python/pymath.o`, `Python/pystate.o`, `Python/pystrcmp.o`, `Python/pystrhex.o`, `Python/pystrtod.o`, `Python/pythonrun.o`, `Python/pytime.o`, `Python/qsbr.o`, `Python/specialize.o`, `Python/structmember.o`, `Python/suggestions.o`, `Python/symtable.o`, `Python/sysmodule.o`, `Python/thread.o`, `Python/traceback.o`, `Python/tracemalloc.o`, `_bootstrap_python`, `build/lib.linux-x86_64-3.13/__pycache__/_sysconfigdata__linux_x86_64-linux-gnu.cpython-313.pyc`, `build/lib.linux-x86_64-3.13/_asyncio.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_bisect.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_blake2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_bz2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_cn.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_hk.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_iso2022.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_jp.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_kr.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_tw.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_contextvars.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_csv.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_ctypes.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_ctypes_test.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_curses.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_curses_panel.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_datetime.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_decimal.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_elementtree.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_hashlib.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_heapq.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpchannels.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpqueues.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpreters.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_json.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_lsprof.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_lzma.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_md5.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_multibytecodec.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_multiprocessing.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_opcode.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_pickle.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_posixshmem.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_posixsubprocess.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_queue.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_random.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha1.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha3.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_socket.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sqlite3.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_statistics.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_struct.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sysconfigdata__linux_x86_64-linux-gnu.py`, `build/lib.linux-x86_64-3.13/_testbuffer.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testclinic.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testclinic_limited.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testexternalinspection.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testimportmultiple.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testinternalcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testlimitedcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testmultiphase.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testsinglephase.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_uuid.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_xxtestfuzz.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_zoneinfo.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/array.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/binascii.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/cmath.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/fcntl.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/grp.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/math.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/mmap.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/pyexpat.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/readline.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/resource.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/select.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/syslog.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/termios.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/unicodedata.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxlimited.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxlimited_35.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxsubtype.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/zlib.cpython-313-x86_64-linux-gnu.so`, `build/scripts-3.13/idle3.13`, `build/scripts-3.13/pydoc3.13`, `config.log`, `config.status`, `libpython3.13.a`, `platform`, `pybuilddir.txt`, `pyconfig.h`, `python`, `python-config`, `python-config.py`, `python-gdb.py`, but `## Git Add Paths` lists `None`. Update `## Git Add Paths` to match the real shipped file set exactly, and make sure `## Issue Connection` explains every functional file that remains in the patch.
2. Missing from `## Git Add Paths`: `Lib/__pycache__/__future__.cpython-313.pyc`, `Lib/__pycache__/_collections_abc.cpython-313.pyc`, `Lib/__pycache__/_colorize.cpython-313.pyc`, `Lib/__pycache__/_compat_pickle.cpython-313.pyc`, `Lib/__pycache__/_compression.cpython-313.pyc`, `Lib/__pycache__/_opcode_metadata.cpython-313.pyc`, `Lib/__pycache__/_sitebuiltins.cpython-313.pyc`, `Lib/__pycache__/_weakrefset.cpython-313.pyc`, `Lib/__pycache__/abc.cpython-313.pyc`, `Lib/__pycache__/argparse.cpython-313.pyc`, `Lib/__pycache__/ast.cpython-313.pyc`, `Lib/__pycache__/bz2.cpython-313.pyc`, `Lib/__pycache__/codecs.cpython-313.pyc`, `Lib/__pycache__/contextlib.cpython-313.pyc`, `Lib/__pycache__/contextvars.cpython-313.pyc`, `Lib/__pycache__/copy.cpython-313.pyc`, `Lib/__pycache__/copyreg.cpython-313.pyc`, `Lib/__pycache__/datetime.cpython-313.pyc`, `Lib/__pycache__/dis.cpython-313.pyc`, `Lib/__pycache__/enum.cpython-313.pyc`, `Lib/__pycache__/fnmatch.cpython-313.pyc`, `Lib/__pycache__/functools.cpython-313.pyc`, `Lib/__pycache__/genericpath.cpython-313.pyc`, `Lib/__pycache__/gettext.cpython-313.pyc`, `Lib/__pycache__/glob.cpython-313.pyc`, `Lib/__pycache__/heapq.cpython-313.pyc`, `Lib/__pycache__/inspect.cpython-313.pyc`, `Lib/__pycache__/io.cpython-313.pyc`, `Lib/__pycache__/keyword.cpython-313.pyc`, `Lib/__pycache__/linecache.cpython-313.pyc`, `Lib/__pycache__/locale.cpython-313.pyc`, `Lib/__pycache__/lzma.cpython-313.pyc`, `Lib/__pycache__/numbers.cpython-313.pyc`, `Lib/__pycache__/opcode.cpython-313.pyc`, `Lib/__pycache__/operator.cpython-313.pyc`, `Lib/__pycache__/os.cpython-313.pyc`, `Lib/__pycache__/posixpath.cpython-313.pyc`, `Lib/__pycache__/reprlib.cpython-313.pyc`, `Lib/__pycache__/selectors.cpython-313.pyc`, `Lib/__pycache__/shutil.cpython-313.pyc`, `Lib/__pycache__/signal.cpython-313.pyc`, `Lib/__pycache__/site.cpython-313.pyc`, `Lib/__pycache__/socket.cpython-313.pyc`, `Lib/__pycache__/ssl.cpython-313.pyc`, `Lib/__pycache__/stat.cpython-313.pyc`, `Lib/__pycache__/string.cpython-313.pyc`, `Lib/__pycache__/struct.cpython-313.pyc`, `Lib/__pycache__/subprocess.cpython-313.pyc`, `Lib/__pycache__/textwrap.cpython-313.pyc`, `Lib/__pycache__/threading.cpython-313.pyc`, `Lib/__pycache__/token.cpython-313.pyc`, `Lib/__pycache__/tokenize.cpython-313.pyc`, `Lib/__pycache__/traceback.cpython-313.pyc`, `Lib/__pycache__/types.cpython-313.pyc`, `Lib/__pycache__/typing.cpython-313.pyc`, `Lib/__pycache__/warnings.cpython-313.pyc`, `Lib/__pycache__/weakref.cpython-313.pyc`, `Lib/asyncio/__pycache__/__init__.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_events.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_futures.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_subprocess.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_tasks.cpython-313.pyc`, `Lib/asyncio/__pycache__/constants.cpython-313.pyc`, `Lib/asyncio/__pycache__/coroutines.cpython-313.pyc`, `Lib/asyncio/__pycache__/events.cpython-313.pyc`, `Lib/asyncio/__pycache__/exceptions.cpython-313.pyc`, `Lib/asyncio/__pycache__/format_helpers.cpython-313.pyc`, `Lib/asyncio/__pycache__/futures.cpython-313.pyc`, `Lib/asyncio/__pycache__/locks.cpython-313.pyc`, `Lib/asyncio/__pycache__/log.cpython-313.pyc`, `Lib/asyncio/__pycache__/mixins.cpython-313.pyc`, `Lib/asyncio/__pycache__/protocols.cpython-313.pyc`, `Lib/asyncio/__pycache__/queues.cpython-313.pyc`, `Lib/asyncio/__pycache__/runners.cpython-313.pyc`, `Lib/asyncio/__pycache__/selector_events.cpython-313.pyc`, `Lib/asyncio/__pycache__/sslproto.cpython-313.pyc`, `Lib/asyncio/__pycache__/staggered.cpython-313.pyc`, `Lib/asyncio/__pycache__/streams.cpython-313.pyc`, `Lib/asyncio/__pycache__/subprocess.cpython-313.pyc`, `Lib/asyncio/__pycache__/taskgroups.cpython-313.pyc`, `Lib/asyncio/__pycache__/tasks.cpython-313.pyc`, `Lib/asyncio/__pycache__/threads.cpython-313.pyc`, `Lib/asyncio/__pycache__/timeouts.cpython-313.pyc`, `Lib/asyncio/__pycache__/transports.cpython-313.pyc`, `Lib/asyncio/__pycache__/trsock.cpython-313.pyc`, `Lib/asyncio/__pycache__/unix_events.cpython-313.pyc`, `Lib/collections/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/futures/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/futures/__pycache__/_base.cpython-313.pyc`, `Lib/encodings/__pycache__/__init__.cpython-313.pyc`, `Lib/encodings/__pycache__/aliases.cpython-313.pyc`, `Lib/encodings/__pycache__/ascii.cpython-313.pyc`, `Lib/encodings/__pycache__/utf_8.cpython-313.pyc`, `Lib/importlib/__pycache__/__init__.cpython-313.pyc`, `Lib/importlib/__pycache__/_abc.cpython-313.pyc`, `Lib/logging/__pycache__/__init__.cpython-313.pyc`, `Lib/pathlib/__pycache__/__init__.cpython-313.pyc`, `Lib/pathlib/__pycache__/_abc.cpython-313.pyc`, `Lib/pathlib/__pycache__/_local.cpython-313.pyc`, `Lib/re/__pycache__/__init__.cpython-313.pyc`, `Lib/re/__pycache__/_casefix.cpython-313.pyc`, `Lib/re/__pycache__/_compiler.cpython-313.pyc`, `Lib/re/__pycache__/_constants.cpython-313.pyc`, `Lib/re/__pycache__/_parser.cpython-313.pyc`, `Lib/sysconfig/__pycache__/__init__.cpython-313.pyc`, `Lib/sysconfig/__pycache__/__main__.cpython-313.pyc`, `Lib/xml/__pycache__/__init__.cpython-313.pyc`, `Lib/xml/etree/__pycache__/ElementPath.cpython-313.pyc`, `Lib/xml/etree/__pycache__/__init__.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/__init__.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/_common.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/_tzpath.cpython-313.pyc`, `Makefile`, `Makefile.pre`, `Misc/python-config.sh`, `Misc/python-embed.pc`, `Misc/python.pc`, `Modules/Setup.bootstrap`, `Modules/Setup.local`, `Modules/Setup.stdlib`, `Modules/_abc.o`, `Modules/_asyncio.cpython-313-x86_64-linux-gnu.so`, `Modules/_asynciomodule.o`, `Modules/_bisect.cpython-313-x86_64-linux-gnu.so`, `Modules/_bisectmodule.o`, `Modules/_blake2.cpython-313-x86_64-linux-gnu.so`, `Modules/_blake2/blake2b_impl.o`, `Modules/_blake2/blake2module.o`, `Modules/_blake2/blake2s_impl.o`, `Modules/_bz2.cpython-313-x86_64-linux-gnu.so`, `Modules/_bz2module.o`, `Modules/_codecs_cn.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_hk.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_iso2022.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_jp.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_kr.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_tw.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecsmodule.o`, `Modules/_collectionsmodule.o`, `Modules/_contextvars.cpython-313-x86_64-linux-gnu.so`, `Modules/_contextvarsmodule.o`, `Modules/_csv.cpython-313-x86_64-linux-gnu.so`, `Modules/_csv.o`, `Modules/_ctypes.cpython-313-x86_64-linux-gnu.so`, `Modules/_ctypes/_ctypes.o`, `Modules/_ctypes/_ctypes_test.o`, `Modules/_ctypes/callbacks.o`, `Modules/_ctypes/callproc.o`, `Modules/_ctypes/cfield.o`, `Modules/_ctypes/stgdict.o`, `Modules/_ctypes_test.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses_panel.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses_panel.o`, `Modules/_cursesmodule.o`, `Modules/_datetime.cpython-313-x86_64-linux-gnu.so`, `Modules/_datetimemodule.o`, `Modules/_decimal.cpython-313-x86_64-linux-gnu.so`, `Modules/_decimal/_decimal.o`, `Modules/_decimal/libmpdec/basearith.o`, `Modules/_decimal/libmpdec/constants.o`, `Modules/_decimal/libmpdec/context.o`, `Modules/_decimal/libmpdec/convolute.o`, `Modules/_decimal/libmpdec/crt.o`, `Modules/_decimal/libmpdec/difradix2.o`, `Modules/_decimal/libmpdec/fnt.o`, `Modules/_decimal/libmpdec/fourstep.o`, `Modules/_decimal/libmpdec/io.o`, `Modules/_decimal/libmpdec/libmpdec.a`, `Modules/_decimal/libmpdec/mpalloc.o`, `Modules/_decimal/libmpdec/mpdecimal.o`, `Modules/_decimal/libmpdec/numbertheory.o`, `Modules/_decimal/libmpdec/sixstep.o`, `Modules/_decimal/libmpdec/transpose.o`, `Modules/_elementtree.cpython-313-x86_64-linux-gnu.so`, `Modules/_elementtree.o`, `Modules/_functoolsmodule.o`, `Modules/_hacl/Hacl_Hash_MD5.o`, `Modules/_hacl/Hacl_Hash_SHA1.o`, `Modules/_hacl/Hacl_Hash_SHA2.o`, `Modules/_hacl/Hacl_Hash_SHA3.o`, `Modules/_hacl/libHacl_Hash_SHA2.a`, `Modules/_hashlib.cpython-313-x86_64-linux-gnu.so`, `Modules/_hashopenssl.o`, `Modules/_heapq.cpython-313-x86_64-linux-gnu.so`, `Modules/_heapqmodule.o`, `Modules/_interpchannels.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpchannelsmodule.o`, `Modules/_interpqueues.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpqueuesmodule.o`, `Modules/_interpreters.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpretersmodule.o`, `Modules/_io/_iomodule.o`, `Modules/_io/bufferedio.o`, `Modules/_io/bytesio.o`, `Modules/_io/fileio.o`, `Modules/_io/iobase.o`, `Modules/_io/stringio.o`, `Modules/_io/textio.o`, `Modules/_json.cpython-313-x86_64-linux-gnu.so`, `Modules/_json.o`, `Modules/_localemodule.o`, `Modules/_lsprof.cpython-313-x86_64-linux-gnu.so`, `Modules/_lsprof.o`, `Modules/_lzma.cpython-313-x86_64-linux-gnu.so`, `Modules/_lzmamodule.o`, `Modules/_md5.cpython-313-x86_64-linux-gnu.so`, `Modules/_multibytecodec.cpython-313-x86_64-linux-gnu.so`, `Modules/_multiprocessing.cpython-313-x86_64-linux-gnu.so`, `Modules/_multiprocessing/multiprocessing.o`, `Modules/_multiprocessing/posixshmem.o`, `Modules/_multiprocessing/semaphore.o`, `Modules/_opcode.cpython-313-x86_64-linux-gnu.so`, `Modules/_opcode.o`, `Modules/_operator.o`, `Modules/_pickle.cpython-313-x86_64-linux-gnu.so`, `Modules/_pickle.o`, `Modules/_posixshmem.cpython-313-x86_64-linux-gnu.so`, `Modules/_posixsubprocess.cpython-313-x86_64-linux-gnu.so`, `Modules/_posixsubprocess.o`, `Modules/_queue.cpython-313-x86_64-linux-gnu.so`, `Modules/_queuemodule.o`, `Modules/_random.cpython-313-x86_64-linux-gnu.so`, `Modules/_randommodule.o`, `Modules/_sha1.cpython-313-x86_64-linux-gnu.so`, `Modules/_sha2.cpython-313-x86_64-linux-gnu.so`, `Modules/_sha3.cpython-313-x86_64-linux-gnu.so`, `Modules/_socket.cpython-313-x86_64-linux-gnu.so`, `Modules/_sqlite/blob.o`, `Modules/_sqlite/connection.o`, `Modules/_sqlite/cursor.o`, `Modules/_sqlite/microprotocols.o`, `Modules/_sqlite/module.o`, `Modules/_sqlite/prepare_protocol.o`, `Modules/_sqlite/row.o`, `Modules/_sqlite/statement.o`, `Modules/_sqlite/util.o`, `Modules/_sqlite3.cpython-313-x86_64-linux-gnu.so`, `Modules/_sre/sre.o`, `Modules/_ssl.o`, `Modules/_ssl_failed.cpython-313-x86_64-linux-gnu.so`, `Modules/_stat.o`, `Modules/_statistics.cpython-313-x86_64-linux-gnu.so`, `Modules/_statisticsmodule.o`, `Modules/_struct.cpython-313-x86_64-linux-gnu.so`, `Modules/_struct.o`, `Modules/_suggestions.o`, `Modules/_sysconfig.o`, `Modules/_testbuffer.cpython-313-x86_64-linux-gnu.so`, `Modules/_testbuffer.o`, `Modules/_testcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testcapi/abstract.o`, `Modules/_testcapi/buffer.o`, `Modules/_testcapi/bytes.o`, `Modules/_testcapi/code.o`, `Modules/_testcapi/codec.o`, `Modules/_testcapi/complex.o`, `Modules/_testcapi/datetime.o`, `Modules/_testcapi/dict.o`, `Modules/_testcapi/docstring.o`, `Modules/_testcapi/exceptions.o`, `Modules/_testcapi/file.o`, `Modules/_testcapi/float.o`, `Modules/_testcapi/gc.o`, `Modules/_testcapi/getargs.o`, `Modules/_testcapi/hash.o`, `Modules/_testcapi/heaptype.o`, `Modules/_testcapi/immortal.o`, `Modules/_testcapi/list.o`, `Modules/_testcapi/long.o`, `Modules/_testcapi/mem.o`, `Modules/_testcapi/monitoring.o`, `Modules/_testcapi/numbers.o`, `Modules/_testcapi/object.o`, `Modules/_testcapi/pyatomic.o`, `Modules/_testcapi/run.o`, `Modules/_testcapi/set.o`, `Modules/_testcapi/structmember.o`, `Modules/_testcapi/time.o`, `Modules/_testcapi/tuple.o`, `Modules/_testcapi/unicode.o`, `Modules/_testcapi/vectorcall.o`, `Modules/_testcapi/watchers.o`, `Modules/_testcapimodule.o`, `Modules/_testclinic.cpython-313-x86_64-linux-gnu.so`, `Modules/_testclinic.o`, `Modules/_testclinic_limited.cpython-313-x86_64-linux-gnu.so`, `Modules/_testclinic_limited.o`, `Modules/_testexternalinspection.cpython-313-x86_64-linux-gnu.so`, `Modules/_testexternalinspection.o`, `Modules/_testimportmultiple.cpython-313-x86_64-linux-gnu.so`, `Modules/_testimportmultiple.o`, `Modules/_testinternalcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testinternalcapi.o`, `Modules/_testinternalcapi/pytime.o`, `Modules/_testinternalcapi/set.o`, `Modules/_testinternalcapi/test_critical_sections.o`, `Modules/_testinternalcapi/test_lock.o`, `Modules/_testlimitedcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testlimitedcapi.o`, `Modules/_testlimitedcapi/abstract.o`, `Modules/_testlimitedcapi/bytearray.o`, `Modules/_testlimitedcapi/bytes.o`, `Modules/_testlimitedcapi/complex.o`, `Modules/_testlimitedcapi/dict.o`, `Modules/_testlimitedcapi/eval.o`, `Modules/_testlimitedcapi/file.o`, `Modules/_testlimitedcapi/float.o`, `Modules/_testlimitedcapi/heaptype_relative.o`, `Modules/_testlimitedcapi/import.o`, `Modules/_testlimitedcapi/list.o`, `Modules/_testlimitedcapi/long.o`, `Modules/_testlimitedcapi/object.o`, `Modules/_testlimitedcapi/pyos.o`, `Modules/_testlimitedcapi/set.o`, `Modules/_testlimitedcapi/sys.o`, `Modules/_testlimitedcapi/tuple.o`, `Modules/_testlimitedcapi/unicode.o`, `Modules/_testlimitedcapi/vectorcall_limited.o`, `Modules/_testmultiphase.cpython-313-x86_64-linux-gnu.so`, `Modules/_testmultiphase.o`, `Modules/_testsinglephase.cpython-313-x86_64-linux-gnu.so`, `Modules/_testsinglephase.o`, `Modules/_threadmodule.o`, `Modules/_tracemalloc.o`, `Modules/_typingmodule.o`, `Modules/_uuid.cpython-313-x86_64-linux-gnu.so`, `Modules/_uuidmodule.o`, `Modules/_weakref.o`, `Modules/_xxtestfuzz.cpython-313-x86_64-linux-gnu.so`, `Modules/_xxtestfuzz/_xxtestfuzz.o`, `Modules/_xxtestfuzz/fuzzer.o`, `Modules/_zoneinfo.cpython-313-x86_64-linux-gnu.so`, `Modules/_zoneinfo.o`, `Modules/array.cpython-313-x86_64-linux-gnu.so`, `Modules/arraymodule.o`, `Modules/atexitmodule.o`, `Modules/binascii.cpython-313-x86_64-linux-gnu.so`, `Modules/binascii.o`, `Modules/cjkcodecs/_codecs_cn.o`, `Modules/cjkcodecs/_codecs_hk.o`, `Modules/cjkcodecs/_codecs_iso2022.o`, `Modules/cjkcodecs/_codecs_jp.o`, `Modules/cjkcodecs/_codecs_kr.o`, `Modules/cjkcodecs/_codecs_tw.o`, `Modules/cjkcodecs/multibytecodec.o`, `Modules/cmath.cpython-313-x86_64-linux-gnu.so`, `Modules/cmathmodule.o`, `Modules/config.c`, `Modules/config.o`, `Modules/errnomodule.o`, `Modules/expat/libexpat.a`, `Modules/expat/xmlparse.o`, `Modules/expat/xmlrole.o`, `Modules/expat/xmltok.o`, `Modules/faulthandler.o`, `Modules/fcntl.cpython-313-x86_64-linux-gnu.so`, `Modules/fcntlmodule.o`, `Modules/gcmodule.o`, `Modules/getbuildinfo.o`, `Modules/getpath.o`, `Modules/getpath_noop.o`, `Modules/grp.cpython-313-x86_64-linux-gnu.so`, `Modules/grpmodule.o`, `Modules/itertoolsmodule.o`, `Modules/ld_so_aix`, `Modules/main.o`, `Modules/math.cpython-313-x86_64-linux-gnu.so`, `Modules/mathmodule.o`, `Modules/md5module.o`, `Modules/mmap.cpython-313-x86_64-linux-gnu.so`, `Modules/mmapmodule.o`, `Modules/posixmodule.o`, `Modules/pwdmodule.o`, `Modules/pyexpat.cpython-313-x86_64-linux-gnu.so`, `Modules/pyexpat.o`, `Modules/readline.cpython-313-x86_64-linux-gnu.so`, `Modules/readline.o`, `Modules/resource.cpython-313-x86_64-linux-gnu.so`, `Modules/resource.o`, `Modules/rotatingtree.o`, `Modules/select.cpython-313-x86_64-linux-gnu.so`, `Modules/selectmodule.o`, `Modules/sha1module.o`, `Modules/sha2module.o`, `Modules/sha3module.o`, `Modules/signalmodule.o`, `Modules/socketmodule.o`, `Modules/symtablemodule.o`, `Modules/syslog.cpython-313-x86_64-linux-gnu.so`, `Modules/syslogmodule.o`, `Modules/termios.cpython-313-x86_64-linux-gnu.so`, `Modules/termios.o`, `Modules/timemodule.o`, `Modules/unicodedata.cpython-313-x86_64-linux-gnu.so`, `Modules/unicodedata.o`, `Modules/xxlimited.cpython-313-x86_64-linux-gnu.so`, `Modules/xxlimited.o`, `Modules/xxlimited_35.cpython-313-x86_64-linux-gnu.so`, `Modules/xxlimited_35.o`, `Modules/xxsubtype.cpython-313-x86_64-linux-gnu.so`, `Modules/xxsubtype.o`, `Modules/zlib.cpython-313-x86_64-linux-gnu.so`, `Modules/zlibmodule.o`, `Objects/abstract.o`, `Objects/boolobject.o`, `Objects/bytearrayobject.o`, `Objects/bytes_methods.o`, `Objects/bytesobject.o`, `Objects/call.o`, `Objects/capsule.o`, `Objects/cellobject.o`, `Objects/classobject.o`, `Objects/codeobject.o`, `Objects/complexobject.o`, `Objects/descrobject.o`, `Objects/dictobject.o`, `Objects/enumobject.o`, `Objects/exceptions.o`, `Objects/fileobject.o`, `Objects/floatobject.o`, `Objects/frameobject.o`, `Objects/funcobject.o`, `Objects/genericaliasobject.o`, `Objects/genobject.o`, `Objects/iterobject.o`, `Objects/listobject.o`, `Objects/longobject.o`, `Objects/memoryobject.o`, `Objects/methodobject.o`, `Objects/moduleobject.o`, `Objects/namespaceobject.o`, `Objects/object.o`, `Objects/obmalloc.o`, `Objects/odictobject.o`, `Objects/picklebufobject.o`, `Objects/rangeobject.o`, `Objects/setobject.o`, `Objects/sliceobject.o`, `Objects/structseq.o`, `Objects/tupleobject.o`, `Objects/typeobject.o`, `Objects/typevarobject.o`, `Objects/unicodectype.o`, `Objects/unicodeobject.o`, `Objects/unionobject.o`, `Objects/weakrefobject.o`, `Parser/action_helpers.o`, `Parser/lexer/buffer.o`, `Parser/lexer/lexer.o`, `Parser/lexer/state.o`, `Parser/myreadline.o`, `Parser/parser.o`, `Parser/peg_api.o`, `Parser/pegen.o`, `Parser/pegen_errors.o`, `Parser/string_parser.o`, `Parser/token.o`, `Parser/tokenizer/file_tokenizer.o`, `Parser/tokenizer/helpers.o`, `Parser/tokenizer/readline_tokenizer.o`, `Parser/tokenizer/string_tokenizer.o`, `Parser/tokenizer/utf8_tokenizer.o`, `Programs/_bootstrap_python.o`, `Programs/_freeze_module`, `Programs/_freeze_module.o`, `Programs/_testembed`, `Programs/_testembed.o`, `Programs/python.o`, `Python/Python-ast.o`, `Python/Python-tokenize.o`, `Python/_warnings.o`, `Python/asdl.o`, `Python/asm_trampoline.o`, `Python/assemble.o`, `Python/ast.o`, `Python/ast_opt.o`, `Python/ast_unparse.o`, `Python/bltinmodule.o`, `Python/bootstrap_hash.o`, `Python/brc.o`, `Python/ceval.o`, `Python/ceval_gil.o`, `Python/codecs.o`, `Python/compile.o`, `Python/context.o`, `Python/critical_section.o`, `Python/crossinterp.o`, `Python/dtoa.o`, `Python/dynamic_annotations.o`, `Python/dynload_shlib.o`, `Python/errors.o`, `Python/fileutils.o`, `Python/flowgraph.o`, `Python/formatter_unicode.o`, `Python/frame.o`, `Python/frozen.o`, `Python/frozen_modules/__hello__.h`, `Python/frozen_modules/__phello__.h`, `Python/frozen_modules/__phello__.ham.eggs.h`, `Python/frozen_modules/__phello__.ham.h`, `Python/frozen_modules/__phello__.spam.h`, `Python/frozen_modules/_collections_abc.h`, `Python/frozen_modules/_sitebuiltins.h`, `Python/frozen_modules/abc.h`, `Python/frozen_modules/codecs.h`, `Python/frozen_modules/frozen_only.h`, `Python/frozen_modules/genericpath.h`, `Python/frozen_modules/getpath.h`, `Python/frozen_modules/importlib._bootstrap.h`, `Python/frozen_modules/importlib._bootstrap_external.h`, `Python/frozen_modules/importlib.machinery.h`, `Python/frozen_modules/importlib.util.h`, `Python/frozen_modules/io.h`, `Python/frozen_modules/ntpath.h`, `Python/frozen_modules/os.h`, `Python/frozen_modules/posixpath.h`, `Python/frozen_modules/runpy.h`, `Python/frozen_modules/site.h`, `Python/frozen_modules/stat.h`, `Python/frozen_modules/zipimport.h`, `Python/frozenmain.o`, `Python/future.o`, `Python/gc.o`, `Python/gc_free_threading.o`, `Python/gc_gil.o`, `Python/getargs.o`, `Python/getcompiler.o`, `Python/getcopyright.o`, `Python/getopt.o`, `Python/getplatform.o`, `Python/getversion.o`, `Python/hamt.o`, `Python/hashtable.o`, `Python/import.o`, `Python/importdl.o`, `Python/initconfig.o`, `Python/instruction_sequence.o`, `Python/instrumentation.o`, `Python/interpconfig.o`, `Python/intrinsics.o`, `Python/jit.o`, `Python/legacy_tracing.o`, `Python/lock.o`, `Python/marshal.o`, `Python/modsupport.o`, `Python/mysnprintf.o`, `Python/mystrtoul.o`, `Python/object_stack.o`, `Python/optimizer.o`, `Python/optimizer_analysis.o`, `Python/optimizer_symbols.o`, `Python/parking_lot.o`, `Python/pathconfig.o`, `Python/perf_jit_trampoline.o`, `Python/perf_trampoline.o`, `Python/preconfig.o`, `Python/pyarena.o`, `Python/pyctype.o`, `Python/pyfpe.o`, `Python/pyhash.o`, `Python/pylifecycle.o`, `Python/pymath.o`, `Python/pystate.o`, `Python/pystrcmp.o`, `Python/pystrhex.o`, `Python/pystrtod.o`, `Python/pythonrun.o`, `Python/pytime.o`, `Python/qsbr.o`, `Python/specialize.o`, `Python/structmember.o`, `Python/suggestions.o`, `Python/symtable.o`, `Python/sysmodule.o`, `Python/thread.o`, `Python/traceback.o`, `Python/tracemalloc.o`, `_bootstrap_python`, `build/lib.linux-x86_64-3.13/__pycache__/_sysconfigdata__linux_x86_64-linux-gnu.cpython-313.pyc`, `build/lib.linux-x86_64-3.13/_asyncio.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_bisect.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_blake2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_bz2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_cn.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_hk.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_iso2022.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_jp.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_kr.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_tw.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_contextvars.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_csv.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_ctypes.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_ctypes_test.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_curses.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_curses_panel.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_datetime.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_decimal.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_elementtree.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_hashlib.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_heapq.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpchannels.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpqueues.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpreters.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_json.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_lsprof.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_lzma.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_md5.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_multibytecodec.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_multiprocessing.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_opcode.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_pickle.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_posixshmem.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_posixsubprocess.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_queue.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_random.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha1.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha3.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_socket.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sqlite3.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_statistics.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_struct.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sysconfigdata__linux_x86_64-linux-gnu.py`, `build/lib.linux-x86_64-3.13/_testbuffer.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testclinic.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testclinic_limited.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testexternalinspection.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testimportmultiple.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testinternalcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testlimitedcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testmultiphase.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testsinglephase.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_uuid.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_xxtestfuzz.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_zoneinfo.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/array.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/binascii.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/cmath.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/fcntl.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/grp.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/math.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/mmap.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/pyexpat.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/readline.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/resource.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/select.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/syslog.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/termios.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/unicodedata.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxlimited.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxlimited_35.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxsubtype.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/zlib.cpython-313-x86_64-linux-gnu.so`, `build/scripts-3.13/idle3.13`, `build/scripts-3.13/pydoc3.13`, `config.log`, `config.status`, `libpython3.13.a`, `platform`, `pybuilddir.txt`, `pyconfig.h`, `python`, `python-config`, `python-config.py`, `python-gdb.py`.
2. Listed in `## Git Add Paths` but not actually changed: `None`.

## Refinement Pass 1

Subject: Keep CPython tree clean for supervisord poll diagnosis

## Commit Message
No source change. The collected trace points to `supervisord` waking once per second to reap children and poll a file descriptor, not to a demonstrated CPython runtime bug. This refinement addresses the review finding by removing generated validation artifacts so the no-patch diagnosis matches the clean workspace.

## Evidence Confidence
inferred

## Issue Connection
Fixer collected perf, strace, and `/proc` evidence for `/usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf`. The exact collected signal is repeated `wait4(-1, ..., WNOHANG) = -1 ECHILD` followed by `poll(..., 1000) = 0 (Timeout) <1.001...>`, while `/proc` reported the sampled thread sleeping in `poll_schedule_timeout`.

The cautious inference is that this is an application event-loop pattern: `supervisord` checks for child exits and then sleeps in `poll(2)` for one second. I rechecked CPython’s matching paths and local conventions: `selectors.PollSelector`, `select.poll.poll()` using `_PyTime_FromMillisecondsObject()`, `_PyDeadline_*`, and `Py_BEGIN_ALLOW_THREADS`, plus `os.wait4()`/`os.waitpid()` using `posix_error()` and `wait_helper()`. No relevant local helper was missing, and no CPython source defect was established.

The specific refinement change was cleanup only: I removed generated build artifacts and pycache files left by validation with `make distclean`. The expected effect is that the final proposal remains a clean no-patch diagnosis with no generated files drifting against `## Git Add Paths`.

## Git Add Paths
None

## Validation
Previously ran the project-level entrypoint from the workspace root:

```sh
./configure && make
```

It completed with exit code 0. The build reported optional module issues: `_dbm`, `_gdbm`, and `_tkinter` were missing, and `_ssl` was built then removed because it could not import with `undefined symbol: TLSv1_method`.

Previously ran the bounded independent check:

```sh
/usr/bin/time -p ./python - <<'PY'
import os, select
r, w = os.pipe()
try:
    p = select.poll()
    p.register(r, select.POLLIN | select.POLLPRI | select.POLLHUP)
    for _ in range(3):
        try:
            os.wait4(-1, os.WNOHANG)
        except ChildProcessError:
            pass
        p.poll(1000)
finally:
    os.close(r)
    os.close(w)
PY
```

Result: `real 3.01`, `user 0.00`, `sys 0.00`, consistent with sleeping one second per poll rather than reproducing a CPU spin. A syscall-level `strace` check was attempted but blocked by ptrace restrictions: `PTRACE_TRACEME: Operation not permitted`.

For this refinement, I ran `make distclean` to address the review’s generated-artifact finding, then verified `git status --short --untracked-files=all` and `git diff --stat` are clean.

## Review Pass 2

RESULT: ok

No source or generated-file changes remain in the workspace: `git status --short --untracked-files=all`, `git diff --stat`, and `git diff --name-status` are clean.

The refined response is consistent with the evidence level. It uses `inferred`, lists `None` under `## Git Add Paths`, avoids claiming a reproduced CPython bug, and explains why the strace pattern is more consistent with the `supervisord` application loop than a runtime defect. The validation text includes the project-level `./configure && make` attempt, the optional-module build notes, the bounded timing smoke check, and the ptrace blocker for `strace`.

diagnosis-only report

report

python3.13 likely remains stuck in a busy-poll loop. A diagnosis report and patch proposal were created locally.

state: readycreated: 2026-05-18 13:07 UTCvalidation: ready
Published session

Prompt

## Plan Pass

You are planning a fixer patch before any edits happen.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. The original pre-edit snapshot is available at `./source` if you need to inspect it. For interpreter processes, plan from the script/application entrypoint evidence first and include the runtime only as a second investigation target unless the evidence proves a runtime bug.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround. Inspect the relevant code, nearby callers, project contribution docs, and local helper/compat APIs, but do not edit files in this pass.

Return a short markdown plan with these exact sections:

## Problem
## Evidence Confidence
## Proposed Subject
## Patch Plan
## Risks
## Validation

Classify `## Evidence Confidence` as exactly one of `reproduced`, `observed`, or `inferred`. Use `inferred` only for a no-patch diagnosis/report plan unless you can name the extra evidence you will collect before editing; inferred source patches are blocked by Fixer because they are not pull-request-ready. For `observed` source-patch plans, plan to say in the final `## Issue Connection` that the failure was observed by Fixer and not independently reproduced. If the plan touches authentication, authorization, credentials, cryptography, sandboxing, permissions, or timing/throttling behavior, treat it as security-sensitive: do not plan a source patch unless validation can reproduce the behavior and analyze the security impact; otherwise plan a no-patch diagnosis/report. The plan must explain how the proposed code change addresses the observed issue evidence, call out any prior Fixer patch that should be improved or replaced, reject awkward control flow such as avoidable `goto` if there is a cleaner bounded alternative, name any local helper APIs or maintainer conventions the patch should follow, and keep the intended maintainer-facing explanation clear enough that someone unfamiliar with the local complaint wording can still follow the fix. In `## Validation`, name the reproducible configure/build/test entrypoint you will try from the workspace root before any focused leaf compile or smoke check, and include one bounded independent reproduction attempt for the collected failure signal when it is safe and cheap. Do not plan to claim `reproduced` unless that reproduction command or test can actually show the failure.

## Patch Pass

You are working on a bounded fixer proposal.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. Produce the smallest reasonable patch for the target repository, keep the change upstreamable, prefer the clearest control flow available, and do not keep avoidable `goto` when a simpler structure would read better. Before introducing new file, process, allocation, locking, networking, or platform APIs, inspect nearby code and project contribution docs for existing helpers or compatibility wrappers and use those local patterns unless you can explain why they do not fit. Validate from a reproducible workspace-root entrypoint before falling back to focused leaf commands; if a build or test cannot run, report the exact command, the exact blocker, and any narrower check you ran instead. During validation, also try one bounded independent reproduction of the collected failure signal when it is safe and cheap, such as a failing test, smoke command, perf/strace comparison, or before/after runtime check. Only use `reproduced` if that command or test actually reproduced the failure; otherwise keep `observed` and report the reproduction blocker. The final explanation must connect the observed issue evidence to the actual code change, not just paraphrase the diff. Write like a maintainer is going to read the patch mail cold: explain the bug in plain language, define subsystem-specific jargon the first time you need it, and make the causal story obvious. Explicitly classify evidence confidence as `reproduced`, `observed`, or `inferred`: `reproduced` means you reproduced the failure locally; `observed` means Fixer has direct crash/log/trace evidence but you did not independently reproduce it; `inferred` means the source patch is not pull-request-ready, so do not leave a source diff unless you first gather stronger observed/reproduced evidence; otherwise return a no-patch diagnosis/report. For any source-changing `observed` patch, say explicitly in `## Issue Connection` that the failure was observed by Fixer and not independently reproduced. Security-sensitive areas such as authentication, authorization, credentials, cryptography, sandboxing, permissions, and timing/throttling behavior need reproduced evidence plus explicit security-impact analysis before leaving a source diff; otherwise return a no-patch diagnosis/report for human review. If you introduce non-obvious state translation, index remapping, or backend split logic, add a short source comment that explains the invariant being preserved.

Start by explaining the likely root cause from the collected perf, strace, and /proc evidence. If you cannot land a safe patch, leave a diagnosis that is strong enough for an upstream bug report.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround. 

Keep the change narrowly scoped and summarize validation clearly.

In every authoring pass, your final response must start with `Subject: <single-line git commit subject>` and then include these markdown sections exactly:

## Commit Message
A short upstream-friendly explanation of what changed and why. Write it in plain language that a maintainer can follow without local complaint context. If you use subsystem jargon, define it immediately.

## Evidence Confidence
Exactly one word: `reproduced`, `observed`, or `inferred`. Use `reproduced` only when you reproduced the failure locally with a command or test, and include that command/test in `## Validation`. Use `observed` when Fixer has direct crash/log/trace evidence but you did not independently reproduce it. If `## Git Add Paths` lists source files for an `observed` patch, `## Issue Connection` must explicitly say the failure was observed by Fixer and not independently reproduced. Security-sensitive source changes touching authentication, authorization, credentials, cryptography, sandboxing, permissions, or timing/throttling behavior require reproduced evidence and explicit security-impact analysis; otherwise list `None` under `## Git Add Paths` and write a no-patch diagnosis/report. Use `inferred` for profiler/strace/indirect evidence; inferred responses may be no-patch diagnoses or reports, but inferred source patches are not pull-request-ready until stronger evidence is gathered.

## Issue Connection
Write this as maintainer-facing patch mail, not as local Fixer notes. Cover four things explicitly in readable sentences: the user-visible symptom or the exact collected signal, the code-level cause or the cautious inference from evidence, the specific change you made, and the expected effect. Do not invent a reproducer, command line, crash, or user-visible failure that is not present in the evidence bundle. If the evidence is direct-but-not-reproduced, say it was observed by Fixer and not independently reproduced. If the evidence is indirect and you did not gather stronger evidence, do not leave a source diff; write a no-patch diagnosis/report instead. Include an explicit effect sentence such as `The expected effect is ...`, `This should reduce ...`, or `This prevents ...` for source patches. If the logic is non-obvious in code, mention that you added a short explanatory comment.

## Git Add Paths
List the repo-relative paths that belong in the final patch, one per line. Use `None` only when you intentionally made no source changes. Include intentionally new files, and do not list generated build artifacts.

## Validation
List the checks you ran, or say clearly that you could not run them. Include the independent reproduction command/test and result when `## Evidence Confidence` is `reproduced`; if reproduction was attempted but blocked, name the exact blocker and keep confidence at `observed` or `inferred`.

Before editing, read the plan at `./plan-output.txt` and follow it unless the code proves part of it wrong. If you change course, say so explicitly in the final write-up instead of silently drifting from the plan.

## Review Pass 1 (local metadata check)

Local metadata consistency check

## Refinement Pass 1

You are refining a fixer patch after an explicit code review.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. Read the latest author response at `./patch-output.txt`. Read the review report at `./review-1-output.txt`. This is refinement round 1. The original pre-edit snapshot is available at `./source` if you need to compare the current patch against it. Re-read the planning pass at `./plan-output.txt` before editing. The workspace currently changes these repo-relative paths: Lib/__pycache__/__future__.cpython-313.pyc, Lib/__pycache__/_collections_abc.cpython-313.pyc, Lib/__pycache__/_colorize.cpython-313.pyc, Lib/__pycache__/_compat_pickle.cpython-313.pyc, Lib/__pycache__/_compression.cpython-313.pyc, Lib/__pycache__/_opcode_metadata.cpython-313.pyc, Lib/__pycache__/_sitebuiltins.cpython-313.pyc, Lib/__pycache__/_weakrefset.cpython-313.pyc, Lib/__pycache__/abc.cpython-313.pyc, Lib/__pycache__/argparse.cpython-313.pyc, Lib/__pycache__/ast.cpython-313.pyc, Lib/__pycache__/bz2.cpython-313.pyc, Lib/__pycache__/codecs.cpython-313.pyc, Lib/__pycache__/contextlib.cpython-313.pyc, Lib/__pycache__/contextvars.cpython-313.pyc, Lib/__pycache__/copy.cpython-313.pyc, Lib/__pycache__/copyreg.cpython-313.pyc, Lib/__pycache__/datetime.cpython-313.pyc, Lib/__pycache__/dis.cpython-313.pyc, Lib/__pycache__/enum.cpython-313.pyc, Lib/__pycache__/fnmatch.cpython-313.pyc, Lib/__pycache__/functools.cpython-313.pyc, Lib/__pycache__/genericpath.cpython-313.pyc, Lib/__pycache__/gettext.cpython-313.pyc, Lib/__pycache__/glob.cpython-313.pyc, Lib/__pycache__/heapq.cpython-313.pyc, Lib/__pycache__/inspect.cpython-313.pyc, Lib/__pycache__/io.cpython-313.pyc, Lib/__pycache__/keyword.cpython-313.pyc, Lib/__pycache__/linecache.cpython-313.pyc, Lib/__pycache__/locale.cpython-313.pyc, Lib/__pycache__/lzma.cpython-313.pyc, Lib/__pycache__/numbers.cpython-313.pyc, Lib/__pycache__/opcode.cpython-313.pyc, Lib/__pycache__/operator.cpython-313.pyc, Lib/__pycache__/os.cpython-313.pyc, Lib/__pycache__/posixpath.cpython-313.pyc, Lib/__pycache__/reprlib.cpython-313.pyc, Lib/__pycache__/selectors.cpython-313.pyc, Lib/__pycache__/shutil.cpython-313.pyc, Lib/__pycache__/signal.cpython-313.pyc, Lib/__pycache__/site.cpython-313.pyc, Lib/__pycache__/socket.cpython-313.pyc, Lib/__pycache__/ssl.cpython-313.pyc, Lib/__pycache__/stat.cpython-313.pyc, Lib/__pycache__/string.cpython-313.pyc, Lib/__pycache__/struct.cpython-313.pyc, Lib/__pycache__/subprocess.cpython-313.pyc, Lib/__pycache__/textwrap.cpython-313.pyc, Lib/__pycache__/threading.cpython-313.pyc, Lib/__pycache__/token.cpython-313.pyc, Lib/__pycache__/tokenize.cpython-313.pyc, Lib/__pycache__/traceback.cpython-313.pyc, Lib/__pycache__/types.cpython-313.pyc, Lib/__pycache__/typing.cpython-313.pyc, Lib/__pycache__/warnings.cpython-313.pyc, Lib/__pycache__/weakref.cpython-313.pyc, Lib/asyncio/__pycache__/__init__.cpython-313.pyc, Lib/asyncio/__pycache__/base_events.cpython-313.pyc, Lib/asyncio/__pycache__/base_futures.cpython-313.pyc, Lib/asyncio/__pycache__/base_subprocess.cpython-313.pyc, Lib/asyncio/__pycache__/base_tasks.cpython-313.pyc, Lib/asyncio/__pycache__/constants.cpython-313.pyc, Lib/asyncio/__pycache__/coroutines.cpython-313.pyc, Lib/asyncio/__pycache__/events.cpython-313.pyc, Lib/asyncio/__pycache__/exceptions.cpython-313.pyc, Lib/asyncio/__pycache__/format_helpers.cpython-313.pyc, Lib/asyncio/__pycache__/futures.cpython-313.pyc, Lib/asyncio/__pycache__/locks.cpython-313.pyc, Lib/asyncio/__pycache__/log.cpython-313.pyc, Lib/asyncio/__pycache__/mixins.cpython-313.pyc, Lib/asyncio/__pycache__/protocols.cpython-313.pyc, Lib/asyncio/__pycache__/queues.cpython-313.pyc, Lib/asyncio/__pycache__/runners.cpython-313.pyc, Lib/asyncio/__pycache__/selector_events.cpython-313.pyc, Lib/asyncio/__pycache__/sslproto.cpython-313.pyc, Lib/asyncio/__pycache__/staggered.cpython-313.pyc, Lib/asyncio/__pycache__/streams.cpython-313.pyc, Lib/asyncio/__pycache__/subprocess.cpython-313.pyc, Lib/asyncio/__pycache__/taskgroups.cpython-313.pyc, Lib/asyncio/__pycache__/tasks.cpython-313.pyc, Lib/asyncio/__pycache__/threads.cpython-313.pyc, Lib/asyncio/__pycache__/timeouts.cpython-313.pyc, Lib/asyncio/__pycache__/transports.cpython-313.pyc, Lib/asyncio/__pycache__/trsock.cpython-313.pyc, Lib/asyncio/__pycache__/unix_events.cpython-313.pyc, Lib/collections/__pycache__/__init__.cpython-313.pyc, Lib/concurrent/__pycache__/__init__.cpython-313.pyc, Lib/concurrent/futures/__pycache__/__init__.cpython-313.pyc, Lib/concurrent/futures/__pycache__/_base.cpython-313.pyc, Lib/encodings/__pycache__/__init__.cpython-313.pyc, Lib/encodings/__pycache__/aliases.cpython-313.pyc, Lib/encodings/__pycache__/ascii.cpython-313.pyc, Lib/encodings/__pycache__/utf_8.cpython-313.pyc, Lib/importlib/__pycache__/__init__.cpython-313.pyc, Lib/importlib/__pycache__/_abc.cpython-313.pyc, Lib/logging/__pycache__/__init__.cpython-313.pyc, Lib/pathlib/__pycache__/__init__.cpython-313.pyc, Lib/pathlib/__pycache__/_abc.cpython-313.pyc, Lib/pathlib/__pycache__/_local.cpython-313.pyc, Lib/re/__pycache__/__init__.cpython-313.pyc, Lib/re/__pycache__/_casefix.cpython-313.pyc, Lib/re/__pycache__/_compiler.cpython-313.pyc, Lib/re/__pycache__/_constants.cpyth

[truncated 29270 bytes]

Response

## Plan Pass

## Problem
Fixer observed `/usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf` under `/usr/bin/python3.13` with repeated `wait4(-1, ..., WNOHANG) = ECHILD` followed by `poll(..., 1000) = 0`. The sampled process state was sleeping in `poll_schedule_timeout`, so the evidence does not currently show a CPython tight busy loop or a runtime API defect.

## Evidence Confidence
inferred

## Proposed Subject
No CPython source patch yet: diagnose this as likely application-level `supervisord` event-loop polling unless an independent reproduction ties the behavior to CPython’s `select.poll`, `selectors`, `subprocess`, or wait handling.

## Patch Plan
Do not edit CPython in this pass. The command-line evidence names `supervisord` as the script/application entrypoint, while the runtime appears only as the interpreter hosting it.

Relevant CPython code checked: `Modules/selectmodule.c` uses `_PyTime_*` helpers, `Py_BEGIN_ALLOW_THREADS`, EINTR retry handling, and avoids concurrent `poll()` invocation; `Lib/selectors.py` intentionally rounds positive poll timeouts up to milliseconds; `Lib/subprocess.py` uses `_waitpid_lock` around nonblocking `waitpid(..., WNOHANG)`. No local CPython helper was found that would obviously be missing from the observed path.

Contribution/style docs checked: top-level `README.rst` points to the CPython Developer Guide and documents `./configure`, `make`, and `make test`; Debian `README.source` says packaging patches use quilt. Debian patches are present, but I found no prior Fixer patch for this finding to improve or replace.

If later evidence shows a CPython bug, keep any patch upstream-style in the CPython subsystem, avoid awkward control flow such as avoidable `goto`, follow existing `_PyTime_*`, `PyErr_SetFromErrno`, EINTR, and GIL-release conventions, and add a focused regression test only for a demonstrated runtime behavior.

## Risks
A CPython patch based only on this bundle would likely “fix” normal supervisor behavior: a one-second timeout loop that checks for child exits. Changing `select.poll`, `selectors`, or `subprocess` without a runtime reproducer risks breaking documented timeout and child-process semantics.

Because this touches timing/polling behavior, any source patch would need reproducible behavior and impact analysis first. Current evidence is profiler/trace-only and does not justify a security-sensitive timing change.

## Validation
Before any justified edit, try the project-level entrypoint from the workspace root:

```sh
./configure && make
```

If that fails due to missing dependencies or generated files, record the exact failure, then use the narrowest relevant check, likely a focused compile of `Modules/selectmodule.c` through the project build target or a targeted `make test TESTOPTS="-v test_select test_selectors test_subprocess"` after a successful build.

Bounded independent evidence attempt before editing: run a local Python smoke check that performs `os.waitpid(-1, os.WNOHANG)` with no children and `select.poll().poll(1000)` on an idle fd under `strace -e poll,wait4` to compare the syscall cadence. This can show whether the collected signal is ordinary CPython API behavior, but it should not be claimed as reproducing the reported runaway CPU unless it actually demonstrates sustained CPU usage.

## Patch Pass

Subject: Diagnose supervisord poll loop without CPython changes

## Commit Message
No source change is included. The collected evidence shows `supervisord` running under Python and repeatedly doing a nonblocking child-status check followed by a one-second blocking `poll()`. That pattern is consistent with an application event loop, not with a demonstrated CPython runtime bug.

## Evidence Confidence
inferred

## Issue Connection
The likely root cause from the collected perf, strace, and `/proc` evidence is that `supervisord` is waking once per second to check for child processes, then blocking again in `poll()`. The exact collected signal was repeated `wait4(-1, ..., WNOHANG) = -1 ECHILD` followed by `poll(..., 1000) = 0` taking about `1.001` seconds, while `/proc` reported the sampled thread in sleeping state `S` and kernel wait channel `poll_schedule_timeout`.

The cautious code-level inference is that the trace is showing normal Python-exposed OS behavior rather than a CPython busy-poll defect. I inspected the relevant CPython paths: `Modules/selectmodule.c` uses `_PyTime_*` deadline helpers, releases the GIL with `Py_BEGIN_ALLOW_THREADS`, and only retries `poll()` on `EINTR`; `Lib/selectors.py` rounds positive poll timeouts up to milliseconds; `Lib/subprocess.py` protects nonblocking child polling with `_waitpid_lock`. No relevant missing local helper was found.

I made no source change because this is timing/polling behavior and the evidence does not reproduce a CPython bug. The expected effect is that no speculative runtime behavior change is proposed until stronger evidence ties the CPU report to CPython rather than to the application loop.

I followed the saved plan at `plan-output.txt`; the code and validation did not prove a reason to change course.

## Git Add Paths
None

## Validation
Checked contribution/style guidance and subsystem conventions: top-level `README.rst` points to the CPython Developer Guide and documents `./configure`, `make`, and `make test`; `debian/README.source` says Debian packaging uses quilt. The relevant subsystem uses `_PyTime_*`, `Py_BEGIN_ALLOW_THREADS`, `PyErr_SetFromErrno`, selector timeout rounding, and `_waitpid_lock`.

Ran project-level build entrypoint from workspace root:

```sh
./configure && make
```

Result: exited `0`. Build reported optional `_dbm`, `_gdbm`, and `_tkinter` missing, and `_ssl` failed import with `undefined symbol: TLSv1_method`, but the command completed successfully.

Attempted bounded independent syscall reproduction:

```sh
strace -tt -e trace=poll,wait4 ./python -S - ...
```

Result: blocked by sandbox ptrace restrictions: `PTRACE_TRACEME: Operation not permitted` and `ptrace(PTRACE_SEIZE, 5): Operation not permitted`.

Ran no-ptrace timing smoke check with the same Python-level operations:

```sh
./python -S - <<'PY'
import os, select, time
r, w = os.pipe()
try:
    p = select.poll()
    p.register(r, select.POLLIN | select.POLLPRI | select.POLLHUP)
    wall_start = time.monotonic()
    cpu_start = time.process_time()
    echild = 0
    for _ in range(5):
        try:
            os.waitpid(-1, os.WNOHANG)
        except ChildProcessError:
            echild += 1
        p.poll(1000)
    print(f"echild={echild} wall={time.monotonic() - wall_start:.3f} cpu={time.process_time() - cpu_start:.6f}")
finally:
    os.close(r)
    os.close(w)
PY
```

Result: `echild=5 wall=5.005 cpu=0.000199`, which supports the diagnosis that the observed one-second poll cadence blocks rather than spins.

## Review Pass 1 (local metadata check)

RESULT: fix-needed

## Findings
1. Patch metadata drift: the workspace currently changes `Lib/__pycache__/__future__.cpython-313.pyc`, `Lib/__pycache__/_collections_abc.cpython-313.pyc`, `Lib/__pycache__/_colorize.cpython-313.pyc`, `Lib/__pycache__/_compat_pickle.cpython-313.pyc`, `Lib/__pycache__/_compression.cpython-313.pyc`, `Lib/__pycache__/_opcode_metadata.cpython-313.pyc`, `Lib/__pycache__/_sitebuiltins.cpython-313.pyc`, `Lib/__pycache__/_weakrefset.cpython-313.pyc`, `Lib/__pycache__/abc.cpython-313.pyc`, `Lib/__pycache__/argparse.cpython-313.pyc`, `Lib/__pycache__/ast.cpython-313.pyc`, `Lib/__pycache__/bz2.cpython-313.pyc`, `Lib/__pycache__/codecs.cpython-313.pyc`, `Lib/__pycache__/contextlib.cpython-313.pyc`, `Lib/__pycache__/contextvars.cpython-313.pyc`, `Lib/__pycache__/copy.cpython-313.pyc`, `Lib/__pycache__/copyreg.cpython-313.pyc`, `Lib/__pycache__/datetime.cpython-313.pyc`, `Lib/__pycache__/dis.cpython-313.pyc`, `Lib/__pycache__/enum.cpython-313.pyc`, `Lib/__pycache__/fnmatch.cpython-313.pyc`, `Lib/__pycache__/functools.cpython-313.pyc`, `Lib/__pycache__/genericpath.cpython-313.pyc`, `Lib/__pycache__/gettext.cpython-313.pyc`, `Lib/__pycache__/glob.cpython-313.pyc`, `Lib/__pycache__/heapq.cpython-313.pyc`, `Lib/__pycache__/inspect.cpython-313.pyc`, `Lib/__pycache__/io.cpython-313.pyc`, `Lib/__pycache__/keyword.cpython-313.pyc`, `Lib/__pycache__/linecache.cpython-313.pyc`, `Lib/__pycache__/locale.cpython-313.pyc`, `Lib/__pycache__/lzma.cpython-313.pyc`, `Lib/__pycache__/numbers.cpython-313.pyc`, `Lib/__pycache__/opcode.cpython-313.pyc`, `Lib/__pycache__/operator.cpython-313.pyc`, `Lib/__pycache__/os.cpython-313.pyc`, `Lib/__pycache__/posixpath.cpython-313.pyc`, `Lib/__pycache__/reprlib.cpython-313.pyc`, `Lib/__pycache__/selectors.cpython-313.pyc`, `Lib/__pycache__/shutil.cpython-313.pyc`, `Lib/__pycache__/signal.cpython-313.pyc`, `Lib/__pycache__/site.cpython-313.pyc`, `Lib/__pycache__/socket.cpython-313.pyc`, `Lib/__pycache__/ssl.cpython-313.pyc`, `Lib/__pycache__/stat.cpython-313.pyc`, `Lib/__pycache__/string.cpython-313.pyc`, `Lib/__pycache__/struct.cpython-313.pyc`, `Lib/__pycache__/subprocess.cpython-313.pyc`, `Lib/__pycache__/textwrap.cpython-313.pyc`, `Lib/__pycache__/threading.cpython-313.pyc`, `Lib/__pycache__/token.cpython-313.pyc`, `Lib/__pycache__/tokenize.cpython-313.pyc`, `Lib/__pycache__/traceback.cpython-313.pyc`, `Lib/__pycache__/types.cpython-313.pyc`, `Lib/__pycache__/typing.cpython-313.pyc`, `Lib/__pycache__/warnings.cpython-313.pyc`, `Lib/__pycache__/weakref.cpython-313.pyc`, `Lib/asyncio/__pycache__/__init__.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_events.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_futures.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_subprocess.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_tasks.cpython-313.pyc`, `Lib/asyncio/__pycache__/constants.cpython-313.pyc`, `Lib/asyncio/__pycache__/coroutines.cpython-313.pyc`, `Lib/asyncio/__pycache__/events.cpython-313.pyc`, `Lib/asyncio/__pycache__/exceptions.cpython-313.pyc`, `Lib/asyncio/__pycache__/format_helpers.cpython-313.pyc`, `Lib/asyncio/__pycache__/futures.cpython-313.pyc`, `Lib/asyncio/__pycache__/locks.cpython-313.pyc`, `Lib/asyncio/__pycache__/log.cpython-313.pyc`, `Lib/asyncio/__pycache__/mixins.cpython-313.pyc`, `Lib/asyncio/__pycache__/protocols.cpython-313.pyc`, `Lib/asyncio/__pycache__/queues.cpython-313.pyc`, `Lib/asyncio/__pycache__/runners.cpython-313.pyc`, `Lib/asyncio/__pycache__/selector_events.cpython-313.pyc`, `Lib/asyncio/__pycache__/sslproto.cpython-313.pyc`, `Lib/asyncio/__pycache__/staggered.cpython-313.pyc`, `Lib/asyncio/__pycache__/streams.cpython-313.pyc`, `Lib/asyncio/__pycache__/subprocess.cpython-313.pyc`, `Lib/asyncio/__pycache__/taskgroups.cpython-313.pyc`, `Lib/asyncio/__pycache__/tasks.cpython-313.pyc`, `Lib/asyncio/__pycache__/threads.cpython-313.pyc`, `Lib/asyncio/__pycache__/timeouts.cpython-313.pyc`, `Lib/asyncio/__pycache__/transports.cpython-313.pyc`, `Lib/asyncio/__pycache__/trsock.cpython-313.pyc`, `Lib/asyncio/__pycache__/unix_events.cpython-313.pyc`, `Lib/collections/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/futures/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/futures/__pycache__/_base.cpython-313.pyc`, `Lib/encodings/__pycache__/__init__.cpython-313.pyc`, `Lib/encodings/__pycache__/aliases.cpython-313.pyc`, `Lib/encodings/__pycache__/ascii.cpython-313.pyc`, `Lib/encodings/__pycache__/utf_8.cpython-313.pyc`, `Lib/importlib/__pycache__/__init__.cpython-313.pyc`, `Lib/importlib/__pycache__/_abc.cpython-313.pyc`, `Lib/logging/__pycache__/__init__.cpython-313.pyc`, `Lib/pathlib/__pycache__/__init__.cpython-313.pyc`, `Lib/pathlib/__pycache__/_abc.cpython-313.pyc`, `Lib/pathlib/__pycache__/_local.cpython-313.pyc`, `Lib/re/__pycache__/__init__.cpython-313.pyc`, `Lib/re/__pycache__/_casefix.cpython-313.pyc`, `Lib/re/__pycache__/_compiler.cpython-313.pyc`, `Lib/re/__pycache__/_constants.cpython-313.pyc`, `Lib/re/__pycache__/_parser.cpython-313.pyc`, `Lib/sysconfig/__pycache__/__init__.cpython-313.pyc`, `Lib/sysconfig/__pycache__/__main__.cpython-313.pyc`, `Lib/xml/__pycache__/__init__.cpython-313.pyc`, `Lib/xml/etree/__pycache__/ElementPath.cpython-313.pyc`, `Lib/xml/etree/__pycache__/__init__.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/__init__.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/_common.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/_tzpath.cpython-313.pyc`, `Makefile`, `Makefile.pre`, `Misc/python-config.sh`, `Misc/python-embed.pc`, `Misc/python.pc`, `Modules/Setup.bootstrap`, `Modules/Setup.local`, `Modules/Setup.stdlib`, `Modules/_abc.o`, `Modules/_asyncio.cpython-313-x86_64-linux-gnu.so`, `Modules/_asynciomodule.o`, `Modules/_bisect.cpython-313-x86_64-linux-gnu.so`, `Modules/_bisectmodule.o`, `Modules/_blake2.cpython-313-x86_64-linux-gnu.so`, `Modules/_blake2/blake2b_impl.o`, `Modules/_blake2/blake2module.o`, `Modules/_blake2/blake2s_impl.o`, `Modules/_bz2.cpython-313-x86_64-linux-gnu.so`, `Modules/_bz2module.o`, `Modules/_codecs_cn.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_hk.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_iso2022.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_jp.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_kr.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_tw.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecsmodule.o`, `Modules/_collectionsmodule.o`, `Modules/_contextvars.cpython-313-x86_64-linux-gnu.so`, `Modules/_contextvarsmodule.o`, `Modules/_csv.cpython-313-x86_64-linux-gnu.so`, `Modules/_csv.o`, `Modules/_ctypes.cpython-313-x86_64-linux-gnu.so`, `Modules/_ctypes/_ctypes.o`, `Modules/_ctypes/_ctypes_test.o`, `Modules/_ctypes/callbacks.o`, `Modules/_ctypes/callproc.o`, `Modules/_ctypes/cfield.o`, `Modules/_ctypes/stgdict.o`, `Modules/_ctypes_test.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses_panel.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses_panel.o`, `Modules/_cursesmodule.o`, `Modules/_datetime.cpython-313-x86_64-linux-gnu.so`, `Modules/_datetimemodule.o`, `Modules/_decimal.cpython-313-x86_64-linux-gnu.so`, `Modules/_decimal/_decimal.o`, `Modules/_decimal/libmpdec/basearith.o`, `Modules/_decimal/libmpdec/constants.o`, `Modules/_decimal/libmpdec/context.o`, `Modules/_decimal/libmpdec/convolute.o`, `Modules/_decimal/libmpdec/crt.o`, `Modules/_decimal/libmpdec/difradix2.o`, `Modules/_decimal/libmpdec/fnt.o`, `Modules/_decimal/libmpdec/fourstep.o`, `Modules/_decimal/libmpdec/io.o`, `Modules/_decimal/libmpdec/libmpdec.a`, `Modules/_decimal/libmpdec/mpalloc.o`, `Modules/_decimal/libmpdec/mpdecimal.o`, `Modules/_decimal/libmpdec/numbertheory.o`, `Modules/_decimal/libmpdec/sixstep.o`, `Modules/_decimal/libmpdec/transpose.o`, `Modules/_elementtree.cpython-313-x86_64-linux-gnu.so`, `Modules/_elementtree.o`, `Modules/_functoolsmodule.o`, `Modules/_hacl/Hacl_Hash_MD5.o`, `Modules/_hacl/Hacl_Hash_SHA1.o`, `Modules/_hacl/Hacl_Hash_SHA2.o`, `Modules/_hacl/Hacl_Hash_SHA3.o`, `Modules/_hacl/libHacl_Hash_SHA2.a`, `Modules/_hashlib.cpython-313-x86_64-linux-gnu.so`, `Modules/_hashopenssl.o`, `Modules/_heapq.cpython-313-x86_64-linux-gnu.so`, `Modules/_heapqmodule.o`, `Modules/_interpchannels.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpchannelsmodule.o`, `Modules/_interpqueues.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpqueuesmodule.o`, `Modules/_interpreters.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpretersmodule.o`, `Modules/_io/_iomodule.o`, `Modules/_io/bufferedio.o`, `Modules/_io/bytesio.o`, `Modules/_io/fileio.o`, `Modules/_io/iobase.o`, `Modules/_io/stringio.o`, `Modules/_io/textio.o`, `Modules/_json.cpython-313-x86_64-linux-gnu.so`, `Modules/_json.o`, `Modules/_localemodule.o`, `Modules/_lsprof.cpython-313-x86_64-linux-gnu.so`, `Modules/_lsprof.o`, `Modules/_lzma.cpython-313-x86_64-linux-gnu.so`, `Modules/_lzmamodule.o`, `Modules/_md5.cpython-313-x86_64-linux-gnu.so`, `Modules/_multibytecodec.cpython-313-x86_64-linux-gnu.so`, `Modules/_multiprocessing.cpython-313-x86_64-linux-gnu.so`, `Modules/_multiprocessing/multiprocessing.o`, `Modules/_multiprocessing/posixshmem.o`, `Modules/_multiprocessing/semaphore.o`, `Modules/_opcode.cpython-313-x86_64-linux-gnu.so`, `Modules/_opcode.o`, `Modules/_operator.o`, `Modules/_pickle.cpython-313-x86_64-linux-gnu.so`, `Modules/_pickle.o`, `Modules/_posixshmem.cpython-313-x86_64-linux-gnu.so`, `Modules/_posixsubprocess.cpython-313-x86_64-linux-gnu.so`, `Modules/_posixsubprocess.o`, `Modules/_queue.cpython-313-x86_64-linux-gnu.so`, `Modules/_queuemodule.o`, `Modules/_random.cpython-313-x86_64-linux-gnu.so`, `Modules/_randommodule.o`, `Modules/_sha1.cpython-313-x86_64-linux-gnu.so`, `Modules/_sha2.cpython-313-x86_64-linux-gnu.so`, `Modules/_sha3.cpython-313-x86_64-linux-gnu.so`, `Modules/_socket.cpython-313-x86_64-linux-gnu.so`, `Modules/_sqlite/blob.o`, `Modules/_sqlite/connection.o`, `Modules/_sqlite/cursor.o`, `Modules/_sqlite/microprotocols.o`, `Modules/_sqlite/module.o`, `Modules/_sqlite/prepare_protocol.o`, `Modules/_sqlite/row.o`, `Modules/_sqlite/statement.o`, `Modules/_sqlite/util.o`, `Modules/_sqlite3.cpython-313-x86_64-linux-gnu.so`, `Modules/_sre/sre.o`, `Modules/_ssl.o`, `Modules/_ssl_failed.cpython-313-x86_64-linux-gnu.so`, `Modules/_stat.o`, `Modules/_statistics.cpython-313-x86_64-linux-gnu.so`, `Modules/_statisticsmodule.o`, `Modules/_struct.cpython-313-x86_64-linux-gnu.so`, `Modules/_struct.o`, `Modules/_suggestions.o`, `Modules/_sysconfig.o`, `Modules/_testbuffer.cpython-313-x86_64-linux-gnu.so`, `Modules/_testbuffer.o`, `Modules/_testcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testcapi/abstract.o`, `Modules/_testcapi/buffer.o`, `Modules/_testcapi/bytes.o`, `Modules/_testcapi/code.o`, `Modules/_testcapi/codec.o`, `Modules/_testcapi/complex.o`, `Modules/_testcapi/datetime.o`, `Modules/_testcapi/dict.o`, `Modules/_testcapi/docstring.o`, `Modules/_testcapi/exceptions.o`, `Modules/_testcapi/file.o`, `Modules/_testcapi/float.o`, `Modules/_testcapi/gc.o`, `Modules/_testcapi/getargs.o`, `Modules/_testcapi/hash.o`, `Modules/_testcapi/heaptype.o`, `Modules/_testcapi/immortal.o`, `Modules/_testcapi/list.o`, `Modules/_testcapi/long.o`, `Modules/_testcapi/mem.o`, `Modules/_testcapi/monitoring.o`, `Modules/_testcapi/numbers.o`, `Modules/_testcapi/object.o`, `Modules/_testcapi/pyatomic.o`, `Modules/_testcapi/run.o`, `Modules/_testcapi/set.o`, `Modules/_testcapi/structmember.o`, `Modules/_testcapi/time.o`, `Modules/_testcapi/tuple.o`, `Modules/_testcapi/unicode.o`, `Modules/_testcapi/vectorcall.o`, `Modules/_testcapi/watchers.o`, `Modules/_testcapimodule.o`, `Modules/_testclinic.cpython-313-x86_64-linux-gnu.so`, `Modules/_testclinic.o`, `Modules/_testclinic_limited.cpython-313-x86_64-linux-gnu.so`, `Modules/_testclinic_limited.o`, `Modules/_testexternalinspection.cpython-313-x86_64-linux-gnu.so`, `Modules/_testexternalinspection.o`, `Modules/_testimportmultiple.cpython-313-x86_64-linux-gnu.so`, `Modules/_testimportmultiple.o`, `Modules/_testinternalcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testinternalcapi.o`, `Modules/_testinternalcapi/pytime.o`, `Modules/_testinternalcapi/set.o`, `Modules/_testinternalcapi/test_critical_sections.o`, `Modules/_testinternalcapi/test_lock.o`, `Modules/_testlimitedcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testlimitedcapi.o`, `Modules/_testlimitedcapi/abstract.o`, `Modules/_testlimitedcapi/bytearray.o`, `Modules/_testlimitedcapi/bytes.o`, `Modules/_testlimitedcapi/complex.o`, `Modules/_testlimitedcapi/dict.o`, `Modules/_testlimitedcapi/eval.o`, `Modules/_testlimitedcapi/file.o`, `Modules/_testlimitedcapi/float.o`, `Modules/_testlimitedcapi/heaptype_relative.o`, `Modules/_testlimitedcapi/import.o`, `Modules/_testlimitedcapi/list.o`, `Modules/_testlimitedcapi/long.o`, `Modules/_testlimitedcapi/object.o`, `Modules/_testlimitedcapi/pyos.o`, `Modules/_testlimitedcapi/set.o`, `Modules/_testlimitedcapi/sys.o`, `Modules/_testlimitedcapi/tuple.o`, `Modules/_testlimitedcapi/unicode.o`, `Modules/_testlimitedcapi/vectorcall_limited.o`, `Modules/_testmultiphase.cpython-313-x86_64-linux-gnu.so`, `Modules/_testmultiphase.o`, `Modules/_testsinglephase.cpython-313-x86_64-linux-gnu.so`, `Modules/_testsinglephase.o`, `Modules/_threadmodule.o`, `Modules/_tracemalloc.o`, `Modules/_typingmodule.o`, `Modules/_uuid.cpython-313-x86_64-linux-gnu.so`, `Modules/_uuidmodule.o`, `Modules/_weakref.o`, `Modules/_xxtestfuzz.cpython-313-x86_64-linux-gnu.so`, `Modules/_xxtestfuzz/_xxtestfuzz.o`, `Modules/_xxtestfuzz/fuzzer.o`, `Modules/_zoneinfo.cpython-313-x86_64-linux-gnu.so`, `Modules/_zoneinfo.o`, `Modules/array.cpython-313-x86_64-linux-gnu.so`, `Modules/arraymodule.o`, `Modules/atexitmodule.o`, `Modules/binascii.cpython-313-x86_64-linux-gnu.so`, `Modules/binascii.o`, `Modules/cjkcodecs/_codecs_cn.o`, `Modules/cjkcodecs/_codecs_hk.o`, `Modules/cjkcodecs/_codecs_iso2022.o`, `Modules/cjkcodecs/_codecs_jp.o`, `Modules/cjkcodecs/_codecs_kr.o`, `Modules/cjkcodecs/_codecs_tw.o`, `Modules/cjkcodecs/multibytecodec.o`, `Modules/cmath.cpython-313-x86_64-linux-gnu.so`, `Modules/cmathmodule.o`, `Modules/config.c`, `Modules/config.o`, `Modules/errnomodule.o`, `Modules/expat/libexpat.a`, `Modules/expat/xmlparse.o`, `Modules/expat/xmlrole.o`, `Modules/expat/xmltok.o`, `Modules/faulthandler.o`, `Modules/fcntl.cpython-313-x86_64-linux-gnu.so`, `Modules/fcntlmodule.o`, `Modules/gcmodule.o`, `Modules/getbuildinfo.o`, `Modules/getpath.o`, `Modules/getpath_noop.o`, `Modules/grp.cpython-313-x86_64-linux-gnu.so`, `Modules/grpmodule.o`, `Modules/itertoolsmodule.o`, `Modules/ld_so_aix`, `Modules/main.o`, `Modules/math.cpython-313-x86_64-linux-gnu.so`, `Modules/mathmodule.o`, `Modules/md5module.o`, `Modules/mmap.cpython-313-x86_64-linux-gnu.so`, `Modules/mmapmodule.o`, `Modules/posixmodule.o`, `Modules/pwdmodule.o`, `Modules/pyexpat.cpython-313-x86_64-linux-gnu.so`, `Modules/pyexpat.o`, `Modules/readline.cpython-313-x86_64-linux-gnu.so`, `Modules/readline.o`, `Modules/resource.cpython-313-x86_64-linux-gnu.so`, `Modules/resource.o`, `Modules/rotatingtree.o`, `Modules/select.cpython-313-x86_64-linux-gnu.so`, `Modules/selectmodule.o`, `Modules/sha1module.o`, `Modules/sha2module.o`, `Modules/sha3module.o`, `Modules/signalmodule.o`, `Modules/socketmodule.o`, `Modules/symtablemodule.o`, `Modules/syslog.cpython-313-x86_64-linux-gnu.so`, `Modules/syslogmodule.o`, `Modules/termios.cpython-313-x86_64-linux-gnu.so`, `Modules/termios.o`, `Modules/timemodule.o`, `Modules/unicodedata.cpython-313-x86_64-linux-gnu.so`, `Modules/unicodedata.o`, `Modules/xxlimited.cpython-313-x86_64-linux-gnu.so`, `Modules/xxlimited.o`, `Modules/xxlimited_35.cpython-313-x86_64-linux-gnu.so`, `Modules/xxlimited_35.o`, `Modules/xxsubtype.cpython-313-x86_64-linux-gnu.so`, `Modules/xxsubtype.o`, `Modules/zlib.cpython-313-x86_64-linux-gnu.so`, `Modules/zlibmodule.o`, `Objects/abstract.o`, `Objects/boolobject.o`, `Objects/bytearrayobject.o`, `Objects/bytes_methods.o`, `Objects/bytesobject.o`, `Objects/call.o`, `Objects/capsule.o`, `Objects/cellobject.o`, `Objects/classobject.o`, `Objects/codeobject.o`, `Objects/complexobject.o`, `Objects/descrobject.o`, `Objects/dictobject.o`, `Objects/enumobject.o`, `Objects/exceptions.o`, `Objects/fileobject.o`, `Objects/floatobject.o`, `Objects/frameobject.o`, `Objects/funcobject.o`, `Objects/genericaliasobject.o`, `Objects/genobject.o`, `Objects/iterobject.o`, `Objects/listobject.o`, `Objects/longobject.o`, `Objects/memoryobject.o`, `Objects/methodobject.o`, `Objects/moduleobject.o`, `Objects/namespaceobject.o`, `Objects/object.o`, `Objects/obmalloc.o`, `Objects/odictobject.o`, `Objects/picklebufobject.o`, `Objects/rangeobject.o`, `Objects/setobject.o`, `Objects/sliceobject.o`, `Objects/structseq.o`, `Objects/tupleobject.o`, `Objects/typeobject.o`, `Objects/typevarobject.o`, `Objects/unicodectype.o`, `Objects/unicodeobject.o`, `Objects/unionobject.o`, `Objects/weakrefobject.o`, `Parser/action_helpers.o`, `Parser/lexer/buffer.o`, `Parser/lexer/lexer.o`, `Parser/lexer/state.o`, `Parser/myreadline.o`, `Parser/parser.o`, `Parser/peg_api.o`, `Parser/pegen.o`, `Parser/pegen_errors.o`, `Parser/string_parser.o`, `Parser/token.o`, `Parser/tokenizer/file_tokenizer.o`, `Parser/tokenizer/helpers.o`, `Parser/tokenizer/readline_tokenizer.o`, `Parser/tokenizer/string_tokenizer.o`, `Parser/tokenizer/utf8_tokenizer.o`, `Programs/_bootstrap_python.o`, `Programs/_freeze_module`, `Programs/_freeze_module.o`, `Programs/_testembed`, `Programs/_testembed.o`, `Programs/python.o`, `Python/Python-ast.o`, `Python/Python-tokenize.o`, `Python/_warnings.o`, `Python/asdl.o`, `Python/asm_trampoline.o`, `Python/assemble.o`, `Python/ast.o`, `Python/ast_opt.o`, `Python/ast_unparse.o`, `Python/bltinmodule.o`, `Python/bootstrap_hash.o`, `Python/brc.o`, `Python/ceval.o`, `Python/ceval_gil.o`, `Python/codecs.o`, `Python/compile.o`, `Python/context.o`, `Python/critical_section.o`, `Python/crossinterp.o`, `Python/dtoa.o`, `Python/dynamic_annotations.o`, `Python/dynload_shlib.o`, `Python/errors.o`, `Python/fileutils.o`, `Python/flowgraph.o`, `Python/formatter_unicode.o`, `Python/frame.o`, `Python/frozen.o`, `Python/frozen_modules/__hello__.h`, `Python/frozen_modules/__phello__.h`, `Python/frozen_modules/__phello__.ham.eggs.h`, `Python/frozen_modules/__phello__.ham.h`, `Python/frozen_modules/__phello__.spam.h`, `Python/frozen_modules/_collections_abc.h`, `Python/frozen_modules/_sitebuiltins.h`, `Python/frozen_modules/abc.h`, `Python/frozen_modules/codecs.h`, `Python/frozen_modules/frozen_only.h`, `Python/frozen_modules/genericpath.h`, `Python/frozen_modules/getpath.h`, `Python/frozen_modules/importlib._bootstrap.h`, `Python/frozen_modules/importlib._bootstrap_external.h`, `Python/frozen_modules/importlib.machinery.h`, `Python/frozen_modules/importlib.util.h`, `Python/frozen_modules/io.h`, `Python/frozen_modules/ntpath.h`, `Python/frozen_modules/os.h`, `Python/frozen_modules/posixpath.h`, `Python/frozen_modules/runpy.h`, `Python/frozen_modules/site.h`, `Python/frozen_modules/stat.h`, `Python/frozen_modules/zipimport.h`, `Python/frozenmain.o`, `Python/future.o`, `Python/gc.o`, `Python/gc_free_threading.o`, `Python/gc_gil.o`, `Python/getargs.o`, `Python/getcompiler.o`, `Python/getcopyright.o`, `Python/getopt.o`, `Python/getplatform.o`, `Python/getversion.o`, `Python/hamt.o`, `Python/hashtable.o`, `Python/import.o`, `Python/importdl.o`, `Python/initconfig.o`, `Python/instruction_sequence.o`, `Python/instrumentation.o`, `Python/interpconfig.o`, `Python/intrinsics.o`, `Python/jit.o`, `Python/legacy_tracing.o`, `Python/lock.o`, `Python/marshal.o`, `Python/modsupport.o`, `Python/mysnprintf.o`, `Python/mystrtoul.o`, `Python/object_stack.o`, `Python/optimizer.o`, `Python/optimizer_analysis.o`, `Python/optimizer_symbols.o`, `Python/parking_lot.o`, `Python/pathconfig.o`, `Python/perf_jit_trampoline.o`, `Python/perf_trampoline.o`, `Python/preconfig.o`, `Python/pyarena.o`, `Python/pyctype.o`, `Python/pyfpe.o`, `Python/pyhash.o`, `Python/pylifecycle.o`, `Python/pymath.o`, `Python/pystate.o`, `Python/pystrcmp.o`, `Python/pystrhex.o`, `Python/pystrtod.o`, `Python/pythonrun.o`, `Python/pytime.o`, `Python/qsbr.o`, `Python/specialize.o`, `Python/structmember.o`, `Python/suggestions.o`, `Python/symtable.o`, `Python/sysmodule.o`, `Python/thread.o`, `Python/traceback.o`, `Python/tracemalloc.o`, `_bootstrap_python`, `build/lib.linux-x86_64-3.13/__pycache__/_sysconfigdata__linux_x86_64-linux-gnu.cpython-313.pyc`, `build/lib.linux-x86_64-3.13/_asyncio.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_bisect.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_blake2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_bz2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_cn.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_hk.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_iso2022.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_jp.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_kr.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_tw.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_contextvars.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_csv.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_ctypes.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_ctypes_test.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_curses.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_curses_panel.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_datetime.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_decimal.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_elementtree.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_hashlib.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_heapq.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpchannels.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpqueues.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpreters.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_json.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_lsprof.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_lzma.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_md5.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_multibytecodec.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_multiprocessing.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_opcode.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_pickle.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_posixshmem.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_posixsubprocess.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_queue.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_random.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha1.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha3.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_socket.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sqlite3.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_statistics.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_struct.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sysconfigdata__linux_x86_64-linux-gnu.py`, `build/lib.linux-x86_64-3.13/_testbuffer.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testclinic.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testclinic_limited.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testexternalinspection.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testimportmultiple.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testinternalcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testlimitedcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testmultiphase.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testsinglephase.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_uuid.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_xxtestfuzz.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_zoneinfo.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/array.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/binascii.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/cmath.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/fcntl.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/grp.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/math.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/mmap.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/pyexpat.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/readline.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/resource.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/select.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/syslog.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/termios.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/unicodedata.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxlimited.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxlimited_35.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxsubtype.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/zlib.cpython-313-x86_64-linux-gnu.so`, `build/scripts-3.13/idle3.13`, `build/scripts-3.13/pydoc3.13`, `config.log`, `config.status`, `libpython3.13.a`, `platform`, `pybuilddir.txt`, `pyconfig.h`, `python`, `python-config`, `python-config.py`, `python-gdb.py`, but `## Git Add Paths` lists `None`. Update `## Git Add Paths` to match the real shipped file set exactly, and make sure `## Issue Connection` explains every functional file that remains in the patch.
2. Missing from `## Git Add Paths`: `Lib/__pycache__/__future__.cpython-313.pyc`, `Lib/__pycache__/_collections_abc.cpython-313.pyc`, `Lib/__pycache__/_colorize.cpython-313.pyc`, `Lib/__pycache__/_compat_pickle.cpython-313.pyc`, `Lib/__pycache__/_compression.cpython-313.pyc`, `Lib/__pycache__/_opcode_metadata.cpython-313.pyc`, `Lib/__pycache__/_sitebuiltins.cpython-313.pyc`, `Lib/__pycache__/_weakrefset.cpython-313.pyc`, `Lib/__pycache__/abc.cpython-313.pyc`, `Lib/__pycache__/argparse.cpython-313.pyc`, `Lib/__pycache__/ast.cpython-313.pyc`, `Lib/__pycache__/bz2.cpython-313.pyc`, `Lib/__pycache__/codecs.cpython-313.pyc`, `Lib/__pycache__/contextlib.cpython-313.pyc`, `Lib/__pycache__/contextvars.cpython-313.pyc`, `Lib/__pycache__/copy.cpython-313.pyc`, `Lib/__pycache__/copyreg.cpython-313.pyc`, `Lib/__pycache__/datetime.cpython-313.pyc`, `Lib/__pycache__/dis.cpython-313.pyc`, `Lib/__pycache__/enum.cpython-313.pyc`, `Lib/__pycache__/fnmatch.cpython-313.pyc`, `Lib/__pycache__/functools.cpython-313.pyc`, `Lib/__pycache__/genericpath.cpython-313.pyc`, `Lib/__pycache__/gettext.cpython-313.pyc`, `Lib/__pycache__/glob.cpython-313.pyc`, `Lib/__pycache__/heapq.cpython-313.pyc`, `Lib/__pycache__/inspect.cpython-313.pyc`, `Lib/__pycache__/io.cpython-313.pyc`, `Lib/__pycache__/keyword.cpython-313.pyc`, `Lib/__pycache__/linecache.cpython-313.pyc`, `Lib/__pycache__/locale.cpython-313.pyc`, `Lib/__pycache__/lzma.cpython-313.pyc`, `Lib/__pycache__/numbers.cpython-313.pyc`, `Lib/__pycache__/opcode.cpython-313.pyc`, `Lib/__pycache__/operator.cpython-313.pyc`, `Lib/__pycache__/os.cpython-313.pyc`, `Lib/__pycache__/posixpath.cpython-313.pyc`, `Lib/__pycache__/reprlib.cpython-313.pyc`, `Lib/__pycache__/selectors.cpython-313.pyc`, `Lib/__pycache__/shutil.cpython-313.pyc`, `Lib/__pycache__/signal.cpython-313.pyc`, `Lib/__pycache__/site.cpython-313.pyc`, `Lib/__pycache__/socket.cpython-313.pyc`, `Lib/__pycache__/ssl.cpython-313.pyc`, `Lib/__pycache__/stat.cpython-313.pyc`, `Lib/__pycache__/string.cpython-313.pyc`, `Lib/__pycache__/struct.cpython-313.pyc`, `Lib/__pycache__/subprocess.cpython-313.pyc`, `Lib/__pycache__/textwrap.cpython-313.pyc`, `Lib/__pycache__/threading.cpython-313.pyc`, `Lib/__pycache__/token.cpython-313.pyc`, `Lib/__pycache__/tokenize.cpython-313.pyc`, `Lib/__pycache__/traceback.cpython-313.pyc`, `Lib/__pycache__/types.cpython-313.pyc`, `Lib/__pycache__/typing.cpython-313.pyc`, `Lib/__pycache__/warnings.cpython-313.pyc`, `Lib/__pycache__/weakref.cpython-313.pyc`, `Lib/asyncio/__pycache__/__init__.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_events.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_futures.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_subprocess.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_tasks.cpython-313.pyc`, `Lib/asyncio/__pycache__/constants.cpython-313.pyc`, `Lib/asyncio/__pycache__/coroutines.cpython-313.pyc`, `Lib/asyncio/__pycache__/events.cpython-313.pyc`, `Lib/asyncio/__pycache__/exceptions.cpython-313.pyc`, `Lib/asyncio/__pycache__/format_helpers.cpython-313.pyc`, `Lib/asyncio/__pycache__/futures.cpython-313.pyc`, `Lib/asyncio/__pycache__/locks.cpython-313.pyc`, `Lib/asyncio/__pycache__/log.cpython-313.pyc`, `Lib/asyncio/__pycache__/mixins.cpython-313.pyc`, `Lib/asyncio/__pycache__/protocols.cpython-313.pyc`, `Lib/asyncio/__pycache__/queues.cpython-313.pyc`, `Lib/asyncio/__pycache__/runners.cpython-313.pyc`, `Lib/asyncio/__pycache__/selector_events.cpython-313.pyc`, `Lib/asyncio/__pycache__/sslproto.cpython-313.pyc`, `Lib/asyncio/__pycache__/staggered.cpython-313.pyc`, `Lib/asyncio/__pycache__/streams.cpython-313.pyc`, `Lib/asyncio/__pycache__/subprocess.cpython-313.pyc`, `Lib/asyncio/__pycache__/taskgroups.cpython-313.pyc`, `Lib/asyncio/__pycache__/tasks.cpython-313.pyc`, `Lib/asyncio/__pycache__/threads.cpython-313.pyc`, `Lib/asyncio/__pycache__/timeouts.cpython-313.pyc`, `Lib/asyncio/__pycache__/transports.cpython-313.pyc`, `Lib/asyncio/__pycache__/trsock.cpython-313.pyc`, `Lib/asyncio/__pycache__/unix_events.cpython-313.pyc`, `Lib/collections/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/futures/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/futures/__pycache__/_base.cpython-313.pyc`, `Lib/encodings/__pycache__/__init__.cpython-313.pyc`, `Lib/encodings/__pycache__/aliases.cpython-313.pyc`, `Lib/encodings/__pycache__/ascii.cpython-313.pyc`, `Lib/encodings/__pycache__/utf_8.cpython-313.pyc`, `Lib/importlib/__pycache__/__init__.cpython-313.pyc`, `Lib/importlib/__pycache__/_abc.cpython-313.pyc`, `Lib/logging/__pycache__/__init__.cpython-313.pyc`, `Lib/pathlib/__pycache__/__init__.cpython-313.pyc`, `Lib/pathlib/__pycache__/_abc.cpython-313.pyc`, `Lib/pathlib/__pycache__/_local.cpython-313.pyc`, `Lib/re/__pycache__/__init__.cpython-313.pyc`, `Lib/re/__pycache__/_casefix.cpython-313.pyc`, `Lib/re/__pycache__/_compiler.cpython-313.pyc`, `Lib/re/__pycache__/_constants.cpython-313.pyc`, `Lib/re/__pycache__/_parser.cpython-313.pyc`, `Lib/sysconfig/__pycache__/__init__.cpython-313.pyc`, `Lib/sysconfig/__pycache__/__main__.cpython-313.pyc`, `Lib/xml/__pycache__/__init__.cpython-313.pyc`, `Lib/xml/etree/__pycache__/ElementPath.cpython-313.pyc`, `Lib/xml/etree/__pycache__/__init__.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/__init__.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/_common.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/_tzpath.cpython-313.pyc`, `Makefile`, `Makefile.pre`, `Misc/python-config.sh`, `Misc/python-embed.pc`, `Misc/python.pc`, `Modules/Setup.bootstrap`, `Modules/Setup.local`, `Modules/Setup.stdlib`, `Modules/_abc.o`, `Modules/_asyncio.cpython-313-x86_64-linux-gnu.so`, `Modules/_asynciomodule.o`, `Modules/_bisect.cpython-313-x86_64-linux-gnu.so`, `Modules/_bisectmodule.o`, `Modules/_blake2.cpython-313-x86_64-linux-gnu.so`, `Modules/_blake2/blake2b_impl.o`, `Modules/_blake2/blake2module.o`, `Modules/_blake2/blake2s_impl.o`, `Modules/_bz2.cpython-313-x86_64-linux-gnu.so`, `Modules/_bz2module.o`, `Modules/_codecs_cn.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_hk.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_iso2022.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_jp.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_kr.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_tw.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecsmodule.o`, `Modules/_collectionsmodule.o`, `Modules/_contextvars.cpython-313-x86_64-linux-gnu.so`, `Modules/_contextvarsmodule.o`, `Modules/_csv.cpython-313-x86_64-linux-gnu.so`, `Modules/_csv.o`, `Modules/_ctypes.cpython-313-x86_64-linux-gnu.so`, `Modules/_ctypes/_ctypes.o`, `Modules/_ctypes/_ctypes_test.o`, `Modules/_ctypes/callbacks.o`, `Modules/_ctypes/callproc.o`, `Modules/_ctypes/cfield.o`, `Modules/_ctypes/stgdict.o`, `Modules/_ctypes_test.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses_panel.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses_panel.o`, `Modules/_cursesmodule.o`, `Modules/_datetime.cpython-313-x86_64-linux-gnu.so`, `Modules/_datetimemodule.o`, `Modules/_decimal.cpython-313-x86_64-linux-gnu.so`, `Modules/_decimal/_decimal.o`, `Modules/_decimal/libmpdec/basearith.o`, `Modules/_decimal/libmpdec/constants.o`, `Modules/_decimal/libmpdec/context.o`, `Modules/_decimal/libmpdec/convolute.o`, `Modules/_decimal/libmpdec/crt.o`, `Modules/_decimal/libmpdec/difradix2.o`, `Modules/_decimal/libmpdec/fnt.o`, `Modules/_decimal/libmpdec/fourstep.o`, `Modules/_decimal/libmpdec/io.o`, `Modules/_decimal/libmpdec/libmpdec.a`, `Modules/_decimal/libmpdec/mpalloc.o`, `Modules/_decimal/libmpdec/mpdecimal.o`, `Modules/_decimal/libmpdec/numbertheory.o`, `Modules/_decimal/libmpdec/sixstep.o`, `Modules/_decimal/libmpdec/transpose.o`, `Modules/_elementtree.cpython-313-x86_64-linux-gnu.so`, `Modules/_elementtree.o`, `Modules/_functoolsmodule.o`, `Modules/_hacl/Hacl_Hash_MD5.o`, `Modules/_hacl/Hacl_Hash_SHA1.o`, `Modules/_hacl/Hacl_Hash_SHA2.o`, `Modules/_hacl/Hacl_Hash_SHA3.o`, `Modules/_hacl/libHacl_Hash_SHA2.a`, `Modules/_hashlib.cpython-313-x86_64-linux-gnu.so`, `Modules/_hashopenssl.o`, `Modules/_heapq.cpython-313-x86_64-linux-gnu.so`, `Modules/_heapqmodule.o`, `Modules/_interpchannels.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpchannelsmodule.o`, `Modules/_interpqueues.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpqueuesmodule.o`, `Modules/_interpreters.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpretersmodule.o`, `Modules/_io/_iomodule.o`, `Modules/_io/bufferedio.o`, `Modules/_io/bytesio.o`, `Modules/_io/fileio.o`, `Modules/_io/iobase.o`, `Modules/_io/stringio.o`, `Modules/_io/textio.o`, `Modules/_json.cpython-313-x86_64-linux-gnu.so`, `Modules/_json.o`, `Modules/_localemodule.o`, `Modules/_lsprof.cpython-313-x86_64-linux-gnu.so`, `Modules/_lsprof.o`, `Modules/_lzma.cpython-313-x86_64-linux-gnu.so`, `Modules/_lzmamodule.o`, `Modules/_md5.cpython-313-x86_64-linux-gnu.so`, `Modules/_multibytecodec.cpython-313-x86_64-linux-gnu.so`, `Modules/_multiprocessing.cpython-313-x86_64-linux-gnu.so`, `Modules/_multiprocessing/multiprocessing.o`, `Modules/_multiprocessing/posixshmem.o`, `Modules/_multiprocessing/semaphore.o`, `Modules/_opcode.cpython-313-x86_64-linux-gnu.so`, `Modules/_opcode.o`, `Modules/_operator.o`, `Modules/_pickle.cpython-313-x86_64-linux-gnu.so`, `Modules/_pickle.o`, `Modules/_posixshmem.cpython-313-x86_64-linux-gnu.so`, `Modules/_posixsubprocess.cpython-313-x86_64-linux-gnu.so`, `Modules/_posixsubprocess.o`, `Modules/_queue.cpython-313-x86_64-linux-gnu.so`, `Modules/_queuemodule.o`, `Modules/_random.cpython-313-x86_64-linux-gnu.so`, `Modules/_randommodule.o`, `Modules/_sha1.cpython-313-x86_64-linux-gnu.so`, `Modules/_sha2.cpython-313-x86_64-linux-gnu.so`, `Modules/_sha3.cpython-313-x86_64-linux-gnu.so`, `Modules/_socket.cpython-313-x86_64-linux-gnu.so`, `Modules/_sqlite/blob.o`, `Modules/_sqlite/connection.o`, `Modules/_sqlite/cursor.o`, `Modules/_sqlite/microprotocols.o`, `Modules/_sqlite/module.o`, `Modules/_sqlite/prepare_protocol.o`, `Modules/_sqlite/row.o`, `Modules/_sqlite/statement.o`, `Modules/_sqlite/util.o`, `Modules/_sqlite3.cpython-313-x86_64-linux-gnu.so`, `Modules/_sre/sre.o`, `Modules/_ssl.o`, `Modules/_ssl_failed.cpython-313-x86_64-linux-gnu.so`, `Modules/_stat.o`, `Modules/_statistics.cpython-313-x86_64-linux-gnu.so`, `Modules/_statisticsmodule.o`, `Modules/_struct.cpython-313-x86_64-linux-gnu.so`, `Modules/_struct.o`, `Modules/_suggestions.o`, `Modules/_sysconfig.o`, `Modules/_testbuffer.cpython-313-x86_64-linux-gnu.so`, `Modules/_testbuffer.o`, `Modules/_testcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testcapi/abstract.o`, `Modules/_testcapi/buffer.o`, `Modules/_testcapi/bytes.o`, `Modules/_testcapi/code.o`, `Modules/_testcapi/codec.o`, `Modules/_testcapi/complex.o`, `Modules/_testcapi/datetime.o`, `Modules/_testcapi/dict.o`, `Modules/_testcapi/docstring.o`, `Modules/_testcapi/exceptions.o`, `Modules/_testcapi/file.o`, `Modules/_testcapi/float.o`, `Modules/_testcapi/gc.o`, `Modules/_testcapi/getargs.o`, `Modules/_testcapi/hash.o`, `Modules/_testcapi/heaptype.o`, `Modules/_testcapi/immortal.o`, `Modules/_testcapi/list.o`, `Modules/_testcapi/long.o`, `Modules/_testcapi/mem.o`, `Modules/_testcapi/monitoring.o`, `Modules/_testcapi/numbers.o`, `Modules/_testcapi/object.o`, `Modules/_testcapi/pyatomic.o`, `Modules/_testcapi/run.o`, `Modules/_testcapi/set.o`, `Modules/_testcapi/structmember.o`, `Modules/_testcapi/time.o`, `Modules/_testcapi/tuple.o`, `Modules/_testcapi/unicode.o`, `Modules/_testcapi/vectorcall.o`, `Modules/_testcapi/watchers.o`, `Modules/_testcapimodule.o`, `Modules/_testclinic.cpython-313-x86_64-linux-gnu.so`, `Modules/_testclinic.o`, `Modules/_testclinic_limited.cpython-313-x86_64-linux-gnu.so`, `Modules/_testclinic_limited.o`, `Modules/_testexternalinspection.cpython-313-x86_64-linux-gnu.so`, `Modules/_testexternalinspection.o`, `Modules/_testimportmultiple.cpython-313-x86_64-linux-gnu.so`, `Modules/_testimportmultiple.o`, `Modules/_testinternalcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testinternalcapi.o`, `Modules/_testinternalcapi/pytime.o`, `Modules/_testinternalcapi/set.o`, `Modules/_testinternalcapi/test_critical_sections.o`, `Modules/_testinternalcapi/test_lock.o`, `Modules/_testlimitedcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testlimitedcapi.o`, `Modules/_testlimitedcapi/abstract.o`, `Modules/_testlimitedcapi/bytearray.o`, `Modules/_testlimitedcapi/bytes.o`, `Modules/_testlimitedcapi/complex.o`, `Modules/_testlimitedcapi/dict.o`, `Modules/_testlimitedcapi/eval.o`, `Modules/_testlimitedcapi/file.o`, `Modules/_testlimitedcapi/float.o`, `Modules/_testlimitedcapi/heaptype_relative.o`, `Modules/_testlimitedcapi/import.o`, `Modules/_testlimitedcapi/list.o`, `Modules/_testlimitedcapi/long.o`, `Modules/_testlimitedcapi/object.o`, `Modules/_testlimitedcapi/pyos.o`, `Modules/_testlimitedcapi/set.o`, `Modules/_testlimitedcapi/sys.o`, `Modules/_testlimitedcapi/tuple.o`, `Modules/_testlimitedcapi/unicode.o`, `Modules/_testlimitedcapi/vectorcall_limited.o`, `Modules/_testmultiphase.cpython-313-x86_64-linux-gnu.so`, `Modules/_testmultiphase.o`, `Modules/_testsinglephase.cpython-313-x86_64-linux-gnu.so`, `Modules/_testsinglephase.o`, `Modules/_threadmodule.o`, `Modules/_tracemalloc.o`, `Modules/_typingmodule.o`, `Modules/_uuid.cpython-313-x86_64-linux-gnu.so`, `Modules/_uuidmodule.o`, `Modules/_weakref.o`, `Modules/_xxtestfuzz.cpython-313-x86_64-linux-gnu.so`, `Modules/_xxtestfuzz/_xxtestfuzz.o`, `Modules/_xxtestfuzz/fuzzer.o`, `Modules/_zoneinfo.cpython-313-x86_64-linux-gnu.so`, `Modules/_zoneinfo.o`, `Modules/array.cpython-313-x86_64-linux-gnu.so`, `Modules/arraymodule.o`, `Modules/atexitmodule.o`, `Modules/binascii.cpython-313-x86_64-linux-gnu.so`, `Modules/binascii.o`, `Modules/cjkcodecs/_codecs_cn.o`, `Modules/cjkcodecs/_codecs_hk.o`, `Modules/cjkcodecs/_codecs_iso2022.o`, `Modules/cjkcodecs/_codecs_jp.o`, `Modules/cjkcodecs/_codecs_kr.o`, `Modules/cjkcodecs/_codecs_tw.o`, `Modules/cjkcodecs/multibytecodec.o`, `Modules/cmath.cpython-313-x86_64-linux-gnu.so`, `Modules/cmathmodule.o`, `Modules/config.c`, `Modules/config.o`, `Modules/errnomodule.o`, `Modules/expat/libexpat.a`, `Modules/expat/xmlparse.o`, `Modules/expat/xmlrole.o`, `Modules/expat/xmltok.o`, `Modules/faulthandler.o`, `Modules/fcntl.cpython-313-x86_64-linux-gnu.so`, `Modules/fcntlmodule.o`, `Modules/gcmodule.o`, `Modules/getbuildinfo.o`, `Modules/getpath.o`, `Modules/getpath_noop.o`, `Modules/grp.cpython-313-x86_64-linux-gnu.so`, `Modules/grpmodule.o`, `Modules/itertoolsmodule.o`, `Modules/ld_so_aix`, `Modules/main.o`, `Modules/math.cpython-313-x86_64-linux-gnu.so`, `Modules/mathmodule.o`, `Modules/md5module.o`, `Modules/mmap.cpython-313-x86_64-linux-gnu.so`, `Modules/mmapmodule.o`, `Modules/posixmodule.o`, `Modules/pwdmodule.o`, `Modules/pyexpat.cpython-313-x86_64-linux-gnu.so`, `Modules/pyexpat.o`, `Modules/readline.cpython-313-x86_64-linux-gnu.so`, `Modules/readline.o`, `Modules/resource.cpython-313-x86_64-linux-gnu.so`, `Modules/resource.o`, `Modules/rotatingtree.o`, `Modules/select.cpython-313-x86_64-linux-gnu.so`, `Modules/selectmodule.o`, `Modules/sha1module.o`, `Modules/sha2module.o`, `Modules/sha3module.o`, `Modules/signalmodule.o`, `Modules/socketmodule.o`, `Modules/symtablemodule.o`, `Modules/syslog.cpython-313-x86_64-linux-gnu.so`, `Modules/syslogmodule.o`, `Modules/termios.cpython-313-x86_64-linux-gnu.so`, `Modules/termios.o`, `Modules/timemodule.o`, `Modules/unicodedata.cpython-313-x86_64-linux-gnu.so`, `Modules/unicodedata.o`, `Modules/xxlimited.cpython-313-x86_64-linux-gnu.so`, `Modules/xxlimited.o`, `Modules/xxlimited_35.cpython-313-x86_64-linux-gnu.so`, `Modules/xxlimited_35.o`, `Modules/xxsubtype.cpython-313-x86_64-linux-gnu.so`, `Modules/xxsubtype.o`, `Modules/zlib.cpython-313-x86_64-linux-gnu.so`, `Modules/zlibmodule.o`, `Objects/abstract.o`, `Objects/boolobject.o`, `Objects/bytearrayobject.o`, `Objects/bytes_methods.o`, `Objects/bytesobject.o`, `Objects/call.o`, `Objects/capsule.o`, `Objects/cellobject.o`, `Objects/classobject.o`, `Objects/codeobject.o`, `Objects/complexobject.o`, `Objects/descrobject.o`, `Objects/dictobject.o`, `Objects/enumobject.o`, `Objects/exceptions.o`, `Objects/fileobject.o`, `Objects/floatobject.o`, `Objects/frameobject.o`, `Objects/funcobject.o`, `Objects/genericaliasobject.o`, `Objects/genobject.o`, `Objects/iterobject.o`, `Objects/listobject.o`, `Objects/longobject.o`, `Objects/memoryobject.o`, `Objects/methodobject.o`, `Objects/moduleobject.o`, `Objects/namespaceobject.o`, `Objects/object.o`, `Objects/obmalloc.o`, `Objects/odictobject.o`, `Objects/picklebufobject.o`, `Objects/rangeobject.o`, `Objects/setobject.o`, `Objects/sliceobject.o`, `Objects/structseq.o`, `Objects/tupleobject.o`, `Objects/typeobject.o`, `Objects/typevarobject.o`, `Objects/unicodectype.o`, `Objects/unicodeobject.o`, `Objects/unionobject.o`, `Objects/weakrefobject.o`, `Parser/action_helpers.o`, `Parser/lexer/buffer.o`, `Parser/lexer/lexer.o`, `Parser/lexer/state.o`, `Parser/myreadline.o`, `Parser/parser.o`, `Parser/peg_api.o`, `Parser/pegen.o`, `Parser/pegen_errors.o`, `Parser/string_parser.o`, `Parser/token.o`, `Parser/tokenizer/file_tokenizer.o`, `Parser/tokenizer/helpers.o`, `Parser/tokenizer/readline_tokenizer.o`, `Parser/tokenizer/string_tokenizer.o`, `Parser/tokenizer/utf8_tokenizer.o`, `Programs/_bootstrap_python.o`, `Programs/_freeze_module`, `Programs/_freeze_module.o`, `Programs/_testembed`, `Programs/_testembed.o`, `Programs/python.o`, `Python/Python-ast.o`, `Python/Python-tokenize.o`, `Python/_warnings.o`, `Python/asdl.o`, `Python/asm_trampoline.o`, `Python/assemble.o`, `Python/ast.o`, `Python/ast_opt.o`, `Python/ast_unparse.o`, `Python/bltinmodule.o`, `Python/bootstrap_hash.o`, `Python/brc.o`, `Python/ceval.o`, `Python/ceval_gil.o`, `Python/codecs.o`, `Python/compile.o`, `Python/context.o`, `Python/critical_section.o`, `Python/crossinterp.o`, `Python/dtoa.o`, `Python/dynamic_annotations.o`, `Python/dynload_shlib.o`, `Python/errors.o`, `Python/fileutils.o`, `Python/flowgraph.o`, `Python/formatter_unicode.o`, `Python/frame.o`, `Python/frozen.o`, `Python/frozen_modules/__hello__.h`, `Python/frozen_modules/__phello__.h`, `Python/frozen_modules/__phello__.ham.eggs.h`, `Python/frozen_modules/__phello__.ham.h`, `Python/frozen_modules/__phello__.spam.h`, `Python/frozen_modules/_collections_abc.h`, `Python/frozen_modules/_sitebuiltins.h`, `Python/frozen_modules/abc.h`, `Python/frozen_modules/codecs.h`, `Python/frozen_modules/frozen_only.h`, `Python/frozen_modules/genericpath.h`, `Python/frozen_modules/getpath.h`, `Python/frozen_modules/importlib._bootstrap.h`, `Python/frozen_modules/importlib._bootstrap_external.h`, `Python/frozen_modules/importlib.machinery.h`, `Python/frozen_modules/importlib.util.h`, `Python/frozen_modules/io.h`, `Python/frozen_modules/ntpath.h`, `Python/frozen_modules/os.h`, `Python/frozen_modules/posixpath.h`, `Python/frozen_modules/runpy.h`, `Python/frozen_modules/site.h`, `Python/frozen_modules/stat.h`, `Python/frozen_modules/zipimport.h`, `Python/frozenmain.o`, `Python/future.o`, `Python/gc.o`, `Python/gc_free_threading.o`, `Python/gc_gil.o`, `Python/getargs.o`, `Python/getcompiler.o`, `Python/getcopyright.o`, `Python/getopt.o`, `Python/getplatform.o`, `Python/getversion.o`, `Python/hamt.o`, `Python/hashtable.o`, `Python/import.o`, `Python/importdl.o`, `Python/initconfig.o`, `Python/instruction_sequence.o`, `Python/instrumentation.o`, `Python/interpconfig.o`, `Python/intrinsics.o`, `Python/jit.o`, `Python/legacy_tracing.o`, `Python/lock.o`, `Python/marshal.o`, `Python/modsupport.o`, `Python/mysnprintf.o`, `Python/mystrtoul.o`, `Python/object_stack.o`, `Python/optimizer.o`, `Python/optimizer_analysis.o`, `Python/optimizer_symbols.o`, `Python/parking_lot.o`, `Python/pathconfig.o`, `Python/perf_jit_trampoline.o`, `Python/perf_trampoline.o`, `Python/preconfig.o`, `Python/pyarena.o`, `Python/pyctype.o`, `Python/pyfpe.o`, `Python/pyhash.o`, `Python/pylifecycle.o`, `Python/pymath.o`, `Python/pystate.o`, `Python/pystrcmp.o`, `Python/pystrhex.o`, `Python/pystrtod.o`, `Python/pythonrun.o`, `Python/pytime.o`, `Python/qsbr.o`, `Python/specialize.o`, `Python/structmember.o`, `Python/suggestions.o`, `Python/symtable.o`, `Python/sysmodule.o`, `Python/thread.o`, `Python/traceback.o`, `Python/tracemalloc.o`, `_bootstrap_python`, `build/lib.linux-x86_64-3.13/__pycache__/_sysconfigdata__linux_x86_64-linux-gnu.cpython-313.pyc`, `build/lib.linux-x86_64-3.13/_asyncio.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_bisect.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_blake2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_bz2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_cn.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_hk.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_iso2022.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_jp.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_kr.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_tw.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_contextvars.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_csv.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_ctypes.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_ctypes_test.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_curses.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_curses_panel.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_datetime.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_decimal.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_elementtree.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_hashlib.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_heapq.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpchannels.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpqueues.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpreters.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_json.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_lsprof.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_lzma.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_md5.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_multibytecodec.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_multiprocessing.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_opcode.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_pickle.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_posixshmem.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_posixsubprocess.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_queue.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_random.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha1.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha3.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_socket.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sqlite3.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_statistics.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_struct.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sysconfigdata__linux_x86_64-linux-gnu.py`, `build/lib.linux-x86_64-3.13/_testbuffer.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testclinic.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testclinic_limited.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testexternalinspection.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testimportmultiple.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testinternalcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testlimitedcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testmultiphase.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testsinglephase.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_uuid.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_xxtestfuzz.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_zoneinfo.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/array.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/binascii.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/cmath.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/fcntl.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/grp.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/math.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/mmap.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/pyexpat.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/readline.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/resource.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/select.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/syslog.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/termios.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/unicodedata.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxlimited.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxlimited_35.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxsubtype.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/zlib.cpython-313-x86_64-linux-gnu.so`, `build/scripts-3.13/idle3.13`, `build/scripts-3.13/pydoc3.13`, `config.log`, `config.status`, `libpython3.13.a`, `platform`, `pybuilddir.txt`, `pyconfig.h`, `python`, `python-config`, `python-config.py`, `python-gdb.py`.
2. Listed in `## Git Add Paths` but not actually changed: `None`.

## Refinement Pass 1

Subject: Diagnose supervisord poll loop without CPython changes

## Commit Message
No CPython source change is included. The collected evidence shows `supervisord` waking once per second to check child status and then blocking in `poll()`, which is consistent with an application event loop rather than a demonstrated CPython runtime defect. This refinement addresses the review finding by removing generated validation artifacts from the workspace.

## Evidence Confidence
inferred

## Issue Connection
The collected signal was `/usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf` repeatedly calling `wait4(-1, ..., WNOHANG)` and receiving `ECHILD`, then calling `poll(..., 1000)` and timing out after about one second. `/proc` evidence showed the sampled thread in sleeping state `S` with wait channel `poll_schedule_timeout`, so the trace does not show a tight zero-timeout spin.

The cautious code-level inference is that CPython is exposing normal OS polling behavior. I rechecked the relevant CPython paths: `Modules/selectmodule.c` uses `_PyTime_*` timeout helpers, `Py_BEGIN_ALLOW_THREADS`, and EINTR retry handling; `Lib/selectors.py` rounds positive timeouts to poll’s millisecond granularity; `Lib/subprocess.py` uses `_waitpid_lock` around nonblocking child waits. No missing local helper or compatibility wrapper was found.

I made no source change. In this refinement, I removed the generated build and bytecode artifacts called out by review so `## Git Add Paths` remains consistent with the no-patch diagnosis. The expected effect is that no speculative timing-sensitive CPython change is proposed until stronger evidence ties the reported CPU use to a runtime bug rather than to the `supervisord` loop.

## Git Add Paths
None

## Validation
Reviewed the prior plan, author response, review report, and evidence bundle. The review finding was metadata drift from generated files; I addressed it by cleaning validation artifacts. `git clean -fdx` removed the build outputs and pycache files, with warnings that `.agents/` and `.codex/` were busy; final `git status --short` and `git diff --stat` produced no output.

Checked contribution/style guidance and subsystem conventions again. `README.rst` points to the CPython Developer Guide and documents `./configure`, `make`, and `make test`; `debian/README.source` says Debian packaging uses quilt. The relevant local conventions remain `_PyTime_*`, `Py_BEGIN_ALLOW_THREADS`, EINTR handling, selector timeout rounding, and `_waitpid_lock`.

Project-level validation from the previous authoring pass was:

```sh
./configure && make
```

Result: exited `0`; optional `_dbm`, `_gdbm`, and `_tkinter` were missing, and `_ssl` failed import with `undefined symbol: TLSv1_method`, but the command completed successfully. I did not rerun it in this refinement because no source changed and rerunning it would recreate the generated artifacts that the review explicitly asked to remove.

The bounded syscall reproduction attempt from the previous pass was blocked by sandbox ptrace restrictions:

```sh
strace -tt -e trace=poll,wait4 ./python -S - ...
```

Result: `PTRACE_TRACEME: Operation not permitted` and `ptrace(PTRACE_SEIZE, 5): Operation not permitted`.

The no-ptrace timing smoke check from the previous pass completed with:

```text
echild=5 wall=5.005 cpu=0.000199
```

That supports the diagnosis that this one-second poll cadence blocks rather than spins.

## Review Pass 2

RESULT: ok

No actionable issues found.

The refined workspace is clean: `git status --short`, `git diff --stat`, and `git diff --name-only` show no changed paths, matching `## Git Add Paths: None`. The previous review’s metadata drift finding is resolved.

The no-patch diagnosis is consistent with the evidence level. The author uses `inferred`, does not claim a reproduced CPython bug, and avoids proposing a timing-sensitive runtime change from indirect perf/strace evidence. The explanation connects the collected `wait4(..., WNOHANG) = ECHILD` plus one-second `poll(..., 1000)` cadence to normal application-level event-loop behavior, and it names the relevant CPython conventions/helpers checked: `_PyTime_*`, `Py_BEGIN_ALLOW_THREADS`, EINTR handling, selector timeout rounding, and `_waitpid_lock`.

Validation text is acceptable for a no-source-change refinement: the prior project-level `./configure && make` was reported, the blocked `strace` reproduction was disclosed with the ptrace error, and the refinement explains why rerunning the build would recreate the artifacts that were just cleaned.

diagnosis-only report

report

python3.13 likely remains stuck in a busy-poll loop. A diagnosis report and patch proposal were created locally.

state: readycreated: 2026-05-18 13:07 UTCvalidation: ready
Published session

Prompt

## Plan Pass

You are planning a fixer patch before any edits happen.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. The original pre-edit snapshot is available at `./source` if you need to inspect it. For interpreter processes, plan from the script/application entrypoint evidence first and include the runtime only as a second investigation target unless the evidence proves a runtime bug.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround. Inspect the relevant code, nearby callers, project contribution docs, and local helper/compat APIs, but do not edit files in this pass.

Return a short markdown plan with these exact sections:

## Problem
## Evidence Confidence
## Proposed Subject
## Patch Plan
## Risks
## Validation

Classify `## Evidence Confidence` as exactly one of `reproduced`, `observed`, or `inferred`. Use `inferred` only for a no-patch diagnosis/report plan unless you can name the extra evidence you will collect before editing; inferred source patches are blocked by Fixer because they are not pull-request-ready. For `observed` source-patch plans, plan to say in the final `## Issue Connection` that the failure was observed by Fixer and not independently reproduced. If the plan touches authentication, authorization, credentials, cryptography, sandboxing, permissions, or timing/throttling behavior, treat it as security-sensitive: do not plan a source patch unless validation can reproduce the behavior and analyze the security impact; otherwise plan a no-patch diagnosis/report. The plan must explain how the proposed code change addresses the observed issue evidence, call out any prior Fixer patch that should be improved or replaced, reject awkward control flow such as avoidable `goto` if there is a cleaner bounded alternative, name any local helper APIs or maintainer conventions the patch should follow, and keep the intended maintainer-facing explanation clear enough that someone unfamiliar with the local complaint wording can still follow the fix. In `## Validation`, name the reproducible configure/build/test entrypoint you will try from the workspace root before any focused leaf compile or smoke check, and include one bounded independent reproduction attempt for the collected failure signal when it is safe and cheap. Do not plan to claim `reproduced` unless that reproduction command or test can actually show the failure.

## Patch Pass

You are working on a bounded fixer proposal.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. Produce the smallest reasonable patch for the target repository, keep the change upstreamable, prefer the clearest control flow available, and do not keep avoidable `goto` when a simpler structure would read better. Before introducing new file, process, allocation, locking, networking, or platform APIs, inspect nearby code and project contribution docs for existing helpers or compatibility wrappers and use those local patterns unless you can explain why they do not fit. Validate from a reproducible workspace-root entrypoint before falling back to focused leaf commands; if a build or test cannot run, report the exact command, the exact blocker, and any narrower check you ran instead. During validation, also try one bounded independent reproduction of the collected failure signal when it is safe and cheap, such as a failing test, smoke command, perf/strace comparison, or before/after runtime check. Only use `reproduced` if that command or test actually reproduced the failure; otherwise keep `observed` and report the reproduction blocker. The final explanation must connect the observed issue evidence to the actual code change, not just paraphrase the diff. Write like a maintainer is going to read the patch mail cold: explain the bug in plain language, define subsystem-specific jargon the first time you need it, and make the causal story obvious. Explicitly classify evidence confidence as `reproduced`, `observed`, or `inferred`: `reproduced` means you reproduced the failure locally; `observed` means Fixer has direct crash/log/trace evidence but you did not independently reproduce it; `inferred` means the source patch is not pull-request-ready, so do not leave a source diff unless you first gather stronger observed/reproduced evidence; otherwise return a no-patch diagnosis/report. For any source-changing `observed` patch, say explicitly in `## Issue Connection` that the failure was observed by Fixer and not independently reproduced. Security-sensitive areas such as authentication, authorization, credentials, cryptography, sandboxing, permissions, and timing/throttling behavior need reproduced evidence plus explicit security-impact analysis before leaving a source diff; otherwise return a no-patch diagnosis/report for human review. If you introduce non-obvious state translation, index remapping, or backend split logic, add a short source comment that explains the invariant being preserved.

Start by explaining the likely root cause from the collected perf, strace, and /proc evidence. If you cannot land a safe patch, leave a diagnosis that is strong enough for an upstream bug report.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround. 

Keep the change narrowly scoped and summarize validation clearly.

In every authoring pass, your final response must start with `Subject: <single-line git commit subject>` and then include these markdown sections exactly:

## Commit Message
A short upstream-friendly explanation of what changed and why. Write it in plain language that a maintainer can follow without local complaint context. If you use subsystem jargon, define it immediately.

## Evidence Confidence
Exactly one word: `reproduced`, `observed`, or `inferred`. Use `reproduced` only when you reproduced the failure locally with a command or test, and include that command/test in `## Validation`. Use `observed` when Fixer has direct crash/log/trace evidence but you did not independently reproduce it. If `## Git Add Paths` lists source files for an `observed` patch, `## Issue Connection` must explicitly say the failure was observed by Fixer and not independently reproduced. Security-sensitive source changes touching authentication, authorization, credentials, cryptography, sandboxing, permissions, or timing/throttling behavior require reproduced evidence and explicit security-impact analysis; otherwise list `None` under `## Git Add Paths` and write a no-patch diagnosis/report. Use `inferred` for profiler/strace/indirect evidence; inferred responses may be no-patch diagnoses or reports, but inferred source patches are not pull-request-ready until stronger evidence is gathered.

## Issue Connection
Write this as maintainer-facing patch mail, not as local Fixer notes. Cover four things explicitly in readable sentences: the user-visible symptom or the exact collected signal, the code-level cause or the cautious inference from evidence, the specific change you made, and the expected effect. Do not invent a reproducer, command line, crash, or user-visible failure that is not present in the evidence bundle. If the evidence is direct-but-not-reproduced, say it was observed by Fixer and not independently reproduced. If the evidence is indirect and you did not gather stronger evidence, do not leave a source diff; write a no-patch diagnosis/report instead. Include an explicit effect sentence such as `The expected effect is ...`, `This should reduce ...`, or `This prevents ...` for source patches. If the logic is non-obvious in code, mention that you added a short explanatory comment.

## Git Add Paths
List the repo-relative paths that belong in the final patch, one per line. Use `None` only when you intentionally made no source changes. Include intentionally new files, and do not list generated build artifacts.

## Validation
List the checks you ran, or say clearly that you could not run them. Include the independent reproduction command/test and result when `## Evidence Confidence` is `reproduced`; if reproduction was attempted but blocked, name the exact blocker and keep confidence at `observed` or `inferred`.

Before editing, read the plan at `./plan-output.txt` and follow it unless the code proves part of it wrong. If you change course, say so explicitly in the final write-up instead of silently drifting from the plan.

## Review Pass 1 (local metadata check)

Local metadata consistency check

## Refinement Pass 1

You are refining a fixer patch after an explicit code review.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. Read the latest author response at `./patch-output.txt`. Read the review report at `./review-1-output.txt`. This is refinement round 1. The original pre-edit snapshot is available at `./source` if you need to compare the current patch against it. Re-read the planning pass at `./plan-output.txt` before editing. The workspace currently changes these repo-relative paths: Lib/__pycache__/__future__.cpython-313.pyc, Lib/__pycache__/_collections_abc.cpython-313.pyc, Lib/__pycache__/_colorize.cpython-313.pyc, Lib/__pycache__/_compat_pickle.cpython-313.pyc, Lib/__pycache__/_compression.cpython-313.pyc, Lib/__pycache__/_opcode_metadata.cpython-313.pyc, Lib/__pycache__/_sitebuiltins.cpython-313.pyc, Lib/__pycache__/_weakrefset.cpython-313.pyc, Lib/__pycache__/abc.cpython-313.pyc, Lib/__pycache__/argparse.cpython-313.pyc, Lib/__pycache__/ast.cpython-313.pyc, Lib/__pycache__/bz2.cpython-313.pyc, Lib/__pycache__/codecs.cpython-313.pyc, Lib/__pycache__/contextlib.cpython-313.pyc, Lib/__pycache__/contextvars.cpython-313.pyc, Lib/__pycache__/copy.cpython-313.pyc, Lib/__pycache__/copyreg.cpython-313.pyc, Lib/__pycache__/datetime.cpython-313.pyc, Lib/__pycache__/dis.cpython-313.pyc, Lib/__pycache__/enum.cpython-313.pyc, Lib/__pycache__/fnmatch.cpython-313.pyc, Lib/__pycache__/functools.cpython-313.pyc, Lib/__pycache__/genericpath.cpython-313.pyc, Lib/__pycache__/gettext.cpython-313.pyc, Lib/__pycache__/glob.cpython-313.pyc, Lib/__pycache__/heapq.cpython-313.pyc, Lib/__pycache__/inspect.cpython-313.pyc, Lib/__pycache__/io.cpython-313.pyc, Lib/__pycache__/keyword.cpython-313.pyc, Lib/__pycache__/linecache.cpython-313.pyc, Lib/__pycache__/locale.cpython-313.pyc, Lib/__pycache__/lzma.cpython-313.pyc, Lib/__pycache__/numbers.cpython-313.pyc, Lib/__pycache__/opcode.cpython-313.pyc, Lib/__pycache__/operator.cpython-313.pyc, Lib/__pycache__/os.cpython-313.pyc, Lib/__pycache__/posixpath.cpython-313.pyc, Lib/__pycache__/reprlib.cpython-313.pyc, Lib/__pycache__/selectors.cpython-313.pyc, Lib/__pycache__/shutil.cpython-313.pyc, Lib/__pycache__/signal.cpython-313.pyc, Lib/__pycache__/site.cpython-313.pyc, Lib/__pycache__/socket.cpython-313.pyc, Lib/__pycache__/ssl.cpython-313.pyc, Lib/__pycache__/stat.cpython-313.pyc, Lib/__pycache__/string.cpython-313.pyc, Lib/__pycache__/struct.cpython-313.pyc, Lib/__pycache__/subprocess.cpython-313.pyc, Lib/__pycache__/textwrap.cpython-313.pyc, Lib/__pycache__/threading.cpython-313.pyc, Lib/__pycache__/token.cpython-313.pyc, Lib/__pycache__/tokenize.cpython-313.pyc, Lib/__pycache__/traceback.cpython-313.pyc, Lib/__pycache__/types.cpython-313.pyc, Lib/__pycache__/typing.cpython-313.pyc, Lib/__pycache__/warnings.cpython-313.pyc, Lib/__pycache__/weakref.cpython-313.pyc, Lib/asyncio/__pycache__/__init__.cpython-313.pyc, Lib/asyncio/__pycache__/base_events.cpython-313.pyc, Lib/asyncio/__pycache__/base_futures.cpython-313.pyc, Lib/asyncio/__pycache__/base_subprocess.cpython-313.pyc, Lib/asyncio/__pycache__/base_tasks.cpython-313.pyc, Lib/asyncio/__pycache__/constants.cpython-313.pyc, Lib/asyncio/__pycache__/coroutines.cpython-313.pyc, Lib/asyncio/__pycache__/events.cpython-313.pyc, Lib/asyncio/__pycache__/exceptions.cpython-313.pyc, Lib/asyncio/__pycache__/format_helpers.cpython-313.pyc, Lib/asyncio/__pycache__/futures.cpython-313.pyc, Lib/asyncio/__pycache__/locks.cpython-313.pyc, Lib/asyncio/__pycache__/log.cpython-313.pyc, Lib/asyncio/__pycache__/mixins.cpython-313.pyc, Lib/asyncio/__pycache__/protocols.cpython-313.pyc, Lib/asyncio/__pycache__/queues.cpython-313.pyc, Lib/asyncio/__pycache__/runners.cpython-313.pyc, Lib/asyncio/__pycache__/selector_events.cpython-313.pyc, Lib/asyncio/__pycache__/sslproto.cpython-313.pyc, Lib/asyncio/__pycache__/staggered.cpython-313.pyc, Lib/asyncio/__pycache__/streams.cpython-313.pyc, Lib/asyncio/__pycache__/subprocess.cpython-313.pyc, Lib/asyncio/__pycache__/taskgroups.cpython-313.pyc, Lib/asyncio/__pycache__/tasks.cpython-313.pyc, Lib/asyncio/__pycache__/threads.cpython-313.pyc, Lib/asyncio/__pycache__/timeouts.cpython-313.pyc, Lib/asyncio/__pycache__/transports.cpython-313.pyc, Lib/asyncio/__pycache__/trsock.cpython-313.pyc, Lib/asyncio/__pycache__/unix_events.cpython-313.pyc, Lib/collections/__pycache__/__init__.cpython-313.pyc, Lib/concurrent/__pycache__/__init__.cpython-313.pyc, Lib/concurrent/futures/__pycache__/__init__.cpython-313.pyc, Lib/concurrent/futures/__pycache__/_base.cpython-313.pyc, Lib/encodings/__pycache__/__init__.cpython-313.pyc, Lib/encodings/__pycache__/aliases.cpython-313.pyc, Lib/encodings/__pycache__/ascii.cpython-313.pyc, Lib/encodings/__pycache__/utf_8.cpython-313.pyc, Lib/importlib/__pycache__/__init__.cpython-313.pyc, Lib/importlib/__pycache__/_abc.cpython-313.pyc, Lib/logging/__pycache__/__init__.cpython-313.pyc, Lib/pathlib/__pycache__/__init__.cpython-313.pyc, Lib/pathlib/__pycache__/_abc.cpython-313.pyc, Lib/pathlib/__pycache__/_local.cpython-313.pyc, Lib/re/__pycache__/__init__.cpython-313.pyc, Lib/re/__pycache__/_casefix.cpython-313.pyc, Lib/re/__pycache__/_compiler.cpython-313.pyc, Lib/re/__pycache__/_constants.cpyth

[truncated 29270 bytes]

Response

## Plan Pass

## Problem
Fixer observed `/usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf` under `/usr/bin/python3.13` with repeated `wait4(-1, ..., WNOHANG) = ECHILD` followed by `poll(..., 1000) = 0`. The sampled process state was sleeping in `poll_schedule_timeout`, so the evidence does not currently show a CPython tight busy loop or a runtime API defect.

## Evidence Confidence
inferred

## Proposed Subject
No CPython source patch yet: diagnose this as likely application-level `supervisord` event-loop polling unless an independent reproduction ties the behavior to CPython’s `select.poll`, `selectors`, `subprocess`, or wait handling.

## Patch Plan
Do not edit CPython in this pass. The command-line evidence names `supervisord` as the script/application entrypoint, while the runtime appears only as the interpreter hosting it.

Relevant CPython code checked: `Modules/selectmodule.c` uses `_PyTime_*` helpers, `Py_BEGIN_ALLOW_THREADS`, EINTR retry handling, and avoids concurrent `poll()` invocation; `Lib/selectors.py` intentionally rounds positive poll timeouts up to milliseconds; `Lib/subprocess.py` uses `_waitpid_lock` around nonblocking `waitpid(..., WNOHANG)`. No local CPython helper was found that would obviously be missing from the observed path.

Contribution/style docs checked: top-level `README.rst` points to the CPython Developer Guide and documents `./configure`, `make`, and `make test`; Debian `README.source` says packaging patches use quilt. Debian patches are present, but I found no prior Fixer patch for this finding to improve or replace.

If later evidence shows a CPython bug, keep any patch upstream-style in the CPython subsystem, avoid awkward control flow such as avoidable `goto`, follow existing `_PyTime_*`, `PyErr_SetFromErrno`, EINTR, and GIL-release conventions, and add a focused regression test only for a demonstrated runtime behavior.

## Risks
A CPython patch based only on this bundle would likely “fix” normal supervisor behavior: a one-second timeout loop that checks for child exits. Changing `select.poll`, `selectors`, or `subprocess` without a runtime reproducer risks breaking documented timeout and child-process semantics.

Because this touches timing/polling behavior, any source patch would need reproducible behavior and impact analysis first. Current evidence is profiler/trace-only and does not justify a security-sensitive timing change.

## Validation
Before any justified edit, try the project-level entrypoint from the workspace root:

```sh
./configure && make
```

If that fails due to missing dependencies or generated files, record the exact failure, then use the narrowest relevant check, likely a focused compile of `Modules/selectmodule.c` through the project build target or a targeted `make test TESTOPTS="-v test_select test_selectors test_subprocess"` after a successful build.

Bounded independent evidence attempt before editing: run a local Python smoke check that performs `os.waitpid(-1, os.WNOHANG)` with no children and `select.poll().poll(1000)` on an idle fd under `strace -e poll,wait4` to compare the syscall cadence. This can show whether the collected signal is ordinary CPython API behavior, but it should not be claimed as reproducing the reported runaway CPU unless it actually demonstrates sustained CPU usage.

## Patch Pass

Subject: Diagnose supervisord poll loop without CPython changes

## Commit Message
No source change is included. The collected evidence shows `supervisord` running under Python and repeatedly doing a nonblocking child-status check followed by a one-second blocking `poll()`. That pattern is consistent with an application event loop, not with a demonstrated CPython runtime bug.

## Evidence Confidence
inferred

## Issue Connection
The likely root cause from the collected perf, strace, and `/proc` evidence is that `supervisord` is waking once per second to check for child processes, then blocking again in `poll()`. The exact collected signal was repeated `wait4(-1, ..., WNOHANG) = -1 ECHILD` followed by `poll(..., 1000) = 0` taking about `1.001` seconds, while `/proc` reported the sampled thread in sleeping state `S` and kernel wait channel `poll_schedule_timeout`.

The cautious code-level inference is that the trace is showing normal Python-exposed OS behavior rather than a CPython busy-poll defect. I inspected the relevant CPython paths: `Modules/selectmodule.c` uses `_PyTime_*` deadline helpers, releases the GIL with `Py_BEGIN_ALLOW_THREADS`, and only retries `poll()` on `EINTR`; `Lib/selectors.py` rounds positive poll timeouts up to milliseconds; `Lib/subprocess.py` protects nonblocking child polling with `_waitpid_lock`. No relevant missing local helper was found.

I made no source change because this is timing/polling behavior and the evidence does not reproduce a CPython bug. The expected effect is that no speculative runtime behavior change is proposed until stronger evidence ties the CPU report to CPython rather than to the application loop.

I followed the saved plan at `plan-output.txt`; the code and validation did not prove a reason to change course.

## Git Add Paths
None

## Validation
Checked contribution/style guidance and subsystem conventions: top-level `README.rst` points to the CPython Developer Guide and documents `./configure`, `make`, and `make test`; `debian/README.source` says Debian packaging uses quilt. The relevant subsystem uses `_PyTime_*`, `Py_BEGIN_ALLOW_THREADS`, `PyErr_SetFromErrno`, selector timeout rounding, and `_waitpid_lock`.

Ran project-level build entrypoint from workspace root:

```sh
./configure && make
```

Result: exited `0`. Build reported optional `_dbm`, `_gdbm`, and `_tkinter` missing, and `_ssl` failed import with `undefined symbol: TLSv1_method`, but the command completed successfully.

Attempted bounded independent syscall reproduction:

```sh
strace -tt -e trace=poll,wait4 ./python -S - ...
```

Result: blocked by sandbox ptrace restrictions: `PTRACE_TRACEME: Operation not permitted` and `ptrace(PTRACE_SEIZE, 5): Operation not permitted`.

Ran no-ptrace timing smoke check with the same Python-level operations:

```sh
./python -S - <<'PY'
import os, select, time
r, w = os.pipe()
try:
    p = select.poll()
    p.register(r, select.POLLIN | select.POLLPRI | select.POLLHUP)
    wall_start = time.monotonic()
    cpu_start = time.process_time()
    echild = 0
    for _ in range(5):
        try:
            os.waitpid(-1, os.WNOHANG)
        except ChildProcessError:
            echild += 1
        p.poll(1000)
    print(f"echild={echild} wall={time.monotonic() - wall_start:.3f} cpu={time.process_time() - cpu_start:.6f}")
finally:
    os.close(r)
    os.close(w)
PY
```

Result: `echild=5 wall=5.005 cpu=0.000199`, which supports the diagnosis that the observed one-second poll cadence blocks rather than spins.

## Review Pass 1 (local metadata check)

RESULT: fix-needed

## Findings
1. Patch metadata drift: the workspace currently changes `Lib/__pycache__/__future__.cpython-313.pyc`, `Lib/__pycache__/_collections_abc.cpython-313.pyc`, `Lib/__pycache__/_colorize.cpython-313.pyc`, `Lib/__pycache__/_compat_pickle.cpython-313.pyc`, `Lib/__pycache__/_compression.cpython-313.pyc`, `Lib/__pycache__/_opcode_metadata.cpython-313.pyc`, `Lib/__pycache__/_sitebuiltins.cpython-313.pyc`, `Lib/__pycache__/_weakrefset.cpython-313.pyc`, `Lib/__pycache__/abc.cpython-313.pyc`, `Lib/__pycache__/argparse.cpython-313.pyc`, `Lib/__pycache__/ast.cpython-313.pyc`, `Lib/__pycache__/bz2.cpython-313.pyc`, `Lib/__pycache__/codecs.cpython-313.pyc`, `Lib/__pycache__/contextlib.cpython-313.pyc`, `Lib/__pycache__/contextvars.cpython-313.pyc`, `Lib/__pycache__/copy.cpython-313.pyc`, `Lib/__pycache__/copyreg.cpython-313.pyc`, `Lib/__pycache__/datetime.cpython-313.pyc`, `Lib/__pycache__/dis.cpython-313.pyc`, `Lib/__pycache__/enum.cpython-313.pyc`, `Lib/__pycache__/fnmatch.cpython-313.pyc`, `Lib/__pycache__/functools.cpython-313.pyc`, `Lib/__pycache__/genericpath.cpython-313.pyc`, `Lib/__pycache__/gettext.cpython-313.pyc`, `Lib/__pycache__/glob.cpython-313.pyc`, `Lib/__pycache__/heapq.cpython-313.pyc`, `Lib/__pycache__/inspect.cpython-313.pyc`, `Lib/__pycache__/io.cpython-313.pyc`, `Lib/__pycache__/keyword.cpython-313.pyc`, `Lib/__pycache__/linecache.cpython-313.pyc`, `Lib/__pycache__/locale.cpython-313.pyc`, `Lib/__pycache__/lzma.cpython-313.pyc`, `Lib/__pycache__/numbers.cpython-313.pyc`, `Lib/__pycache__/opcode.cpython-313.pyc`, `Lib/__pycache__/operator.cpython-313.pyc`, `Lib/__pycache__/os.cpython-313.pyc`, `Lib/__pycache__/posixpath.cpython-313.pyc`, `Lib/__pycache__/reprlib.cpython-313.pyc`, `Lib/__pycache__/selectors.cpython-313.pyc`, `Lib/__pycache__/shutil.cpython-313.pyc`, `Lib/__pycache__/signal.cpython-313.pyc`, `Lib/__pycache__/site.cpython-313.pyc`, `Lib/__pycache__/socket.cpython-313.pyc`, `Lib/__pycache__/ssl.cpython-313.pyc`, `Lib/__pycache__/stat.cpython-313.pyc`, `Lib/__pycache__/string.cpython-313.pyc`, `Lib/__pycache__/struct.cpython-313.pyc`, `Lib/__pycache__/subprocess.cpython-313.pyc`, `Lib/__pycache__/textwrap.cpython-313.pyc`, `Lib/__pycache__/threading.cpython-313.pyc`, `Lib/__pycache__/token.cpython-313.pyc`, `Lib/__pycache__/tokenize.cpython-313.pyc`, `Lib/__pycache__/traceback.cpython-313.pyc`, `Lib/__pycache__/types.cpython-313.pyc`, `Lib/__pycache__/typing.cpython-313.pyc`, `Lib/__pycache__/warnings.cpython-313.pyc`, `Lib/__pycache__/weakref.cpython-313.pyc`, `Lib/asyncio/__pycache__/__init__.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_events.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_futures.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_subprocess.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_tasks.cpython-313.pyc`, `Lib/asyncio/__pycache__/constants.cpython-313.pyc`, `Lib/asyncio/__pycache__/coroutines.cpython-313.pyc`, `Lib/asyncio/__pycache__/events.cpython-313.pyc`, `Lib/asyncio/__pycache__/exceptions.cpython-313.pyc`, `Lib/asyncio/__pycache__/format_helpers.cpython-313.pyc`, `Lib/asyncio/__pycache__/futures.cpython-313.pyc`, `Lib/asyncio/__pycache__/locks.cpython-313.pyc`, `Lib/asyncio/__pycache__/log.cpython-313.pyc`, `Lib/asyncio/__pycache__/mixins.cpython-313.pyc`, `Lib/asyncio/__pycache__/protocols.cpython-313.pyc`, `Lib/asyncio/__pycache__/queues.cpython-313.pyc`, `Lib/asyncio/__pycache__/runners.cpython-313.pyc`, `Lib/asyncio/__pycache__/selector_events.cpython-313.pyc`, `Lib/asyncio/__pycache__/sslproto.cpython-313.pyc`, `Lib/asyncio/__pycache__/staggered.cpython-313.pyc`, `Lib/asyncio/__pycache__/streams.cpython-313.pyc`, `Lib/asyncio/__pycache__/subprocess.cpython-313.pyc`, `Lib/asyncio/__pycache__/taskgroups.cpython-313.pyc`, `Lib/asyncio/__pycache__/tasks.cpython-313.pyc`, `Lib/asyncio/__pycache__/threads.cpython-313.pyc`, `Lib/asyncio/__pycache__/timeouts.cpython-313.pyc`, `Lib/asyncio/__pycache__/transports.cpython-313.pyc`, `Lib/asyncio/__pycache__/trsock.cpython-313.pyc`, `Lib/asyncio/__pycache__/unix_events.cpython-313.pyc`, `Lib/collections/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/futures/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/futures/__pycache__/_base.cpython-313.pyc`, `Lib/encodings/__pycache__/__init__.cpython-313.pyc`, `Lib/encodings/__pycache__/aliases.cpython-313.pyc`, `Lib/encodings/__pycache__/ascii.cpython-313.pyc`, `Lib/encodings/__pycache__/utf_8.cpython-313.pyc`, `Lib/importlib/__pycache__/__init__.cpython-313.pyc`, `Lib/importlib/__pycache__/_abc.cpython-313.pyc`, `Lib/logging/__pycache__/__init__.cpython-313.pyc`, `Lib/pathlib/__pycache__/__init__.cpython-313.pyc`, `Lib/pathlib/__pycache__/_abc.cpython-313.pyc`, `Lib/pathlib/__pycache__/_local.cpython-313.pyc`, `Lib/re/__pycache__/__init__.cpython-313.pyc`, `Lib/re/__pycache__/_casefix.cpython-313.pyc`, `Lib/re/__pycache__/_compiler.cpython-313.pyc`, `Lib/re/__pycache__/_constants.cpython-313.pyc`, `Lib/re/__pycache__/_parser.cpython-313.pyc`, `Lib/sysconfig/__pycache__/__init__.cpython-313.pyc`, `Lib/sysconfig/__pycache__/__main__.cpython-313.pyc`, `Lib/xml/__pycache__/__init__.cpython-313.pyc`, `Lib/xml/etree/__pycache__/ElementPath.cpython-313.pyc`, `Lib/xml/etree/__pycache__/__init__.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/__init__.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/_common.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/_tzpath.cpython-313.pyc`, `Makefile`, `Makefile.pre`, `Misc/python-config.sh`, `Misc/python-embed.pc`, `Misc/python.pc`, `Modules/Setup.bootstrap`, `Modules/Setup.local`, `Modules/Setup.stdlib`, `Modules/_abc.o`, `Modules/_asyncio.cpython-313-x86_64-linux-gnu.so`, `Modules/_asynciomodule.o`, `Modules/_bisect.cpython-313-x86_64-linux-gnu.so`, `Modules/_bisectmodule.o`, `Modules/_blake2.cpython-313-x86_64-linux-gnu.so`, `Modules/_blake2/blake2b_impl.o`, `Modules/_blake2/blake2module.o`, `Modules/_blake2/blake2s_impl.o`, `Modules/_bz2.cpython-313-x86_64-linux-gnu.so`, `Modules/_bz2module.o`, `Modules/_codecs_cn.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_hk.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_iso2022.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_jp.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_kr.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_tw.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecsmodule.o`, `Modules/_collectionsmodule.o`, `Modules/_contextvars.cpython-313-x86_64-linux-gnu.so`, `Modules/_contextvarsmodule.o`, `Modules/_csv.cpython-313-x86_64-linux-gnu.so`, `Modules/_csv.o`, `Modules/_ctypes.cpython-313-x86_64-linux-gnu.so`, `Modules/_ctypes/_ctypes.o`, `Modules/_ctypes/_ctypes_test.o`, `Modules/_ctypes/callbacks.o`, `Modules/_ctypes/callproc.o`, `Modules/_ctypes/cfield.o`, `Modules/_ctypes/stgdict.o`, `Modules/_ctypes_test.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses_panel.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses_panel.o`, `Modules/_cursesmodule.o`, `Modules/_datetime.cpython-313-x86_64-linux-gnu.so`, `Modules/_datetimemodule.o`, `Modules/_decimal.cpython-313-x86_64-linux-gnu.so`, `Modules/_decimal/_decimal.o`, `Modules/_decimal/libmpdec/basearith.o`, `Modules/_decimal/libmpdec/constants.o`, `Modules/_decimal/libmpdec/context.o`, `Modules/_decimal/libmpdec/convolute.o`, `Modules/_decimal/libmpdec/crt.o`, `Modules/_decimal/libmpdec/difradix2.o`, `Modules/_decimal/libmpdec/fnt.o`, `Modules/_decimal/libmpdec/fourstep.o`, `Modules/_decimal/libmpdec/io.o`, `Modules/_decimal/libmpdec/libmpdec.a`, `Modules/_decimal/libmpdec/mpalloc.o`, `Modules/_decimal/libmpdec/mpdecimal.o`, `Modules/_decimal/libmpdec/numbertheory.o`, `Modules/_decimal/libmpdec/sixstep.o`, `Modules/_decimal/libmpdec/transpose.o`, `Modules/_elementtree.cpython-313-x86_64-linux-gnu.so`, `Modules/_elementtree.o`, `Modules/_functoolsmodule.o`, `Modules/_hacl/Hacl_Hash_MD5.o`, `Modules/_hacl/Hacl_Hash_SHA1.o`, `Modules/_hacl/Hacl_Hash_SHA2.o`, `Modules/_hacl/Hacl_Hash_SHA3.o`, `Modules/_hacl/libHacl_Hash_SHA2.a`, `Modules/_hashlib.cpython-313-x86_64-linux-gnu.so`, `Modules/_hashopenssl.o`, `Modules/_heapq.cpython-313-x86_64-linux-gnu.so`, `Modules/_heapqmodule.o`, `Modules/_interpchannels.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpchannelsmodule.o`, `Modules/_interpqueues.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpqueuesmodule.o`, `Modules/_interpreters.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpretersmodule.o`, `Modules/_io/_iomodule.o`, `Modules/_io/bufferedio.o`, `Modules/_io/bytesio.o`, `Modules/_io/fileio.o`, `Modules/_io/iobase.o`, `Modules/_io/stringio.o`, `Modules/_io/textio.o`, `Modules/_json.cpython-313-x86_64-linux-gnu.so`, `Modules/_json.o`, `Modules/_localemodule.o`, `Modules/_lsprof.cpython-313-x86_64-linux-gnu.so`, `Modules/_lsprof.o`, `Modules/_lzma.cpython-313-x86_64-linux-gnu.so`, `Modules/_lzmamodule.o`, `Modules/_md5.cpython-313-x86_64-linux-gnu.so`, `Modules/_multibytecodec.cpython-313-x86_64-linux-gnu.so`, `Modules/_multiprocessing.cpython-313-x86_64-linux-gnu.so`, `Modules/_multiprocessing/multiprocessing.o`, `Modules/_multiprocessing/posixshmem.o`, `Modules/_multiprocessing/semaphore.o`, `Modules/_opcode.cpython-313-x86_64-linux-gnu.so`, `Modules/_opcode.o`, `Modules/_operator.o`, `Modules/_pickle.cpython-313-x86_64-linux-gnu.so`, `Modules/_pickle.o`, `Modules/_posixshmem.cpython-313-x86_64-linux-gnu.so`, `Modules/_posixsubprocess.cpython-313-x86_64-linux-gnu.so`, `Modules/_posixsubprocess.o`, `Modules/_queue.cpython-313-x86_64-linux-gnu.so`, `Modules/_queuemodule.o`, `Modules/_random.cpython-313-x86_64-linux-gnu.so`, `Modules/_randommodule.o`, `Modules/_sha1.cpython-313-x86_64-linux-gnu.so`, `Modules/_sha2.cpython-313-x86_64-linux-gnu.so`, `Modules/_sha3.cpython-313-x86_64-linux-gnu.so`, `Modules/_socket.cpython-313-x86_64-linux-gnu.so`, `Modules/_sqlite/blob.o`, `Modules/_sqlite/connection.o`, `Modules/_sqlite/cursor.o`, `Modules/_sqlite/microprotocols.o`, `Modules/_sqlite/module.o`, `Modules/_sqlite/prepare_protocol.o`, `Modules/_sqlite/row.o`, `Modules/_sqlite/statement.o`, `Modules/_sqlite/util.o`, `Modules/_sqlite3.cpython-313-x86_64-linux-gnu.so`, `Modules/_sre/sre.o`, `Modules/_ssl.o`, `Modules/_ssl_failed.cpython-313-x86_64-linux-gnu.so`, `Modules/_stat.o`, `Modules/_statistics.cpython-313-x86_64-linux-gnu.so`, `Modules/_statisticsmodule.o`, `Modules/_struct.cpython-313-x86_64-linux-gnu.so`, `Modules/_struct.o`, `Modules/_suggestions.o`, `Modules/_sysconfig.o`, `Modules/_testbuffer.cpython-313-x86_64-linux-gnu.so`, `Modules/_testbuffer.o`, `Modules/_testcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testcapi/abstract.o`, `Modules/_testcapi/buffer.o`, `Modules/_testcapi/bytes.o`, `Modules/_testcapi/code.o`, `Modules/_testcapi/codec.o`, `Modules/_testcapi/complex.o`, `Modules/_testcapi/datetime.o`, `Modules/_testcapi/dict.o`, `Modules/_testcapi/docstring.o`, `Modules/_testcapi/exceptions.o`, `Modules/_testcapi/file.o`, `Modules/_testcapi/float.o`, `Modules/_testcapi/gc.o`, `Modules/_testcapi/getargs.o`, `Modules/_testcapi/hash.o`, `Modules/_testcapi/heaptype.o`, `Modules/_testcapi/immortal.o`, `Modules/_testcapi/list.o`, `Modules/_testcapi/long.o`, `Modules/_testcapi/mem.o`, `Modules/_testcapi/monitoring.o`, `Modules/_testcapi/numbers.o`, `Modules/_testcapi/object.o`, `Modules/_testcapi/pyatomic.o`, `Modules/_testcapi/run.o`, `Modules/_testcapi/set.o`, `Modules/_testcapi/structmember.o`, `Modules/_testcapi/time.o`, `Modules/_testcapi/tuple.o`, `Modules/_testcapi/unicode.o`, `Modules/_testcapi/vectorcall.o`, `Modules/_testcapi/watchers.o`, `Modules/_testcapimodule.o`, `Modules/_testclinic.cpython-313-x86_64-linux-gnu.so`, `Modules/_testclinic.o`, `Modules/_testclinic_limited.cpython-313-x86_64-linux-gnu.so`, `Modules/_testclinic_limited.o`, `Modules/_testexternalinspection.cpython-313-x86_64-linux-gnu.so`, `Modules/_testexternalinspection.o`, `Modules/_testimportmultiple.cpython-313-x86_64-linux-gnu.so`, `Modules/_testimportmultiple.o`, `Modules/_testinternalcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testinternalcapi.o`, `Modules/_testinternalcapi/pytime.o`, `Modules/_testinternalcapi/set.o`, `Modules/_testinternalcapi/test_critical_sections.o`, `Modules/_testinternalcapi/test_lock.o`, `Modules/_testlimitedcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testlimitedcapi.o`, `Modules/_testlimitedcapi/abstract.o`, `Modules/_testlimitedcapi/bytearray.o`, `Modules/_testlimitedcapi/bytes.o`, `Modules/_testlimitedcapi/complex.o`, `Modules/_testlimitedcapi/dict.o`, `Modules/_testlimitedcapi/eval.o`, `Modules/_testlimitedcapi/file.o`, `Modules/_testlimitedcapi/float.o`, `Modules/_testlimitedcapi/heaptype_relative.o`, `Modules/_testlimitedcapi/import.o`, `Modules/_testlimitedcapi/list.o`, `Modules/_testlimitedcapi/long.o`, `Modules/_testlimitedcapi/object.o`, `Modules/_testlimitedcapi/pyos.o`, `Modules/_testlimitedcapi/set.o`, `Modules/_testlimitedcapi/sys.o`, `Modules/_testlimitedcapi/tuple.o`, `Modules/_testlimitedcapi/unicode.o`, `Modules/_testlimitedcapi/vectorcall_limited.o`, `Modules/_testmultiphase.cpython-313-x86_64-linux-gnu.so`, `Modules/_testmultiphase.o`, `Modules/_testsinglephase.cpython-313-x86_64-linux-gnu.so`, `Modules/_testsinglephase.o`, `Modules/_threadmodule.o`, `Modules/_tracemalloc.o`, `Modules/_typingmodule.o`, `Modules/_uuid.cpython-313-x86_64-linux-gnu.so`, `Modules/_uuidmodule.o`, `Modules/_weakref.o`, `Modules/_xxtestfuzz.cpython-313-x86_64-linux-gnu.so`, `Modules/_xxtestfuzz/_xxtestfuzz.o`, `Modules/_xxtestfuzz/fuzzer.o`, `Modules/_zoneinfo.cpython-313-x86_64-linux-gnu.so`, `Modules/_zoneinfo.o`, `Modules/array.cpython-313-x86_64-linux-gnu.so`, `Modules/arraymodule.o`, `Modules/atexitmodule.o`, `Modules/binascii.cpython-313-x86_64-linux-gnu.so`, `Modules/binascii.o`, `Modules/cjkcodecs/_codecs_cn.o`, `Modules/cjkcodecs/_codecs_hk.o`, `Modules/cjkcodecs/_codecs_iso2022.o`, `Modules/cjkcodecs/_codecs_jp.o`, `Modules/cjkcodecs/_codecs_kr.o`, `Modules/cjkcodecs/_codecs_tw.o`, `Modules/cjkcodecs/multibytecodec.o`, `Modules/cmath.cpython-313-x86_64-linux-gnu.so`, `Modules/cmathmodule.o`, `Modules/config.c`, `Modules/config.o`, `Modules/errnomodule.o`, `Modules/expat/libexpat.a`, `Modules/expat/xmlparse.o`, `Modules/expat/xmlrole.o`, `Modules/expat/xmltok.o`, `Modules/faulthandler.o`, `Modules/fcntl.cpython-313-x86_64-linux-gnu.so`, `Modules/fcntlmodule.o`, `Modules/gcmodule.o`, `Modules/getbuildinfo.o`, `Modules/getpath.o`, `Modules/getpath_noop.o`, `Modules/grp.cpython-313-x86_64-linux-gnu.so`, `Modules/grpmodule.o`, `Modules/itertoolsmodule.o`, `Modules/ld_so_aix`, `Modules/main.o`, `Modules/math.cpython-313-x86_64-linux-gnu.so`, `Modules/mathmodule.o`, `Modules/md5module.o`, `Modules/mmap.cpython-313-x86_64-linux-gnu.so`, `Modules/mmapmodule.o`, `Modules/posixmodule.o`, `Modules/pwdmodule.o`, `Modules/pyexpat.cpython-313-x86_64-linux-gnu.so`, `Modules/pyexpat.o`, `Modules/readline.cpython-313-x86_64-linux-gnu.so`, `Modules/readline.o`, `Modules/resource.cpython-313-x86_64-linux-gnu.so`, `Modules/resource.o`, `Modules/rotatingtree.o`, `Modules/select.cpython-313-x86_64-linux-gnu.so`, `Modules/selectmodule.o`, `Modules/sha1module.o`, `Modules/sha2module.o`, `Modules/sha3module.o`, `Modules/signalmodule.o`, `Modules/socketmodule.o`, `Modules/symtablemodule.o`, `Modules/syslog.cpython-313-x86_64-linux-gnu.so`, `Modules/syslogmodule.o`, `Modules/termios.cpython-313-x86_64-linux-gnu.so`, `Modules/termios.o`, `Modules/timemodule.o`, `Modules/unicodedata.cpython-313-x86_64-linux-gnu.so`, `Modules/unicodedata.o`, `Modules/xxlimited.cpython-313-x86_64-linux-gnu.so`, `Modules/xxlimited.o`, `Modules/xxlimited_35.cpython-313-x86_64-linux-gnu.so`, `Modules/xxlimited_35.o`, `Modules/xxsubtype.cpython-313-x86_64-linux-gnu.so`, `Modules/xxsubtype.o`, `Modules/zlib.cpython-313-x86_64-linux-gnu.so`, `Modules/zlibmodule.o`, `Objects/abstract.o`, `Objects/boolobject.o`, `Objects/bytearrayobject.o`, `Objects/bytes_methods.o`, `Objects/bytesobject.o`, `Objects/call.o`, `Objects/capsule.o`, `Objects/cellobject.o`, `Objects/classobject.o`, `Objects/codeobject.o`, `Objects/complexobject.o`, `Objects/descrobject.o`, `Objects/dictobject.o`, `Objects/enumobject.o`, `Objects/exceptions.o`, `Objects/fileobject.o`, `Objects/floatobject.o`, `Objects/frameobject.o`, `Objects/funcobject.o`, `Objects/genericaliasobject.o`, `Objects/genobject.o`, `Objects/iterobject.o`, `Objects/listobject.o`, `Objects/longobject.o`, `Objects/memoryobject.o`, `Objects/methodobject.o`, `Objects/moduleobject.o`, `Objects/namespaceobject.o`, `Objects/object.o`, `Objects/obmalloc.o`, `Objects/odictobject.o`, `Objects/picklebufobject.o`, `Objects/rangeobject.o`, `Objects/setobject.o`, `Objects/sliceobject.o`, `Objects/structseq.o`, `Objects/tupleobject.o`, `Objects/typeobject.o`, `Objects/typevarobject.o`, `Objects/unicodectype.o`, `Objects/unicodeobject.o`, `Objects/unionobject.o`, `Objects/weakrefobject.o`, `Parser/action_helpers.o`, `Parser/lexer/buffer.o`, `Parser/lexer/lexer.o`, `Parser/lexer/state.o`, `Parser/myreadline.o`, `Parser/parser.o`, `Parser/peg_api.o`, `Parser/pegen.o`, `Parser/pegen_errors.o`, `Parser/string_parser.o`, `Parser/token.o`, `Parser/tokenizer/file_tokenizer.o`, `Parser/tokenizer/helpers.o`, `Parser/tokenizer/readline_tokenizer.o`, `Parser/tokenizer/string_tokenizer.o`, `Parser/tokenizer/utf8_tokenizer.o`, `Programs/_bootstrap_python.o`, `Programs/_freeze_module`, `Programs/_freeze_module.o`, `Programs/_testembed`, `Programs/_testembed.o`, `Programs/python.o`, `Python/Python-ast.o`, `Python/Python-tokenize.o`, `Python/_warnings.o`, `Python/asdl.o`, `Python/asm_trampoline.o`, `Python/assemble.o`, `Python/ast.o`, `Python/ast_opt.o`, `Python/ast_unparse.o`, `Python/bltinmodule.o`, `Python/bootstrap_hash.o`, `Python/brc.o`, `Python/ceval.o`, `Python/ceval_gil.o`, `Python/codecs.o`, `Python/compile.o`, `Python/context.o`, `Python/critical_section.o`, `Python/crossinterp.o`, `Python/dtoa.o`, `Python/dynamic_annotations.o`, `Python/dynload_shlib.o`, `Python/errors.o`, `Python/fileutils.o`, `Python/flowgraph.o`, `Python/formatter_unicode.o`, `Python/frame.o`, `Python/frozen.o`, `Python/frozen_modules/__hello__.h`, `Python/frozen_modules/__phello__.h`, `Python/frozen_modules/__phello__.ham.eggs.h`, `Python/frozen_modules/__phello__.ham.h`, `Python/frozen_modules/__phello__.spam.h`, `Python/frozen_modules/_collections_abc.h`, `Python/frozen_modules/_sitebuiltins.h`, `Python/frozen_modules/abc.h`, `Python/frozen_modules/codecs.h`, `Python/frozen_modules/frozen_only.h`, `Python/frozen_modules/genericpath.h`, `Python/frozen_modules/getpath.h`, `Python/frozen_modules/importlib._bootstrap.h`, `Python/frozen_modules/importlib._bootstrap_external.h`, `Python/frozen_modules/importlib.machinery.h`, `Python/frozen_modules/importlib.util.h`, `Python/frozen_modules/io.h`, `Python/frozen_modules/ntpath.h`, `Python/frozen_modules/os.h`, `Python/frozen_modules/posixpath.h`, `Python/frozen_modules/runpy.h`, `Python/frozen_modules/site.h`, `Python/frozen_modules/stat.h`, `Python/frozen_modules/zipimport.h`, `Python/frozenmain.o`, `Python/future.o`, `Python/gc.o`, `Python/gc_free_threading.o`, `Python/gc_gil.o`, `Python/getargs.o`, `Python/getcompiler.o`, `Python/getcopyright.o`, `Python/getopt.o`, `Python/getplatform.o`, `Python/getversion.o`, `Python/hamt.o`, `Python/hashtable.o`, `Python/import.o`, `Python/importdl.o`, `Python/initconfig.o`, `Python/instruction_sequence.o`, `Python/instrumentation.o`, `Python/interpconfig.o`, `Python/intrinsics.o`, `Python/jit.o`, `Python/legacy_tracing.o`, `Python/lock.o`, `Python/marshal.o`, `Python/modsupport.o`, `Python/mysnprintf.o`, `Python/mystrtoul.o`, `Python/object_stack.o`, `Python/optimizer.o`, `Python/optimizer_analysis.o`, `Python/optimizer_symbols.o`, `Python/parking_lot.o`, `Python/pathconfig.o`, `Python/perf_jit_trampoline.o`, `Python/perf_trampoline.o`, `Python/preconfig.o`, `Python/pyarena.o`, `Python/pyctype.o`, `Python/pyfpe.o`, `Python/pyhash.o`, `Python/pylifecycle.o`, `Python/pymath.o`, `Python/pystate.o`, `Python/pystrcmp.o`, `Python/pystrhex.o`, `Python/pystrtod.o`, `Python/pythonrun.o`, `Python/pytime.o`, `Python/qsbr.o`, `Python/specialize.o`, `Python/structmember.o`, `Python/suggestions.o`, `Python/symtable.o`, `Python/sysmodule.o`, `Python/thread.o`, `Python/traceback.o`, `Python/tracemalloc.o`, `_bootstrap_python`, `build/lib.linux-x86_64-3.13/__pycache__/_sysconfigdata__linux_x86_64-linux-gnu.cpython-313.pyc`, `build/lib.linux-x86_64-3.13/_asyncio.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_bisect.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_blake2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_bz2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_cn.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_hk.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_iso2022.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_jp.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_kr.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_tw.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_contextvars.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_csv.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_ctypes.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_ctypes_test.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_curses.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_curses_panel.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_datetime.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_decimal.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_elementtree.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_hashlib.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_heapq.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpchannels.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpqueues.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpreters.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_json.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_lsprof.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_lzma.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_md5.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_multibytecodec.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_multiprocessing.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_opcode.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_pickle.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_posixshmem.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_posixsubprocess.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_queue.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_random.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha1.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha3.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_socket.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sqlite3.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_statistics.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_struct.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sysconfigdata__linux_x86_64-linux-gnu.py`, `build/lib.linux-x86_64-3.13/_testbuffer.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testclinic.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testclinic_limited.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testexternalinspection.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testimportmultiple.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testinternalcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testlimitedcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testmultiphase.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testsinglephase.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_uuid.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_xxtestfuzz.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_zoneinfo.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/array.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/binascii.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/cmath.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/fcntl.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/grp.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/math.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/mmap.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/pyexpat.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/readline.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/resource.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/select.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/syslog.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/termios.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/unicodedata.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxlimited.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxlimited_35.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxsubtype.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/zlib.cpython-313-x86_64-linux-gnu.so`, `build/scripts-3.13/idle3.13`, `build/scripts-3.13/pydoc3.13`, `config.log`, `config.status`, `libpython3.13.a`, `platform`, `pybuilddir.txt`, `pyconfig.h`, `python`, `python-config`, `python-config.py`, `python-gdb.py`, but `## Git Add Paths` lists `None`. Update `## Git Add Paths` to match the real shipped file set exactly, and make sure `## Issue Connection` explains every functional file that remains in the patch.
2. Missing from `## Git Add Paths`: `Lib/__pycache__/__future__.cpython-313.pyc`, `Lib/__pycache__/_collections_abc.cpython-313.pyc`, `Lib/__pycache__/_colorize.cpython-313.pyc`, `Lib/__pycache__/_compat_pickle.cpython-313.pyc`, `Lib/__pycache__/_compression.cpython-313.pyc`, `Lib/__pycache__/_opcode_metadata.cpython-313.pyc`, `Lib/__pycache__/_sitebuiltins.cpython-313.pyc`, `Lib/__pycache__/_weakrefset.cpython-313.pyc`, `Lib/__pycache__/abc.cpython-313.pyc`, `Lib/__pycache__/argparse.cpython-313.pyc`, `Lib/__pycache__/ast.cpython-313.pyc`, `Lib/__pycache__/bz2.cpython-313.pyc`, `Lib/__pycache__/codecs.cpython-313.pyc`, `Lib/__pycache__/contextlib.cpython-313.pyc`, `Lib/__pycache__/contextvars.cpython-313.pyc`, `Lib/__pycache__/copy.cpython-313.pyc`, `Lib/__pycache__/copyreg.cpython-313.pyc`, `Lib/__pycache__/datetime.cpython-313.pyc`, `Lib/__pycache__/dis.cpython-313.pyc`, `Lib/__pycache__/enum.cpython-313.pyc`, `Lib/__pycache__/fnmatch.cpython-313.pyc`, `Lib/__pycache__/functools.cpython-313.pyc`, `Lib/__pycache__/genericpath.cpython-313.pyc`, `Lib/__pycache__/gettext.cpython-313.pyc`, `Lib/__pycache__/glob.cpython-313.pyc`, `Lib/__pycache__/heapq.cpython-313.pyc`, `Lib/__pycache__/inspect.cpython-313.pyc`, `Lib/__pycache__/io.cpython-313.pyc`, `Lib/__pycache__/keyword.cpython-313.pyc`, `Lib/__pycache__/linecache.cpython-313.pyc`, `Lib/__pycache__/locale.cpython-313.pyc`, `Lib/__pycache__/lzma.cpython-313.pyc`, `Lib/__pycache__/numbers.cpython-313.pyc`, `Lib/__pycache__/opcode.cpython-313.pyc`, `Lib/__pycache__/operator.cpython-313.pyc`, `Lib/__pycache__/os.cpython-313.pyc`, `Lib/__pycache__/posixpath.cpython-313.pyc`, `Lib/__pycache__/reprlib.cpython-313.pyc`, `Lib/__pycache__/selectors.cpython-313.pyc`, `Lib/__pycache__/shutil.cpython-313.pyc`, `Lib/__pycache__/signal.cpython-313.pyc`, `Lib/__pycache__/site.cpython-313.pyc`, `Lib/__pycache__/socket.cpython-313.pyc`, `Lib/__pycache__/ssl.cpython-313.pyc`, `Lib/__pycache__/stat.cpython-313.pyc`, `Lib/__pycache__/string.cpython-313.pyc`, `Lib/__pycache__/struct.cpython-313.pyc`, `Lib/__pycache__/subprocess.cpython-313.pyc`, `Lib/__pycache__/textwrap.cpython-313.pyc`, `Lib/__pycache__/threading.cpython-313.pyc`, `Lib/__pycache__/token.cpython-313.pyc`, `Lib/__pycache__/tokenize.cpython-313.pyc`, `Lib/__pycache__/traceback.cpython-313.pyc`, `Lib/__pycache__/types.cpython-313.pyc`, `Lib/__pycache__/typing.cpython-313.pyc`, `Lib/__pycache__/warnings.cpython-313.pyc`, `Lib/__pycache__/weakref.cpython-313.pyc`, `Lib/asyncio/__pycache__/__init__.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_events.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_futures.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_subprocess.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_tasks.cpython-313.pyc`, `Lib/asyncio/__pycache__/constants.cpython-313.pyc`, `Lib/asyncio/__pycache__/coroutines.cpython-313.pyc`, `Lib/asyncio/__pycache__/events.cpython-313.pyc`, `Lib/asyncio/__pycache__/exceptions.cpython-313.pyc`, `Lib/asyncio/__pycache__/format_helpers.cpython-313.pyc`, `Lib/asyncio/__pycache__/futures.cpython-313.pyc`, `Lib/asyncio/__pycache__/locks.cpython-313.pyc`, `Lib/asyncio/__pycache__/log.cpython-313.pyc`, `Lib/asyncio/__pycache__/mixins.cpython-313.pyc`, `Lib/asyncio/__pycache__/protocols.cpython-313.pyc`, `Lib/asyncio/__pycache__/queues.cpython-313.pyc`, `Lib/asyncio/__pycache__/runners.cpython-313.pyc`, `Lib/asyncio/__pycache__/selector_events.cpython-313.pyc`, `Lib/asyncio/__pycache__/sslproto.cpython-313.pyc`, `Lib/asyncio/__pycache__/staggered.cpython-313.pyc`, `Lib/asyncio/__pycache__/streams.cpython-313.pyc`, `Lib/asyncio/__pycache__/subprocess.cpython-313.pyc`, `Lib/asyncio/__pycache__/taskgroups.cpython-313.pyc`, `Lib/asyncio/__pycache__/tasks.cpython-313.pyc`, `Lib/asyncio/__pycache__/threads.cpython-313.pyc`, `Lib/asyncio/__pycache__/timeouts.cpython-313.pyc`, `Lib/asyncio/__pycache__/transports.cpython-313.pyc`, `Lib/asyncio/__pycache__/trsock.cpython-313.pyc`, `Lib/asyncio/__pycache__/unix_events.cpython-313.pyc`, `Lib/collections/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/futures/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/futures/__pycache__/_base.cpython-313.pyc`, `Lib/encodings/__pycache__/__init__.cpython-313.pyc`, `Lib/encodings/__pycache__/aliases.cpython-313.pyc`, `Lib/encodings/__pycache__/ascii.cpython-313.pyc`, `Lib/encodings/__pycache__/utf_8.cpython-313.pyc`, `Lib/importlib/__pycache__/__init__.cpython-313.pyc`, `Lib/importlib/__pycache__/_abc.cpython-313.pyc`, `Lib/logging/__pycache__/__init__.cpython-313.pyc`, `Lib/pathlib/__pycache__/__init__.cpython-313.pyc`, `Lib/pathlib/__pycache__/_abc.cpython-313.pyc`, `Lib/pathlib/__pycache__/_local.cpython-313.pyc`, `Lib/re/__pycache__/__init__.cpython-313.pyc`, `Lib/re/__pycache__/_casefix.cpython-313.pyc`, `Lib/re/__pycache__/_compiler.cpython-313.pyc`, `Lib/re/__pycache__/_constants.cpython-313.pyc`, `Lib/re/__pycache__/_parser.cpython-313.pyc`, `Lib/sysconfig/__pycache__/__init__.cpython-313.pyc`, `Lib/sysconfig/__pycache__/__main__.cpython-313.pyc`, `Lib/xml/__pycache__/__init__.cpython-313.pyc`, `Lib/xml/etree/__pycache__/ElementPath.cpython-313.pyc`, `Lib/xml/etree/__pycache__/__init__.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/__init__.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/_common.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/_tzpath.cpython-313.pyc`, `Makefile`, `Makefile.pre`, `Misc/python-config.sh`, `Misc/python-embed.pc`, `Misc/python.pc`, `Modules/Setup.bootstrap`, `Modules/Setup.local`, `Modules/Setup.stdlib`, `Modules/_abc.o`, `Modules/_asyncio.cpython-313-x86_64-linux-gnu.so`, `Modules/_asynciomodule.o`, `Modules/_bisect.cpython-313-x86_64-linux-gnu.so`, `Modules/_bisectmodule.o`, `Modules/_blake2.cpython-313-x86_64-linux-gnu.so`, `Modules/_blake2/blake2b_impl.o`, `Modules/_blake2/blake2module.o`, `Modules/_blake2/blake2s_impl.o`, `Modules/_bz2.cpython-313-x86_64-linux-gnu.so`, `Modules/_bz2module.o`, `Modules/_codecs_cn.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_hk.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_iso2022.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_jp.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_kr.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_tw.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecsmodule.o`, `Modules/_collectionsmodule.o`, `Modules/_contextvars.cpython-313-x86_64-linux-gnu.so`, `Modules/_contextvarsmodule.o`, `Modules/_csv.cpython-313-x86_64-linux-gnu.so`, `Modules/_csv.o`, `Modules/_ctypes.cpython-313-x86_64-linux-gnu.so`, `Modules/_ctypes/_ctypes.o`, `Modules/_ctypes/_ctypes_test.o`, `Modules/_ctypes/callbacks.o`, `Modules/_ctypes/callproc.o`, `Modules/_ctypes/cfield.o`, `Modules/_ctypes/stgdict.o`, `Modules/_ctypes_test.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses_panel.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses_panel.o`, `Modules/_cursesmodule.o`, `Modules/_datetime.cpython-313-x86_64-linux-gnu.so`, `Modules/_datetimemodule.o`, `Modules/_decimal.cpython-313-x86_64-linux-gnu.so`, `Modules/_decimal/_decimal.o`, `Modules/_decimal/libmpdec/basearith.o`, `Modules/_decimal/libmpdec/constants.o`, `Modules/_decimal/libmpdec/context.o`, `Modules/_decimal/libmpdec/convolute.o`, `Modules/_decimal/libmpdec/crt.o`, `Modules/_decimal/libmpdec/difradix2.o`, `Modules/_decimal/libmpdec/fnt.o`, `Modules/_decimal/libmpdec/fourstep.o`, `Modules/_decimal/libmpdec/io.o`, `Modules/_decimal/libmpdec/libmpdec.a`, `Modules/_decimal/libmpdec/mpalloc.o`, `Modules/_decimal/libmpdec/mpdecimal.o`, `Modules/_decimal/libmpdec/numbertheory.o`, `Modules/_decimal/libmpdec/sixstep.o`, `Modules/_decimal/libmpdec/transpose.o`, `Modules/_elementtree.cpython-313-x86_64-linux-gnu.so`, `Modules/_elementtree.o`, `Modules/_functoolsmodule.o`, `Modules/_hacl/Hacl_Hash_MD5.o`, `Modules/_hacl/Hacl_Hash_SHA1.o`, `Modules/_hacl/Hacl_Hash_SHA2.o`, `Modules/_hacl/Hacl_Hash_SHA3.o`, `Modules/_hacl/libHacl_Hash_SHA2.a`, `Modules/_hashlib.cpython-313-x86_64-linux-gnu.so`, `Modules/_hashopenssl.o`, `Modules/_heapq.cpython-313-x86_64-linux-gnu.so`, `Modules/_heapqmodule.o`, `Modules/_interpchannels.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpchannelsmodule.o`, `Modules/_interpqueues.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpqueuesmodule.o`, `Modules/_interpreters.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpretersmodule.o`, `Modules/_io/_iomodule.o`, `Modules/_io/bufferedio.o`, `Modules/_io/bytesio.o`, `Modules/_io/fileio.o`, `Modules/_io/iobase.o`, `Modules/_io/stringio.o`, `Modules/_io/textio.o`, `Modules/_json.cpython-313-x86_64-linux-gnu.so`, `Modules/_json.o`, `Modules/_localemodule.o`, `Modules/_lsprof.cpython-313-x86_64-linux-gnu.so`, `Modules/_lsprof.o`, `Modules/_lzma.cpython-313-x86_64-linux-gnu.so`, `Modules/_lzmamodule.o`, `Modules/_md5.cpython-313-x86_64-linux-gnu.so`, `Modules/_multibytecodec.cpython-313-x86_64-linux-gnu.so`, `Modules/_multiprocessing.cpython-313-x86_64-linux-gnu.so`, `Modules/_multiprocessing/multiprocessing.o`, `Modules/_multiprocessing/posixshmem.o`, `Modules/_multiprocessing/semaphore.o`, `Modules/_opcode.cpython-313-x86_64-linux-gnu.so`, `Modules/_opcode.o`, `Modules/_operator.o`, `Modules/_pickle.cpython-313-x86_64-linux-gnu.so`, `Modules/_pickle.o`, `Modules/_posixshmem.cpython-313-x86_64-linux-gnu.so`, `Modules/_posixsubprocess.cpython-313-x86_64-linux-gnu.so`, `Modules/_posixsubprocess.o`, `Modules/_queue.cpython-313-x86_64-linux-gnu.so`, `Modules/_queuemodule.o`, `Modules/_random.cpython-313-x86_64-linux-gnu.so`, `Modules/_randommodule.o`, `Modules/_sha1.cpython-313-x86_64-linux-gnu.so`, `Modules/_sha2.cpython-313-x86_64-linux-gnu.so`, `Modules/_sha3.cpython-313-x86_64-linux-gnu.so`, `Modules/_socket.cpython-313-x86_64-linux-gnu.so`, `Modules/_sqlite/blob.o`, `Modules/_sqlite/connection.o`, `Modules/_sqlite/cursor.o`, `Modules/_sqlite/microprotocols.o`, `Modules/_sqlite/module.o`, `Modules/_sqlite/prepare_protocol.o`, `Modules/_sqlite/row.o`, `Modules/_sqlite/statement.o`, `Modules/_sqlite/util.o`, `Modules/_sqlite3.cpython-313-x86_64-linux-gnu.so`, `Modules/_sre/sre.o`, `Modules/_ssl.o`, `Modules/_ssl_failed.cpython-313-x86_64-linux-gnu.so`, `Modules/_stat.o`, `Modules/_statistics.cpython-313-x86_64-linux-gnu.so`, `Modules/_statisticsmodule.o`, `Modules/_struct.cpython-313-x86_64-linux-gnu.so`, `Modules/_struct.o`, `Modules/_suggestions.o`, `Modules/_sysconfig.o`, `Modules/_testbuffer.cpython-313-x86_64-linux-gnu.so`, `Modules/_testbuffer.o`, `Modules/_testcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testcapi/abstract.o`, `Modules/_testcapi/buffer.o`, `Modules/_testcapi/bytes.o`, `Modules/_testcapi/code.o`, `Modules/_testcapi/codec.o`, `Modules/_testcapi/complex.o`, `Modules/_testcapi/datetime.o`, `Modules/_testcapi/dict.o`, `Modules/_testcapi/docstring.o`, `Modules/_testcapi/exceptions.o`, `Modules/_testcapi/file.o`, `Modules/_testcapi/float.o`, `Modules/_testcapi/gc.o`, `Modules/_testcapi/getargs.o`, `Modules/_testcapi/hash.o`, `Modules/_testcapi/heaptype.o`, `Modules/_testcapi/immortal.o`, `Modules/_testcapi/list.o`, `Modules/_testcapi/long.o`, `Modules/_testcapi/mem.o`, `Modules/_testcapi/monitoring.o`, `Modules/_testcapi/numbers.o`, `Modules/_testcapi/object.o`, `Modules/_testcapi/pyatomic.o`, `Modules/_testcapi/run.o`, `Modules/_testcapi/set.o`, `Modules/_testcapi/structmember.o`, `Modules/_testcapi/time.o`, `Modules/_testcapi/tuple.o`, `Modules/_testcapi/unicode.o`, `Modules/_testcapi/vectorcall.o`, `Modules/_testcapi/watchers.o`, `Modules/_testcapimodule.o`, `Modules/_testclinic.cpython-313-x86_64-linux-gnu.so`, `Modules/_testclinic.o`, `Modules/_testclinic_limited.cpython-313-x86_64-linux-gnu.so`, `Modules/_testclinic_limited.o`, `Modules/_testexternalinspection.cpython-313-x86_64-linux-gnu.so`, `Modules/_testexternalinspection.o`, `Modules/_testimportmultiple.cpython-313-x86_64-linux-gnu.so`, `Modules/_testimportmultiple.o`, `Modules/_testinternalcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testinternalcapi.o`, `Modules/_testinternalcapi/pytime.o`, `Modules/_testinternalcapi/set.o`, `Modules/_testinternalcapi/test_critical_sections.o`, `Modules/_testinternalcapi/test_lock.o`, `Modules/_testlimitedcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testlimitedcapi.o`, `Modules/_testlimitedcapi/abstract.o`, `Modules/_testlimitedcapi/bytearray.o`, `Modules/_testlimitedcapi/bytes.o`, `Modules/_testlimitedcapi/complex.o`, `Modules/_testlimitedcapi/dict.o`, `Modules/_testlimitedcapi/eval.o`, `Modules/_testlimitedcapi/file.o`, `Modules/_testlimitedcapi/float.o`, `Modules/_testlimitedcapi/heaptype_relative.o`, `Modules/_testlimitedcapi/import.o`, `Modules/_testlimitedcapi/list.o`, `Modules/_testlimitedcapi/long.o`, `Modules/_testlimitedcapi/object.o`, `Modules/_testlimitedcapi/pyos.o`, `Modules/_testlimitedcapi/set.o`, `Modules/_testlimitedcapi/sys.o`, `Modules/_testlimitedcapi/tuple.o`, `Modules/_testlimitedcapi/unicode.o`, `Modules/_testlimitedcapi/vectorcall_limited.o`, `Modules/_testmultiphase.cpython-313-x86_64-linux-gnu.so`, `Modules/_testmultiphase.o`, `Modules/_testsinglephase.cpython-313-x86_64-linux-gnu.so`, `Modules/_testsinglephase.o`, `Modules/_threadmodule.o`, `Modules/_tracemalloc.o`, `Modules/_typingmodule.o`, `Modules/_uuid.cpython-313-x86_64-linux-gnu.so`, `Modules/_uuidmodule.o`, `Modules/_weakref.o`, `Modules/_xxtestfuzz.cpython-313-x86_64-linux-gnu.so`, `Modules/_xxtestfuzz/_xxtestfuzz.o`, `Modules/_xxtestfuzz/fuzzer.o`, `Modules/_zoneinfo.cpython-313-x86_64-linux-gnu.so`, `Modules/_zoneinfo.o`, `Modules/array.cpython-313-x86_64-linux-gnu.so`, `Modules/arraymodule.o`, `Modules/atexitmodule.o`, `Modules/binascii.cpython-313-x86_64-linux-gnu.so`, `Modules/binascii.o`, `Modules/cjkcodecs/_codecs_cn.o`, `Modules/cjkcodecs/_codecs_hk.o`, `Modules/cjkcodecs/_codecs_iso2022.o`, `Modules/cjkcodecs/_codecs_jp.o`, `Modules/cjkcodecs/_codecs_kr.o`, `Modules/cjkcodecs/_codecs_tw.o`, `Modules/cjkcodecs/multibytecodec.o`, `Modules/cmath.cpython-313-x86_64-linux-gnu.so`, `Modules/cmathmodule.o`, `Modules/config.c`, `Modules/config.o`, `Modules/errnomodule.o`, `Modules/expat/libexpat.a`, `Modules/expat/xmlparse.o`, `Modules/expat/xmlrole.o`, `Modules/expat/xmltok.o`, `Modules/faulthandler.o`, `Modules/fcntl.cpython-313-x86_64-linux-gnu.so`, `Modules/fcntlmodule.o`, `Modules/gcmodule.o`, `Modules/getbuildinfo.o`, `Modules/getpath.o`, `Modules/getpath_noop.o`, `Modules/grp.cpython-313-x86_64-linux-gnu.so`, `Modules/grpmodule.o`, `Modules/itertoolsmodule.o`, `Modules/ld_so_aix`, `Modules/main.o`, `Modules/math.cpython-313-x86_64-linux-gnu.so`, `Modules/mathmodule.o`, `Modules/md5module.o`, `Modules/mmap.cpython-313-x86_64-linux-gnu.so`, `Modules/mmapmodule.o`, `Modules/posixmodule.o`, `Modules/pwdmodule.o`, `Modules/pyexpat.cpython-313-x86_64-linux-gnu.so`, `Modules/pyexpat.o`, `Modules/readline.cpython-313-x86_64-linux-gnu.so`, `Modules/readline.o`, `Modules/resource.cpython-313-x86_64-linux-gnu.so`, `Modules/resource.o`, `Modules/rotatingtree.o`, `Modules/select.cpython-313-x86_64-linux-gnu.so`, `Modules/selectmodule.o`, `Modules/sha1module.o`, `Modules/sha2module.o`, `Modules/sha3module.o`, `Modules/signalmodule.o`, `Modules/socketmodule.o`, `Modules/symtablemodule.o`, `Modules/syslog.cpython-313-x86_64-linux-gnu.so`, `Modules/syslogmodule.o`, `Modules/termios.cpython-313-x86_64-linux-gnu.so`, `Modules/termios.o`, `Modules/timemodule.o`, `Modules/unicodedata.cpython-313-x86_64-linux-gnu.so`, `Modules/unicodedata.o`, `Modules/xxlimited.cpython-313-x86_64-linux-gnu.so`, `Modules/xxlimited.o`, `Modules/xxlimited_35.cpython-313-x86_64-linux-gnu.so`, `Modules/xxlimited_35.o`, `Modules/xxsubtype.cpython-313-x86_64-linux-gnu.so`, `Modules/xxsubtype.o`, `Modules/zlib.cpython-313-x86_64-linux-gnu.so`, `Modules/zlibmodule.o`, `Objects/abstract.o`, `Objects/boolobject.o`, `Objects/bytearrayobject.o`, `Objects/bytes_methods.o`, `Objects/bytesobject.o`, `Objects/call.o`, `Objects/capsule.o`, `Objects/cellobject.o`, `Objects/classobject.o`, `Objects/codeobject.o`, `Objects/complexobject.o`, `Objects/descrobject.o`, `Objects/dictobject.o`, `Objects/enumobject.o`, `Objects/exceptions.o`, `Objects/fileobject.o`, `Objects/floatobject.o`, `Objects/frameobject.o`, `Objects/funcobject.o`, `Objects/genericaliasobject.o`, `Objects/genobject.o`, `Objects/iterobject.o`, `Objects/listobject.o`, `Objects/longobject.o`, `Objects/memoryobject.o`, `Objects/methodobject.o`, `Objects/moduleobject.o`, `Objects/namespaceobject.o`, `Objects/object.o`, `Objects/obmalloc.o`, `Objects/odictobject.o`, `Objects/picklebufobject.o`, `Objects/rangeobject.o`, `Objects/setobject.o`, `Objects/sliceobject.o`, `Objects/structseq.o`, `Objects/tupleobject.o`, `Objects/typeobject.o`, `Objects/typevarobject.o`, `Objects/unicodectype.o`, `Objects/unicodeobject.o`, `Objects/unionobject.o`, `Objects/weakrefobject.o`, `Parser/action_helpers.o`, `Parser/lexer/buffer.o`, `Parser/lexer/lexer.o`, `Parser/lexer/state.o`, `Parser/myreadline.o`, `Parser/parser.o`, `Parser/peg_api.o`, `Parser/pegen.o`, `Parser/pegen_errors.o`, `Parser/string_parser.o`, `Parser/token.o`, `Parser/tokenizer/file_tokenizer.o`, `Parser/tokenizer/helpers.o`, `Parser/tokenizer/readline_tokenizer.o`, `Parser/tokenizer/string_tokenizer.o`, `Parser/tokenizer/utf8_tokenizer.o`, `Programs/_bootstrap_python.o`, `Programs/_freeze_module`, `Programs/_freeze_module.o`, `Programs/_testembed`, `Programs/_testembed.o`, `Programs/python.o`, `Python/Python-ast.o`, `Python/Python-tokenize.o`, `Python/_warnings.o`, `Python/asdl.o`, `Python/asm_trampoline.o`, `Python/assemble.o`, `Python/ast.o`, `Python/ast_opt.o`, `Python/ast_unparse.o`, `Python/bltinmodule.o`, `Python/bootstrap_hash.o`, `Python/brc.o`, `Python/ceval.o`, `Python/ceval_gil.o`, `Python/codecs.o`, `Python/compile.o`, `Python/context.o`, `Python/critical_section.o`, `Python/crossinterp.o`, `Python/dtoa.o`, `Python/dynamic_annotations.o`, `Python/dynload_shlib.o`, `Python/errors.o`, `Python/fileutils.o`, `Python/flowgraph.o`, `Python/formatter_unicode.o`, `Python/frame.o`, `Python/frozen.o`, `Python/frozen_modules/__hello__.h`, `Python/frozen_modules/__phello__.h`, `Python/frozen_modules/__phello__.ham.eggs.h`, `Python/frozen_modules/__phello__.ham.h`, `Python/frozen_modules/__phello__.spam.h`, `Python/frozen_modules/_collections_abc.h`, `Python/frozen_modules/_sitebuiltins.h`, `Python/frozen_modules/abc.h`, `Python/frozen_modules/codecs.h`, `Python/frozen_modules/frozen_only.h`, `Python/frozen_modules/genericpath.h`, `Python/frozen_modules/getpath.h`, `Python/frozen_modules/importlib._bootstrap.h`, `Python/frozen_modules/importlib._bootstrap_external.h`, `Python/frozen_modules/importlib.machinery.h`, `Python/frozen_modules/importlib.util.h`, `Python/frozen_modules/io.h`, `Python/frozen_modules/ntpath.h`, `Python/frozen_modules/os.h`, `Python/frozen_modules/posixpath.h`, `Python/frozen_modules/runpy.h`, `Python/frozen_modules/site.h`, `Python/frozen_modules/stat.h`, `Python/frozen_modules/zipimport.h`, `Python/frozenmain.o`, `Python/future.o`, `Python/gc.o`, `Python/gc_free_threading.o`, `Python/gc_gil.o`, `Python/getargs.o`, `Python/getcompiler.o`, `Python/getcopyright.o`, `Python/getopt.o`, `Python/getplatform.o`, `Python/getversion.o`, `Python/hamt.o`, `Python/hashtable.o`, `Python/import.o`, `Python/importdl.o`, `Python/initconfig.o`, `Python/instruction_sequence.o`, `Python/instrumentation.o`, `Python/interpconfig.o`, `Python/intrinsics.o`, `Python/jit.o`, `Python/legacy_tracing.o`, `Python/lock.o`, `Python/marshal.o`, `Python/modsupport.o`, `Python/mysnprintf.o`, `Python/mystrtoul.o`, `Python/object_stack.o`, `Python/optimizer.o`, `Python/optimizer_analysis.o`, `Python/optimizer_symbols.o`, `Python/parking_lot.o`, `Python/pathconfig.o`, `Python/perf_jit_trampoline.o`, `Python/perf_trampoline.o`, `Python/preconfig.o`, `Python/pyarena.o`, `Python/pyctype.o`, `Python/pyfpe.o`, `Python/pyhash.o`, `Python/pylifecycle.o`, `Python/pymath.o`, `Python/pystate.o`, `Python/pystrcmp.o`, `Python/pystrhex.o`, `Python/pystrtod.o`, `Python/pythonrun.o`, `Python/pytime.o`, `Python/qsbr.o`, `Python/specialize.o`, `Python/structmember.o`, `Python/suggestions.o`, `Python/symtable.o`, `Python/sysmodule.o`, `Python/thread.o`, `Python/traceback.o`, `Python/tracemalloc.o`, `_bootstrap_python`, `build/lib.linux-x86_64-3.13/__pycache__/_sysconfigdata__linux_x86_64-linux-gnu.cpython-313.pyc`, `build/lib.linux-x86_64-3.13/_asyncio.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_bisect.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_blake2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_bz2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_cn.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_hk.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_iso2022.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_jp.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_kr.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_tw.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_contextvars.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_csv.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_ctypes.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_ctypes_test.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_curses.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_curses_panel.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_datetime.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_decimal.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_elementtree.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_hashlib.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_heapq.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpchannels.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpqueues.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpreters.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_json.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_lsprof.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_lzma.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_md5.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_multibytecodec.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_multiprocessing.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_opcode.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_pickle.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_posixshmem.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_posixsubprocess.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_queue.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_random.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha1.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha3.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_socket.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sqlite3.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_statistics.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_struct.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sysconfigdata__linux_x86_64-linux-gnu.py`, `build/lib.linux-x86_64-3.13/_testbuffer.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testclinic.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testclinic_limited.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testexternalinspection.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testimportmultiple.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testinternalcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testlimitedcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testmultiphase.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testsinglephase.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_uuid.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_xxtestfuzz.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_zoneinfo.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/array.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/binascii.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/cmath.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/fcntl.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/grp.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/math.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/mmap.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/pyexpat.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/readline.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/resource.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/select.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/syslog.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/termios.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/unicodedata.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxlimited.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxlimited_35.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxsubtype.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/zlib.cpython-313-x86_64-linux-gnu.so`, `build/scripts-3.13/idle3.13`, `build/scripts-3.13/pydoc3.13`, `config.log`, `config.status`, `libpython3.13.a`, `platform`, `pybuilddir.txt`, `pyconfig.h`, `python`, `python-config`, `python-config.py`, `python-gdb.py`.
2. Listed in `## Git Add Paths` but not actually changed: `None`.

## Refinement Pass 1

Subject: Diagnose supervisord poll loop without CPython changes

## Commit Message
No CPython source change is included. The collected evidence shows `supervisord` waking once per second to check child status and then blocking in `poll()`, which is consistent with an application event loop rather than a demonstrated CPython runtime defect. This refinement addresses the review finding by removing generated validation artifacts from the workspace.

## Evidence Confidence
inferred

## Issue Connection
The collected signal was `/usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf` repeatedly calling `wait4(-1, ..., WNOHANG)` and receiving `ECHILD`, then calling `poll(..., 1000)` and timing out after about one second. `/proc` evidence showed the sampled thread in sleeping state `S` with wait channel `poll_schedule_timeout`, so the trace does not show a tight zero-timeout spin.

The cautious code-level inference is that CPython is exposing normal OS polling behavior. I rechecked the relevant CPython paths: `Modules/selectmodule.c` uses `_PyTime_*` timeout helpers, `Py_BEGIN_ALLOW_THREADS`, and EINTR retry handling; `Lib/selectors.py` rounds positive timeouts to poll’s millisecond granularity; `Lib/subprocess.py` uses `_waitpid_lock` around nonblocking child waits. No missing local helper or compatibility wrapper was found.

I made no source change. In this refinement, I removed the generated build and bytecode artifacts called out by review so `## Git Add Paths` remains consistent with the no-patch diagnosis. The expected effect is that no speculative timing-sensitive CPython change is proposed until stronger evidence ties the reported CPU use to a runtime bug rather than to the `supervisord` loop.

## Git Add Paths
None

## Validation
Reviewed the prior plan, author response, review report, and evidence bundle. The review finding was metadata drift from generated files; I addressed it by cleaning validation artifacts. `git clean -fdx` removed the build outputs and pycache files, with warnings that `.agents/` and `.codex/` were busy; final `git status --short` and `git diff --stat` produced no output.

Checked contribution/style guidance and subsystem conventions again. `README.rst` points to the CPython Developer Guide and documents `./configure`, `make`, and `make test`; `debian/README.source` says Debian packaging uses quilt. The relevant local conventions remain `_PyTime_*`, `Py_BEGIN_ALLOW_THREADS`, EINTR handling, selector timeout rounding, and `_waitpid_lock`.

Project-level validation from the previous authoring pass was:

```sh
./configure && make
```

Result: exited `0`; optional `_dbm`, `_gdbm`, and `_tkinter` were missing, and `_ssl` failed import with `undefined symbol: TLSv1_method`, but the command completed successfully. I did not rerun it in this refinement because no source changed and rerunning it would recreate the generated artifacts that the review explicitly asked to remove.

The bounded syscall reproduction attempt from the previous pass was blocked by sandbox ptrace restrictions:

```sh
strace -tt -e trace=poll,wait4 ./python -S - ...
```

Result: `PTRACE_TRACEME: Operation not permitted` and `ptrace(PTRACE_SEIZE, 5): Operation not permitted`.

The no-ptrace timing smoke check from the previous pass completed with:

```text
echild=5 wall=5.005 cpu=0.000199
```

That supports the diagnosis that this one-second poll cadence blocks rather than spins.

## Review Pass 2

RESULT: ok

No actionable issues found.

The refined workspace is clean: `git status --short`, `git diff --stat`, and `git diff --name-only` show no changed paths, matching `## Git Add Paths: None`. The previous review’s metadata drift finding is resolved.

The no-patch diagnosis is consistent with the evidence level. The author uses `inferred`, does not claim a reproduced CPython bug, and avoids proposing a timing-sensitive runtime change from indirect perf/strace evidence. The explanation connects the collected `wait4(..., WNOHANG) = ECHILD` plus one-second `poll(..., 1000)` cadence to normal application-level event-loop behavior, and it names the relevant CPython conventions/helpers checked: `_PyTime_*`, `Py_BEGIN_ALLOW_THREADS`, EINTR handling, selector timeout rounding, and `_waitpid_lock`.

Validation text is acceptable for a no-source-change refinement: the prior project-level `./configure && make` was reported, the blocked `strace` reproduction was disclosed with the ptrace error, and the refinement explains why rerunning the build would recreate the artifacts that were just cleaned.

diagnosis-only report

report

python3.13 likely remains stuck in a busy-poll loop. A diagnosis report and patch proposal were created locally.

state: readycreated: 2026-05-18 11:59 UTCvalidation: ready
Published session

Prompt

## Plan Pass

You are planning a fixer patch before any edits happen.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. The original pre-edit snapshot is available at `./source` if you need to inspect it. For interpreter processes, plan from the script/application entrypoint evidence first and include the runtime only as a second investigation target unless the evidence proves a runtime bug.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround. Inspect the relevant code, nearby callers, project contribution docs, and local helper/compat APIs, but do not edit files in this pass.

Return a short markdown plan with these exact sections:

## Problem
## Evidence Confidence
## Proposed Subject
## Patch Plan
## Risks
## Validation

Classify `## Evidence Confidence` as exactly one of `reproduced`, `observed`, or `inferred`. Use `inferred` only for a no-patch diagnosis/report plan unless you can name the extra evidence you will collect before editing; inferred source patches are blocked by Fixer because they are not pull-request-ready. For `observed` source-patch plans, plan to say in the final `## Issue Connection` that the failure was observed by Fixer and not independently reproduced. If the plan touches authentication, authorization, credentials, cryptography, sandboxing, permissions, or timing/throttling behavior, treat it as security-sensitive: do not plan a source patch unless validation can reproduce the behavior and analyze the security impact; otherwise plan a no-patch diagnosis/report. The plan must explain how the proposed code change addresses the observed issue evidence, call out any prior Fixer patch that should be improved or replaced, reject awkward control flow such as avoidable `goto` if there is a cleaner bounded alternative, name any local helper APIs or maintainer conventions the patch should follow, and keep the intended maintainer-facing explanation clear enough that someone unfamiliar with the local complaint wording can still follow the fix. In `## Validation`, name the reproducible configure/build/test entrypoint you will try from the workspace root before any focused leaf compile or smoke check, and include one bounded independent reproduction attempt for the collected failure signal when it is safe and cheap. Do not plan to claim `reproduced` unless that reproduction command or test can actually show the failure.

## Patch Pass

You are working on a bounded fixer proposal.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. Produce the smallest reasonable patch for the target repository, keep the change upstreamable, prefer the clearest control flow available, and do not keep avoidable `goto` when a simpler structure would read better. Before introducing new file, process, allocation, locking, networking, or platform APIs, inspect nearby code and project contribution docs for existing helpers or compatibility wrappers and use those local patterns unless you can explain why they do not fit. Validate from a reproducible workspace-root entrypoint before falling back to focused leaf commands; if a build or test cannot run, report the exact command, the exact blocker, and any narrower check you ran instead. During validation, also try one bounded independent reproduction of the collected failure signal when it is safe and cheap, such as a failing test, smoke command, perf/strace comparison, or before/after runtime check. Only use `reproduced` if that command or test actually reproduced the failure; otherwise keep `observed` and report the reproduction blocker. The final explanation must connect the observed issue evidence to the actual code change, not just paraphrase the diff. Write like a maintainer is going to read the patch mail cold: explain the bug in plain language, define subsystem-specific jargon the first time you need it, and make the causal story obvious. Explicitly classify evidence confidence as `reproduced`, `observed`, or `inferred`: `reproduced` means you reproduced the failure locally; `observed` means Fixer has direct crash/log/trace evidence but you did not independently reproduce it; `inferred` means the source patch is not pull-request-ready, so do not leave a source diff unless you first gather stronger observed/reproduced evidence; otherwise return a no-patch diagnosis/report. For any source-changing `observed` patch, say explicitly in `## Issue Connection` that the failure was observed by Fixer and not independently reproduced. Security-sensitive areas such as authentication, authorization, credentials, cryptography, sandboxing, permissions, and timing/throttling behavior need reproduced evidence plus explicit security-impact analysis before leaving a source diff; otherwise return a no-patch diagnosis/report for human review. If you introduce non-obvious state translation, index remapping, or backend split logic, add a short source comment that explains the invariant being preserved.

Start by explaining the likely root cause from the collected perf, strace, and /proc evidence. If you cannot land a safe patch, leave a diagnosis that is strong enough for an upstream bug report.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround. 

Keep the change narrowly scoped and summarize validation clearly.

In every authoring pass, your final response must start with `Subject: <single-line git commit subject>` and then include these markdown sections exactly:

## Commit Message
A short upstream-friendly explanation of what changed and why. Write it in plain language that a maintainer can follow without local complaint context. If you use subsystem jargon, define it immediately.

## Evidence Confidence
Exactly one word: `reproduced`, `observed`, or `inferred`. Use `reproduced` only when you reproduced the failure locally with a command or test, and include that command/test in `## Validation`. Use `observed` when Fixer has direct crash/log/trace evidence but you did not independently reproduce it. If `## Git Add Paths` lists source files for an `observed` patch, `## Issue Connection` must explicitly say the failure was observed by Fixer and not independently reproduced. Security-sensitive source changes touching authentication, authorization, credentials, cryptography, sandboxing, permissions, or timing/throttling behavior require reproduced evidence and explicit security-impact analysis; otherwise list `None` under `## Git Add Paths` and write a no-patch diagnosis/report. Use `inferred` for profiler/strace/indirect evidence; inferred responses may be no-patch diagnoses or reports, but inferred source patches are not pull-request-ready until stronger evidence is gathered.

## Issue Connection
Write this as maintainer-facing patch mail, not as local Fixer notes. Cover four things explicitly in readable sentences: the user-visible symptom or the exact collected signal, the code-level cause or the cautious inference from evidence, the specific change you made, and the expected effect. Do not invent a reproducer, command line, crash, or user-visible failure that is not present in the evidence bundle. If the evidence is direct-but-not-reproduced, say it was observed by Fixer and not independently reproduced. If the evidence is indirect and you did not gather stronger evidence, do not leave a source diff; write a no-patch diagnosis/report instead. Include an explicit effect sentence such as `The expected effect is ...`, `This should reduce ...`, or `This prevents ...` for source patches. If the logic is non-obvious in code, mention that you added a short explanatory comment.

## Git Add Paths
List the repo-relative paths that belong in the final patch, one per line. Use `None` only when you intentionally made no source changes. Include intentionally new files, and do not list generated build artifacts.

## Validation
List the checks you ran, or say clearly that you could not run them. Include the independent reproduction command/test and result when `## Evidence Confidence` is `reproduced`; if reproduction was attempted but blocked, name the exact blocker and keep confidence at `observed` or `inferred`.

Before editing, read the plan at `./plan-output.txt` and follow it unless the code proves part of it wrong. If you change course, say so explicitly in the final write-up instead of silently drifting from the plan.

## Review Pass 1

You are reviewing a freshly generated fixer patch.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. Review the first patch pass. The original pre-edit snapshot is available at `./source` for diffing.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout. The latest author response is at `./patch-output.txt`. Inspect the current code and changed paths like a strict code reviewer. Focus on correctness, regressions, maintainability, awkward control flow such as avoidable `goto`, missing validation, weak or non-gittable commit message text, and explanations that fail to connect the observed issue evidence to the code change. Also review the maintainer experience: the patch mail should be easy to accept upstream, the user-visible bug should be explained in plain language, subsystem-specific jargon should be defined when first used, and any non-obvious state translation or index remapping in code should have a short explanatory comment. Reject patches that omit `## Evidence Confidence`, use anything other than `reproduced`, `observed`, or `inferred`, or sound more certain than that evidence level allows. Reject patches that claim `reproduced` unless `## Validation` names the concrete reproduction command or test and its result. Reject source patches in security-sensitive areas such as authentication, authorization, credentials, cryptography, sandboxing, permissions, and timing/throttling behavior unless the author reproduced the behavior and explicitly analyzed the security impact of the change; observed-only evidence should become a diagnosis/report, not a PR-ready source diff. Reject patches that invent a reproducer, command line, crash, or user-visible failure not present in the evidence bundle; indirect profiler or strace evidence may justify a cautious mitigation, but the author must say it is indirect instead of presenting it as a confirmed upstream bug. Reject patches that introduce generic libc/std APIs when nearby code or project docs provide a local compat/helper API for the same job, unless the author explicitly justifies the exception. Reject validation that only reports a leaf object/syntax build when a project-level configure/build/test entrypoint exists and was not attempted; if a full build cannot run, the author must show the exact failed command and blocker.

Do not apply code changes in this pass.

Return a short markdown review report. The first non-empty line must be exactly one of:

RESULT: ok
RESULT: fix-needed

If you choose `RESULT: fix-needed`, add a `## Findings` section with concrete, actionable items.

Response

## Plan Pass

## Problem

Fixer observed a Python process with command line `/usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf` cycling through `wait4(-1, ..., WNOHANG) = ECHILD` and `poll(..., 1000) = 0`. The evidence points first at the `supervisord` application loop, not a proven CPython runtime defect. The CPython backtrace is mostly unresolved and does not identify a faulty Python interpreter subsystem.

## Evidence Confidence

inferred

## Proposed Subject

No CPython source patch: diagnose supervisord/application-level poll loop instead of changing `python3.13`.

## Patch Plan

Do not edit CPython in this pass. Keep or replace any prior Fixer source-patch attempt with a no-patch diagnosis/report, because the evidence is profiler/strace-only and does not reproduce a CPython bug.

If more work is requested before editing, collect extra evidence from the actual application entrypoint first: supervisor config, installed `supervisord` version, active child-process state, and a Python-level stack if possible. Only investigate CPython runtime code second, and only patch CPython if a minimal reproducer shows `os.waitpid`, `select.poll`, `subprocess`, or `asyncio` misbehaving independently of `supervisord`.

Local conventions checked: CPython root has `README.rst`, which points contributors to the Python Developer Guide and documents `./configure`, `make`, and `make test`; no root `CONTRIBUTING`, `HACKING`, or `README-hacking` file was found. Relevant CPython helpers/conventions in the touched area would include `_PyTime`, `_PyDeadline_Init/Get`, `Py_BEGIN_ALLOW_THREADS`, `PyErr_CheckSignals`, and `posix_error`, but no source change is planned. No awkward control flow such as a new `goto` should be introduced.

## Risks

A CPython patch based on this evidence would likely be speculative and upstream-unacceptable. The observed one-second polling cadence can be normal supervisor-style event-loop behavior, especially when there are no children to reap. Changing CPython wait or poll behavior would affect broad process, signal, and timeout semantics without a demonstrated interpreter bug.

## Validation

Before any future source change, try the project-level entrypoint from the workspace root:

`./configure && make`

If that fails, record the exact command and failure reason, then use the narrowest relevant compile/test.

Bounded independent reproduction attempt: run a short syscall sample against the same application command when available, for example:

`timeout 8s strace -f -tt -e poll,wait4 /usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf`

If `strace` is blocked by ptrace permissions or `supervisord` is not installed, report that blocker and do not claim reproduction.

## Patch Pass

Subject: Diagnose supervisord poll loop outside CPython

## Commit Message

No source change. The collected evidence shows a `supervisord` process running under Python waking once per second to call `wait4(..., WNOHANG)` and `poll(..., 1000)`, but it does not show a CPython runtime bug. Changing CPython wait or poll behavior from this trace would be speculative and would affect broad process and timeout semantics.

## Evidence Confidence

inferred

## Issue Connection

The collected signal is a `python3.13` process named `supervisord` with repeated `wait4(-1, ..., WNOHANG) = ECHILD` followed by `poll(..., 1000) = 0`, while `/proc` shows the process sleeping in `poll_schedule_timeout`. The likely root cause is an application-level supervisor event loop checking for exited children and then waiting on an fd with a one-second timeout; the evidence does not identify a CPython code path that is spinning incorrectly.

I followed the saved plan and left no source diff. CPython’s nearby wait/poll code already follows local conventions: `Py_BEGIN_ALLOW_THREADS`, `PyErr_CheckSignals`, `posix_error`, and `_PyTime`/`_PyDeadline` handling. The expected effect is to avoid an upstream-unacceptable CPython patch until stronger evidence ties the observed loop to a reproducible interpreter defect.

## Git Add Paths

None

## Validation

`./configure && make` from the workspace root completed with exit code 0. Configure/build reported local optional-module issues: `_dbm`, `_gdbm`, and `_tkinter` dependencies were missing; `_ssl` built but was removed because import failed with `undefined symbol: TLSv1_method`.

Independent reproduction attempt: `timeout 8s strace -f -tt -e poll,wait4 /usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf` failed because ptrace is blocked: `PTRACE_TRACEME: Operation not permitted`.

Fallback smoke attempt: `timeout 8s /usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf` failed because `/usr/bin/supervisord` is not installed: `[Errno 2] No such file or directory`.

Cleaned generated build artifacts with `make distclean`; final `git status --short` was clean.

## Review Pass 1

RESULT: ok

No findings. The workspace is clean with no source diff, which matches the `inferred` evidence level and the saved no-patch plan. The response includes the required sections, does not overclaim reproduction, reports the project-level `./configure && make` validation, and names the blocked independent reproduction attempts with concrete blockers.

diagnosis-only report

report

python3.13 likely remains stuck in a busy-poll loop. A diagnosis report and patch proposal were created locally.

state: readycreated: 2026-05-18 11:59 UTCvalidation: ready
Published session

Prompt

## Plan Pass

You are planning a fixer patch before any edits happen.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. The original pre-edit snapshot is available at `./source` if you need to inspect it. For interpreter processes, plan from the script/application entrypoint evidence first and include the runtime only as a second investigation target unless the evidence proves a runtime bug.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround. Inspect the relevant code, nearby callers, project contribution docs, and local helper/compat APIs, but do not edit files in this pass.

Return a short markdown plan with these exact sections:

## Problem
## Evidence Confidence
## Proposed Subject
## Patch Plan
## Risks
## Validation

Classify `## Evidence Confidence` as exactly one of `reproduced`, `observed`, or `inferred`. Use `inferred` only for a no-patch diagnosis/report plan unless you can name the extra evidence you will collect before editing; inferred source patches are blocked by Fixer because they are not pull-request-ready. For `observed` source-patch plans, plan to say in the final `## Issue Connection` that the failure was observed by Fixer and not independently reproduced. If the plan touches authentication, authorization, credentials, cryptography, sandboxing, permissions, or timing/throttling behavior, treat it as security-sensitive: do not plan a source patch unless validation can reproduce the behavior and analyze the security impact; otherwise plan a no-patch diagnosis/report. The plan must explain how the proposed code change addresses the observed issue evidence, call out any prior Fixer patch that should be improved or replaced, reject awkward control flow such as avoidable `goto` if there is a cleaner bounded alternative, name any local helper APIs or maintainer conventions the patch should follow, and keep the intended maintainer-facing explanation clear enough that someone unfamiliar with the local complaint wording can still follow the fix. In `## Validation`, name the reproducible configure/build/test entrypoint you will try from the workspace root before any focused leaf compile or smoke check, and include one bounded independent reproduction attempt for the collected failure signal when it is safe and cheap. Do not plan to claim `reproduced` unless that reproduction command or test can actually show the failure.

## Patch Pass

You are working on a bounded fixer proposal.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. Produce the smallest reasonable patch for the target repository, keep the change upstreamable, prefer the clearest control flow available, and do not keep avoidable `goto` when a simpler structure would read better. Before introducing new file, process, allocation, locking, networking, or platform APIs, inspect nearby code and project contribution docs for existing helpers or compatibility wrappers and use those local patterns unless you can explain why they do not fit. Validate from a reproducible workspace-root entrypoint before falling back to focused leaf commands; if a build or test cannot run, report the exact command, the exact blocker, and any narrower check you ran instead. During validation, also try one bounded independent reproduction of the collected failure signal when it is safe and cheap, such as a failing test, smoke command, perf/strace comparison, or before/after runtime check. Only use `reproduced` if that command or test actually reproduced the failure; otherwise keep `observed` and report the reproduction blocker. The final explanation must connect the observed issue evidence to the actual code change, not just paraphrase the diff. Write like a maintainer is going to read the patch mail cold: explain the bug in plain language, define subsystem-specific jargon the first time you need it, and make the causal story obvious. Explicitly classify evidence confidence as `reproduced`, `observed`, or `inferred`: `reproduced` means you reproduced the failure locally; `observed` means Fixer has direct crash/log/trace evidence but you did not independently reproduce it; `inferred` means the source patch is not pull-request-ready, so do not leave a source diff unless you first gather stronger observed/reproduced evidence; otherwise return a no-patch diagnosis/report. For any source-changing `observed` patch, say explicitly in `## Issue Connection` that the failure was observed by Fixer and not independently reproduced. Security-sensitive areas such as authentication, authorization, credentials, cryptography, sandboxing, permissions, and timing/throttling behavior need reproduced evidence plus explicit security-impact analysis before leaving a source diff; otherwise return a no-patch diagnosis/report for human review. If you introduce non-obvious state translation, index remapping, or backend split logic, add a short source comment that explains the invariant being preserved.

Start by explaining the likely root cause from the collected perf, strace, and /proc evidence. If you cannot land a safe patch, leave a diagnosis that is strong enough for an upstream bug report.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround. 

Keep the change narrowly scoped and summarize validation clearly.

In every authoring pass, your final response must start with `Subject: <single-line git commit subject>` and then include these markdown sections exactly:

## Commit Message
A short upstream-friendly explanation of what changed and why. Write it in plain language that a maintainer can follow without local complaint context. If you use subsystem jargon, define it immediately.

## Evidence Confidence
Exactly one word: `reproduced`, `observed`, or `inferred`. Use `reproduced` only when you reproduced the failure locally with a command or test, and include that command/test in `## Validation`. Use `observed` when Fixer has direct crash/log/trace evidence but you did not independently reproduce it. If `## Git Add Paths` lists source files for an `observed` patch, `## Issue Connection` must explicitly say the failure was observed by Fixer and not independently reproduced. Security-sensitive source changes touching authentication, authorization, credentials, cryptography, sandboxing, permissions, or timing/throttling behavior require reproduced evidence and explicit security-impact analysis; otherwise list `None` under `## Git Add Paths` and write a no-patch diagnosis/report. Use `inferred` for profiler/strace/indirect evidence; inferred responses may be no-patch diagnoses or reports, but inferred source patches are not pull-request-ready until stronger evidence is gathered.

## Issue Connection
Write this as maintainer-facing patch mail, not as local Fixer notes. Cover four things explicitly in readable sentences: the user-visible symptom or the exact collected signal, the code-level cause or the cautious inference from evidence, the specific change you made, and the expected effect. Do not invent a reproducer, command line, crash, or user-visible failure that is not present in the evidence bundle. If the evidence is direct-but-not-reproduced, say it was observed by Fixer and not independently reproduced. If the evidence is indirect and you did not gather stronger evidence, do not leave a source diff; write a no-patch diagnosis/report instead. Include an explicit effect sentence such as `The expected effect is ...`, `This should reduce ...`, or `This prevents ...` for source patches. If the logic is non-obvious in code, mention that you added a short explanatory comment.

## Git Add Paths
List the repo-relative paths that belong in the final patch, one per line. Use `None` only when you intentionally made no source changes. Include intentionally new files, and do not list generated build artifacts.

## Validation
List the checks you ran, or say clearly that you could not run them. Include the independent reproduction command/test and result when `## Evidence Confidence` is `reproduced`; if reproduction was attempted but blocked, name the exact blocker and keep confidence at `observed` or `inferred`.

Before editing, read the plan at `./plan-output.txt` and follow it unless the code proves part of it wrong. If you change course, say so explicitly in the final write-up instead of silently drifting from the plan.

## Review Pass 1

You are reviewing a freshly generated fixer patch.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. Review the first patch pass. The original pre-edit snapshot is available at `./source` for diffing.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout. The latest author response is at `./patch-output.txt`. Inspect the current code and changed paths like a strict code reviewer. Focus on correctness, regressions, maintainability, awkward control flow such as avoidable `goto`, missing validation, weak or non-gittable commit message text, and explanations that fail to connect the observed issue evidence to the code change. Also review the maintainer experience: the patch mail should be easy to accept upstream, the user-visible bug should be explained in plain language, subsystem-specific jargon should be defined when first used, and any non-obvious state translation or index remapping in code should have a short explanatory comment. Reject patches that omit `## Evidence Confidence`, use anything other than `reproduced`, `observed`, or `inferred`, or sound more certain than that evidence level allows. Reject patches that claim `reproduced` unless `## Validation` names the concrete reproduction command or test and its result. Reject source patches in security-sensitive areas such as authentication, authorization, credentials, cryptography, sandboxing, permissions, and timing/throttling behavior unless the author reproduced the behavior and explicitly analyzed the security impact of the change; observed-only evidence should become a diagnosis/report, not a PR-ready source diff. Reject patches that invent a reproducer, command line, crash, or user-visible failure not present in the evidence bundle; indirect profiler or strace evidence may justify a cautious mitigation, but the author must say it is indirect instead of presenting it as a confirmed upstream bug. Reject patches that introduce generic libc/std APIs when nearby code or project docs provide a local compat/helper API for the same job, unless the author explicitly justifies the exception. Reject validation that only reports a leaf object/syntax build when a project-level configure/build/test entrypoint exists and was not attempted; if a full build cannot run, the author must show the exact failed command and blocker.

Do not apply code changes in this pass.

Return a short markdown review report. The first non-empty line must be exactly one of:

RESULT: ok
RESULT: fix-needed

If you choose `RESULT: fix-needed`, add a `## Findings` section with concrete, actionable items.

Response

## Plan Pass

## Problem

Fixer observed a Python process with command line `/usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf` cycling through `wait4(-1, ..., WNOHANG) = ECHILD` and `poll(..., 1000) = 0`. The evidence points first at the `supervisord` application loop, not a proven CPython runtime defect. The CPython backtrace is mostly unresolved and does not identify a faulty Python interpreter subsystem.

## Evidence Confidence

inferred

## Proposed Subject

No CPython source patch: diagnose supervisord/application-level poll loop instead of changing `python3.13`.

## Patch Plan

Do not edit CPython in this pass. Keep or replace any prior Fixer source-patch attempt with a no-patch diagnosis/report, because the evidence is profiler/strace-only and does not reproduce a CPython bug.

If more work is requested before editing, collect extra evidence from the actual application entrypoint first: supervisor config, installed `supervisord` version, active child-process state, and a Python-level stack if possible. Only investigate CPython runtime code second, and only patch CPython if a minimal reproducer shows `os.waitpid`, `select.poll`, `subprocess`, or `asyncio` misbehaving independently of `supervisord`.

Local conventions checked: CPython root has `README.rst`, which points contributors to the Python Developer Guide and documents `./configure`, `make`, and `make test`; no root `CONTRIBUTING`, `HACKING`, or `README-hacking` file was found. Relevant CPython helpers/conventions in the touched area would include `_PyTime`, `_PyDeadline_Init/Get`, `Py_BEGIN_ALLOW_THREADS`, `PyErr_CheckSignals`, and `posix_error`, but no source change is planned. No awkward control flow such as a new `goto` should be introduced.

## Risks

A CPython patch based on this evidence would likely be speculative and upstream-unacceptable. The observed one-second polling cadence can be normal supervisor-style event-loop behavior, especially when there are no children to reap. Changing CPython wait or poll behavior would affect broad process, signal, and timeout semantics without a demonstrated interpreter bug.

## Validation

Before any future source change, try the project-level entrypoint from the workspace root:

`./configure && make`

If that fails, record the exact command and failure reason, then use the narrowest relevant compile/test.

Bounded independent reproduction attempt: run a short syscall sample against the same application command when available, for example:

`timeout 8s strace -f -tt -e poll,wait4 /usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf`

If `strace` is blocked by ptrace permissions or `supervisord` is not installed, report that blocker and do not claim reproduction.

## Patch Pass

Subject: Diagnose supervisord poll loop outside CPython

## Commit Message

No source change. The collected evidence shows a `supervisord` process running under Python waking once per second to call `wait4(..., WNOHANG)` and `poll(..., 1000)`, but it does not show a CPython runtime bug. Changing CPython wait or poll behavior from this trace would be speculative and would affect broad process and timeout semantics.

## Evidence Confidence

inferred

## Issue Connection

The collected signal is a `python3.13` process named `supervisord` with repeated `wait4(-1, ..., WNOHANG) = ECHILD` followed by `poll(..., 1000) = 0`, while `/proc` shows the process sleeping in `poll_schedule_timeout`. The likely root cause is an application-level supervisor event loop checking for exited children and then waiting on an fd with a one-second timeout; the evidence does not identify a CPython code path that is spinning incorrectly.

I followed the saved plan and left no source diff. CPython’s nearby wait/poll code already follows local conventions: `Py_BEGIN_ALLOW_THREADS`, `PyErr_CheckSignals`, `posix_error`, and `_PyTime`/`_PyDeadline` handling. The expected effect is to avoid an upstream-unacceptable CPython patch until stronger evidence ties the observed loop to a reproducible interpreter defect.

## Git Add Paths

None

## Validation

`./configure && make` from the workspace root completed with exit code 0. Configure/build reported local optional-module issues: `_dbm`, `_gdbm`, and `_tkinter` dependencies were missing; `_ssl` built but was removed because import failed with `undefined symbol: TLSv1_method`.

Independent reproduction attempt: `timeout 8s strace -f -tt -e poll,wait4 /usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf` failed because ptrace is blocked: `PTRACE_TRACEME: Operation not permitted`.

Fallback smoke attempt: `timeout 8s /usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf` failed because `/usr/bin/supervisord` is not installed: `[Errno 2] No such file or directory`.

Cleaned generated build artifacts with `make distclean`; final `git status --short` was clean.

## Review Pass 1

RESULT: ok

No findings. The workspace is clean with no source diff, which matches the `inferred` evidence level and the saved no-patch plan. The response includes the required sections, does not overclaim reproduction, reports the project-level `./configure && make` validation, and names the blocked independent reproduction attempts with concrete blockers.

diagnosis-only report

report

python3.13 likely remains stuck in a busy-poll loop. A diagnosis report and patch proposal were created locally.

state: readycreated: 2026-05-18 10:15 UTCvalidation: ready
Published session

Prompt

## Plan Pass

You are planning a fixer patch before any edits happen.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. The original pre-edit snapshot is available at `./source` if you need to inspect it. For interpreter processes, plan from the script/application entrypoint evidence first and include the runtime only as a second investigation target unless the evidence proves a runtime bug.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround. Inspect the relevant code, nearby callers, project contribution docs, and local helper/compat APIs, but do not edit files in this pass.

Return a short markdown plan with these exact sections:

## Problem
## Evidence Confidence
## Proposed Subject
## Patch Plan
## Risks
## Validation

Classify `## Evidence Confidence` as exactly one of `reproduced`, `observed`, or `inferred`. Use `inferred` only for a no-patch diagnosis/report plan unless you can name the extra evidence you will collect before editing; inferred source patches are blocked by Fixer because they are not pull-request-ready. For `observed` source-patch plans, plan to say in the final `## Issue Connection` that the failure was observed by Fixer and not independently reproduced. If the plan touches authentication, authorization, credentials, cryptography, sandboxing, permissions, or timing/throttling behavior, treat it as security-sensitive: do not plan a source patch unless validation can reproduce the behavior and analyze the security impact; otherwise plan a no-patch diagnosis/report. The plan must explain how the proposed code change addresses the observed issue evidence, call out any prior Fixer patch that should be improved or replaced, reject awkward control flow such as avoidable `goto` if there is a cleaner bounded alternative, name any local helper APIs or maintainer conventions the patch should follow, and keep the intended maintainer-facing explanation clear enough that someone unfamiliar with the local complaint wording can still follow the fix. In `## Validation`, name the reproducible configure/build/test entrypoint you will try from the workspace root before any focused leaf compile or smoke check, and include one bounded independent reproduction attempt for the collected failure signal when it is safe and cheap. Do not plan to claim `reproduced` unless that reproduction command or test can actually show the failure.

## Patch Pass

You are working on a bounded fixer proposal.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. Produce the smallest reasonable patch for the target repository, keep the change upstreamable, prefer the clearest control flow available, and do not keep avoidable `goto` when a simpler structure would read better. Before introducing new file, process, allocation, locking, networking, or platform APIs, inspect nearby code and project contribution docs for existing helpers or compatibility wrappers and use those local patterns unless you can explain why they do not fit. Validate from a reproducible workspace-root entrypoint before falling back to focused leaf commands; if a build or test cannot run, report the exact command, the exact blocker, and any narrower check you ran instead. During validation, also try one bounded independent reproduction of the collected failure signal when it is safe and cheap, such as a failing test, smoke command, perf/strace comparison, or before/after runtime check. Only use `reproduced` if that command or test actually reproduced the failure; otherwise keep `observed` and report the reproduction blocker. The final explanation must connect the observed issue evidence to the actual code change, not just paraphrase the diff. Write like a maintainer is going to read the patch mail cold: explain the bug in plain language, define subsystem-specific jargon the first time you need it, and make the causal story obvious. Explicitly classify evidence confidence as `reproduced`, `observed`, or `inferred`: `reproduced` means you reproduced the failure locally; `observed` means Fixer has direct crash/log/trace evidence but you did not independently reproduce it; `inferred` means the source patch is not pull-request-ready, so do not leave a source diff unless you first gather stronger observed/reproduced evidence; otherwise return a no-patch diagnosis/report. For any source-changing `observed` patch, say explicitly in `## Issue Connection` that the failure was observed by Fixer and not independently reproduced. Security-sensitive areas such as authentication, authorization, credentials, cryptography, sandboxing, permissions, and timing/throttling behavior need reproduced evidence plus explicit security-impact analysis before leaving a source diff; otherwise return a no-patch diagnosis/report for human review. If you introduce non-obvious state translation, index remapping, or backend split logic, add a short source comment that explains the invariant being preserved.

Start by explaining the likely root cause from the collected perf, strace, and /proc evidence. If you cannot land a safe patch, leave a diagnosis that is strong enough for an upstream bug report.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround. 

Keep the change narrowly scoped and summarize validation clearly.

In every authoring pass, your final response must start with `Subject: <single-line git commit subject>` and then include these markdown sections exactly:

## Commit Message
A short upstream-friendly explanation of what changed and why. Write it in plain language that a maintainer can follow without local complaint context. If you use subsystem jargon, define it immediately.

## Evidence Confidence
Exactly one word: `reproduced`, `observed`, or `inferred`. Use `reproduced` only when you reproduced the failure locally with a command or test, and include that command/test in `## Validation`. Use `observed` when Fixer has direct crash/log/trace evidence but you did not independently reproduce it. If `## Git Add Paths` lists source files for an `observed` patch, `## Issue Connection` must explicitly say the failure was observed by Fixer and not independently reproduced. Security-sensitive source changes touching authentication, authorization, credentials, cryptography, sandboxing, permissions, or timing/throttling behavior require reproduced evidence and explicit security-impact analysis; otherwise list `None` under `## Git Add Paths` and write a no-patch diagnosis/report. Use `inferred` for profiler/strace/indirect evidence; inferred responses may be no-patch diagnoses or reports, but inferred source patches are not pull-request-ready until stronger evidence is gathered.

## Issue Connection
Write this as maintainer-facing patch mail, not as local Fixer notes. Cover four things explicitly in readable sentences: the user-visible symptom or the exact collected signal, the code-level cause or the cautious inference from evidence, the specific change you made, and the expected effect. Do not invent a reproducer, command line, crash, or user-visible failure that is not present in the evidence bundle. If the evidence is direct-but-not-reproduced, say it was observed by Fixer and not independently reproduced. If the evidence is indirect and you did not gather stronger evidence, do not leave a source diff; write a no-patch diagnosis/report instead. Include an explicit effect sentence such as `The expected effect is ...`, `This should reduce ...`, or `This prevents ...` for source patches. If the logic is non-obvious in code, mention that you added a short explanatory comment.

## Git Add Paths
List the repo-relative paths that belong in the final patch, one per line. Use `None` only when you intentionally made no source changes. Include intentionally new files, and do not list generated build artifacts.

## Validation
List the checks you ran, or say clearly that you could not run them. Include the independent reproduction command/test and result when `## Evidence Confidence` is `reproduced`; if reproduction was attempted but blocked, name the exact blocker and keep confidence at `observed` or `inferred`.

Before editing, read the plan at `./plan-output.txt` and follow it unless the code proves part of it wrong. If you change course, say so explicitly in the final write-up instead of silently drifting from the plan.

## Review Pass 1

You are reviewing a freshly generated fixer patch.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. Review the first patch pass. The original pre-edit snapshot is available at `./source` for diffing.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout. The latest author response is at `./patch-output.txt`. Inspect the current code and changed paths like a strict code reviewer. Focus on correctness, regressions, maintainability, awkward control flow such as avoidable `goto`, missing validation, weak or non-gittable commit message text, and explanations that fail to connect the observed issue evidence to the code change. Also review the maintainer experience: the patch mail should be easy to accept upstream, the user-visible bug should be explained in plain language, subsystem-specific jargon should be defined when first used, and any non-obvious state translation or index remapping in code should have a short explanatory comment. Reject patches that omit `## Evidence Confidence`, use anything other than `reproduced`, `observed`, or `inferred`, or sound more certain than that evidence level allows. Reject patches that claim `reproduced` unless `## Validation` names the concrete reproduction command or test and its result. Reject source patches in security-sensitive areas such as authentication, authorization, credentials, cryptography, sandboxing, permissions, and timing/throttling behavior unless the author reproduced the behavior and explicitly analyzed the security impact of the change; observed-only evidence should become a diagnosis/report, not a PR-ready source diff. Reject patches that invent a reproducer, command line, crash, or user-visible failure not present in the evidence bundle; indirect profiler or strace evidence may justify a cautious mitigation, but the author must say it is indirect instead of presenting it as a confirmed upstream bug. Reject patches that introduce generic libc/std APIs when nearby code or project docs provide a local compat/helper API for the same job, unless the author explicitly justifies the exception. Reject validation that only reports a leaf object/syntax build when a project-level configure/build/test entrypoint exists and was not attempted; if a full build cannot run, the author must show the exact failed command and blocker.

Do not apply code changes in this pass.

Return a short markdown review report. The first non-empty line must be exactly one of:

RESULT: ok
RESULT: fix-needed

If you choose `RESULT: fix-needed`, add a `## Findings` section with concrete, actionable items.

Response

## Plan Pass

## Problem

Fixer observed high CPU attributed to `python3.13`, but the process command line is `/usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf`. The syscall evidence shows a one-second `poll()` timeout followed by `wait4(-1, ..., WNOHANG)` returning `ECHILD`, which matches an application event loop pattern more than a demonstrated CPython runtime defect.

## Evidence Confidence

inferred

## Proposed Subject

No CPython source patch yet: diagnose/report likely `supervisord` event-loop behavior unless an independent reproduction shows CPython’s `select.poll`, `os.wait4`/`waitpid`, thread, or memory code is causing the wakeups incorrectly.

## Patch Plan

1. Treat `/usr/bin/supervisord` as the primary investigation target, per the entrypoint evidence, and avoid changing CPython from profiler-only attribution.
2. Use CPython runtime paths only as secondary checks: `Modules/selectmodule.c` uses `_PyDeadline_Init()` / `_PyDeadline_Get()` around `poll()`, `Modules/posixmodule.c` wraps `wait4()` and `waitpid()` with `Py_BEGIN_ALLOW_THREADS`, and `Python/thread_pthread.h` contains the observed `pthread_attr_destroy()` helper path. I did not find a local CPython helper that would turn the observed application loop into a runtime fix.
3. If later evidence isolates CPython, follow CPython conventions from `README.rst` / Developer Guide references and Debian’s quilt packaging note in `debian/README.source`; avoid awkward control flow such as unnecessary `goto`.
4. Improve or replace any prior Fixer patch that tries to throttle CPython’s generic `poll()`/`waitpid()` wrappers, because that would change valid API semantics without proving the interpreter caused the observed loop.

## Risks

A CPython patch from the current evidence would likely be speculative and could alter standard-library or C API behavior for all applications. The observed `poll(..., 1000)` is blocking for about one second, so the “busy-poll” label may be an overclassification rather than a tight spin.

## Validation

Before any future source patch, try the project-level entrypoint from the workspace root: `./configure && make`. If that fails due to missing dependencies or generated files, record the exact failure and then use the narrowest relevant compile/test.

Bounded independent reproduction attempt: in a disposable environment, run a timed `strace` of `supervisord` with a minimal config, e.g. `timeout 8s strace -f -tt -e poll,wait4 /usr/bin/python3 /usr/bin/supervisord -n -c <temp-config>`, and check whether the same one-second `poll`/`ECHILD` cadence occurs. Only if a CPython-level reproducer shows incorrect `select.poll()` or `os.wait*()` behavior should this become a source patch.

## Patch Pass

Subject: Diagnose supervisord poll loop outside CPython

## Commit Message

No CPython source change is proposed. The collected signal points to `supervisord` waking once per second under Python, not to a proven bug in CPython’s `poll()` or child-wait wrappers.

## Evidence Confidence

inferred

## Issue Connection

Fixer collected perf, strace, and `/proc` evidence for `/usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf`. The trace shows `poll(..., 1000)` sleeping for about one second, then `wait4(-1, ..., WNOHANG)` returning `ECHILD`, repeated over the sample. `/proc` reported the process as sleeping in `poll_schedule_timeout`, which does not show a tight CPU spin inside CPython.

The cautious inference is that this is an application event-loop cadence in `supervisord`, not a CPython runtime defect. I inspected the relevant CPython paths: `Modules/selectmodule.c` uses `_PyDeadline_Init()` / `_PyDeadline_Get()` for `select.poll()` timeouts, `Modules/posixmodule.c` exposes `wait4()` / `waitpid()` with `Py_BEGIN_ALLOW_THREADS`, and `Python/thread_pthread.h` follows local pthread setup/teardown patterns. No relevant local helper or wrapper was missing, and changing these generic APIs would be speculative.

The specific change made is no source change. This follows the saved plan in `plan-output.txt`; I did not change course. The expected effect is to avoid landing an upstream CPython patch that would alter stable runtime behavior without evidence that CPython caused the observed wakeups.

## Git Add Paths

None

## Validation

`./configure && make` from the workspace root completed with exit code 0. The build reported environment-related optional module issues: `_ssl` failed to import because `_ssl.cpython-313-x86_64-linux-gnu.so` had undefined symbol `TLSv1_method`; `_dbm`, `_gdbm`, and `_tkinter` dependencies were missing.

Independent reproduction attempt: `timeout 8s strace -f -tt -e poll,wait4 /usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf` failed because ptrace is not permitted in this sandbox: `PTRACE_TRACEME: Operation not permitted`.

Fallback smoke attempt: `timeout 8s /usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf` failed because `/usr/bin/supervisord` is not installed in this workspace: `[Errno 2] No such file or directory`.

Cleaned generated build artifacts with `make distclean`; final `git status --short` was clean.

## Review Pass 1

RESULT: ok

No findings. The generated pass correctly leaves no source diff for indirect profiler/strace evidence, uses `inferred`, lists `None` for git add paths, and does not overstate reproduction. The current workspace is clean, and the report names the project-level `./configure && make` validation plus the blocked independent reproduction attempts with exact blockers.

diagnosis-only report

report

python3.13 likely remains stuck in a busy-poll loop. A diagnosis report and patch proposal were created locally.

state: readycreated: 2026-05-18 10:15 UTCvalidation: ready
Published session

Prompt

## Plan Pass

You are planning a fixer patch before any edits happen.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. The original pre-edit snapshot is available at `./source` if you need to inspect it. For interpreter processes, plan from the script/application entrypoint evidence first and include the runtime only as a second investigation target unless the evidence proves a runtime bug.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround. Inspect the relevant code, nearby callers, project contribution docs, and local helper/compat APIs, but do not edit files in this pass.

Return a short markdown plan with these exact sections:

## Problem
## Evidence Confidence
## Proposed Subject
## Patch Plan
## Risks
## Validation

Classify `## Evidence Confidence` as exactly one of `reproduced`, `observed`, or `inferred`. Use `inferred` only for a no-patch diagnosis/report plan unless you can name the extra evidence you will collect before editing; inferred source patches are blocked by Fixer because they are not pull-request-ready. For `observed` source-patch plans, plan to say in the final `## Issue Connection` that the failure was observed by Fixer and not independently reproduced. If the plan touches authentication, authorization, credentials, cryptography, sandboxing, permissions, or timing/throttling behavior, treat it as security-sensitive: do not plan a source patch unless validation can reproduce the behavior and analyze the security impact; otherwise plan a no-patch diagnosis/report. The plan must explain how the proposed code change addresses the observed issue evidence, call out any prior Fixer patch that should be improved or replaced, reject awkward control flow such as avoidable `goto` if there is a cleaner bounded alternative, name any local helper APIs or maintainer conventions the patch should follow, and keep the intended maintainer-facing explanation clear enough that someone unfamiliar with the local complaint wording can still follow the fix. In `## Validation`, name the reproducible configure/build/test entrypoint you will try from the workspace root before any focused leaf compile or smoke check, and include one bounded independent reproduction attempt for the collected failure signal when it is safe and cheap. Do not plan to claim `reproduced` unless that reproduction command or test can actually show the failure.

## Patch Pass

You are working on a bounded fixer proposal.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. Produce the smallest reasonable patch for the target repository, keep the change upstreamable, prefer the clearest control flow available, and do not keep avoidable `goto` when a simpler structure would read better. Before introducing new file, process, allocation, locking, networking, or platform APIs, inspect nearby code and project contribution docs for existing helpers or compatibility wrappers and use those local patterns unless you can explain why they do not fit. Validate from a reproducible workspace-root entrypoint before falling back to focused leaf commands; if a build or test cannot run, report the exact command, the exact blocker, and any narrower check you ran instead. During validation, also try one bounded independent reproduction of the collected failure signal when it is safe and cheap, such as a failing test, smoke command, perf/strace comparison, or before/after runtime check. Only use `reproduced` if that command or test actually reproduced the failure; otherwise keep `observed` and report the reproduction blocker. The final explanation must connect the observed issue evidence to the actual code change, not just paraphrase the diff. Write like a maintainer is going to read the patch mail cold: explain the bug in plain language, define subsystem-specific jargon the first time you need it, and make the causal story obvious. Explicitly classify evidence confidence as `reproduced`, `observed`, or `inferred`: `reproduced` means you reproduced the failure locally; `observed` means Fixer has direct crash/log/trace evidence but you did not independently reproduce it; `inferred` means the source patch is not pull-request-ready, so do not leave a source diff unless you first gather stronger observed/reproduced evidence; otherwise return a no-patch diagnosis/report. For any source-changing `observed` patch, say explicitly in `## Issue Connection` that the failure was observed by Fixer and not independently reproduced. Security-sensitive areas such as authentication, authorization, credentials, cryptography, sandboxing, permissions, and timing/throttling behavior need reproduced evidence plus explicit security-impact analysis before leaving a source diff; otherwise return a no-patch diagnosis/report for human review. If you introduce non-obvious state translation, index remapping, or backend split logic, add a short source comment that explains the invariant being preserved.

Start by explaining the likely root cause from the collected perf, strace, and /proc evidence. If you cannot land a safe patch, leave a diagnosis that is strong enough for an upstream bug report.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround. 

Keep the change narrowly scoped and summarize validation clearly.

In every authoring pass, your final response must start with `Subject: <single-line git commit subject>` and then include these markdown sections exactly:

## Commit Message
A short upstream-friendly explanation of what changed and why. Write it in plain language that a maintainer can follow without local complaint context. If you use subsystem jargon, define it immediately.

## Evidence Confidence
Exactly one word: `reproduced`, `observed`, or `inferred`. Use `reproduced` only when you reproduced the failure locally with a command or test, and include that command/test in `## Validation`. Use `observed` when Fixer has direct crash/log/trace evidence but you did not independently reproduce it. If `## Git Add Paths` lists source files for an `observed` patch, `## Issue Connection` must explicitly say the failure was observed by Fixer and not independently reproduced. Security-sensitive source changes touching authentication, authorization, credentials, cryptography, sandboxing, permissions, or timing/throttling behavior require reproduced evidence and explicit security-impact analysis; otherwise list `None` under `## Git Add Paths` and write a no-patch diagnosis/report. Use `inferred` for profiler/strace/indirect evidence; inferred responses may be no-patch diagnoses or reports, but inferred source patches are not pull-request-ready until stronger evidence is gathered.

## Issue Connection
Write this as maintainer-facing patch mail, not as local Fixer notes. Cover four things explicitly in readable sentences: the user-visible symptom or the exact collected signal, the code-level cause or the cautious inference from evidence, the specific change you made, and the expected effect. Do not invent a reproducer, command line, crash, or user-visible failure that is not present in the evidence bundle. If the evidence is direct-but-not-reproduced, say it was observed by Fixer and not independently reproduced. If the evidence is indirect and you did not gather stronger evidence, do not leave a source diff; write a no-patch diagnosis/report instead. Include an explicit effect sentence such as `The expected effect is ...`, `This should reduce ...`, or `This prevents ...` for source patches. If the logic is non-obvious in code, mention that you added a short explanatory comment.

## Git Add Paths
List the repo-relative paths that belong in the final patch, one per line. Use `None` only when you intentionally made no source changes. Include intentionally new files, and do not list generated build artifacts.

## Validation
List the checks you ran, or say clearly that you could not run them. Include the independent reproduction command/test and result when `## Evidence Confidence` is `reproduced`; if reproduction was attempted but blocked, name the exact blocker and keep confidence at `observed` or `inferred`.

Before editing, read the plan at `./plan-output.txt` and follow it unless the code proves part of it wrong. If you change course, say so explicitly in the final write-up instead of silently drifting from the plan.

## Review Pass 1

You are reviewing a freshly generated fixer patch.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. Review the first patch pass. The original pre-edit snapshot is available at `./source` for diffing.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout. The latest author response is at `./patch-output.txt`. Inspect the current code and changed paths like a strict code reviewer. Focus on correctness, regressions, maintainability, awkward control flow such as avoidable `goto`, missing validation, weak or non-gittable commit message text, and explanations that fail to connect the observed issue evidence to the code change. Also review the maintainer experience: the patch mail should be easy to accept upstream, the user-visible bug should be explained in plain language, subsystem-specific jargon should be defined when first used, and any non-obvious state translation or index remapping in code should have a short explanatory comment. Reject patches that omit `## Evidence Confidence`, use anything other than `reproduced`, `observed`, or `inferred`, or sound more certain than that evidence level allows. Reject patches that claim `reproduced` unless `## Validation` names the concrete reproduction command or test and its result. Reject source patches in security-sensitive areas such as authentication, authorization, credentials, cryptography, sandboxing, permissions, and timing/throttling behavior unless the author reproduced the behavior and explicitly analyzed the security impact of the change; observed-only evidence should become a diagnosis/report, not a PR-ready source diff. Reject patches that invent a reproducer, command line, crash, or user-visible failure not present in the evidence bundle; indirect profiler or strace evidence may justify a cautious mitigation, but the author must say it is indirect instead of presenting it as a confirmed upstream bug. Reject patches that introduce generic libc/std APIs when nearby code or project docs provide a local compat/helper API for the same job, unless the author explicitly justifies the exception. Reject validation that only reports a leaf object/syntax build when a project-level configure/build/test entrypoint exists and was not attempted; if a full build cannot run, the author must show the exact failed command and blocker.

Do not apply code changes in this pass.

Return a short markdown review report. The first non-empty line must be exactly one of:

RESULT: ok
RESULT: fix-needed

If you choose `RESULT: fix-needed`, add a `## Findings` section with concrete, actionable items.

Response

## Plan Pass

## Problem

Fixer observed high CPU attributed to `python3.13`, but the process command line is `/usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf`. The syscall evidence shows a one-second `poll()` timeout followed by `wait4(-1, ..., WNOHANG)` returning `ECHILD`, which matches an application event loop pattern more than a demonstrated CPython runtime defect.

## Evidence Confidence

inferred

## Proposed Subject

No CPython source patch yet: diagnose/report likely `supervisord` event-loop behavior unless an independent reproduction shows CPython’s `select.poll`, `os.wait4`/`waitpid`, thread, or memory code is causing the wakeups incorrectly.

## Patch Plan

1. Treat `/usr/bin/supervisord` as the primary investigation target, per the entrypoint evidence, and avoid changing CPython from profiler-only attribution.
2. Use CPython runtime paths only as secondary checks: `Modules/selectmodule.c` uses `_PyDeadline_Init()` / `_PyDeadline_Get()` around `poll()`, `Modules/posixmodule.c` wraps `wait4()` and `waitpid()` with `Py_BEGIN_ALLOW_THREADS`, and `Python/thread_pthread.h` contains the observed `pthread_attr_destroy()` helper path. I did not find a local CPython helper that would turn the observed application loop into a runtime fix.
3. If later evidence isolates CPython, follow CPython conventions from `README.rst` / Developer Guide references and Debian’s quilt packaging note in `debian/README.source`; avoid awkward control flow such as unnecessary `goto`.
4. Improve or replace any prior Fixer patch that tries to throttle CPython’s generic `poll()`/`waitpid()` wrappers, because that would change valid API semantics without proving the interpreter caused the observed loop.

## Risks

A CPython patch from the current evidence would likely be speculative and could alter standard-library or C API behavior for all applications. The observed `poll(..., 1000)` is blocking for about one second, so the “busy-poll” label may be an overclassification rather than a tight spin.

## Validation

Before any future source patch, try the project-level entrypoint from the workspace root: `./configure && make`. If that fails due to missing dependencies or generated files, record the exact failure and then use the narrowest relevant compile/test.

Bounded independent reproduction attempt: in a disposable environment, run a timed `strace` of `supervisord` with a minimal config, e.g. `timeout 8s strace -f -tt -e poll,wait4 /usr/bin/python3 /usr/bin/supervisord -n -c <temp-config>`, and check whether the same one-second `poll`/`ECHILD` cadence occurs. Only if a CPython-level reproducer shows incorrect `select.poll()` or `os.wait*()` behavior should this become a source patch.

## Patch Pass

Subject: Diagnose supervisord poll loop outside CPython

## Commit Message

No CPython source change is proposed. The collected signal points to `supervisord` waking once per second under Python, not to a proven bug in CPython’s `poll()` or child-wait wrappers.

## Evidence Confidence

inferred

## Issue Connection

Fixer collected perf, strace, and `/proc` evidence for `/usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf`. The trace shows `poll(..., 1000)` sleeping for about one second, then `wait4(-1, ..., WNOHANG)` returning `ECHILD`, repeated over the sample. `/proc` reported the process as sleeping in `poll_schedule_timeout`, which does not show a tight CPU spin inside CPython.

The cautious inference is that this is an application event-loop cadence in `supervisord`, not a CPython runtime defect. I inspected the relevant CPython paths: `Modules/selectmodule.c` uses `_PyDeadline_Init()` / `_PyDeadline_Get()` for `select.poll()` timeouts, `Modules/posixmodule.c` exposes `wait4()` / `waitpid()` with `Py_BEGIN_ALLOW_THREADS`, and `Python/thread_pthread.h` follows local pthread setup/teardown patterns. No relevant local helper or wrapper was missing, and changing these generic APIs would be speculative.

The specific change made is no source change. This follows the saved plan in `plan-output.txt`; I did not change course. The expected effect is to avoid landing an upstream CPython patch that would alter stable runtime behavior without evidence that CPython caused the observed wakeups.

## Git Add Paths

None

## Validation

`./configure && make` from the workspace root completed with exit code 0. The build reported environment-related optional module issues: `_ssl` failed to import because `_ssl.cpython-313-x86_64-linux-gnu.so` had undefined symbol `TLSv1_method`; `_dbm`, `_gdbm`, and `_tkinter` dependencies were missing.

Independent reproduction attempt: `timeout 8s strace -f -tt -e poll,wait4 /usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf` failed because ptrace is not permitted in this sandbox: `PTRACE_TRACEME: Operation not permitted`.

Fallback smoke attempt: `timeout 8s /usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf` failed because `/usr/bin/supervisord` is not installed in this workspace: `[Errno 2] No such file or directory`.

Cleaned generated build artifacts with `make distclean`; final `git status --short` was clean.

## Review Pass 1

RESULT: ok

No findings. The generated pass correctly leaves no source diff for indirect profiler/strace evidence, uses `inferred`, lists `None` for git add paths, and does not overstate reproduction. The current workspace is clean, and the report names the project-level `./configure && make` validation plus the blocked independent reproduction attempts with exact blockers.

diagnosis-only report

report

python3.13 likely remains stuck in a busy-poll loop. A diagnosis report and patch proposal were created locally.

state: readycreated: 2026-05-18 08:55 UTCvalidation: ready
Published session

Prompt

## Plan Pass

You are planning a fixer patch before any edits happen.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. The original pre-edit snapshot is available at `./source` if you need to inspect it. For interpreter processes, plan from the script/application entrypoint evidence first and include the runtime only as a second investigation target unless the evidence proves a runtime bug.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround. Inspect the relevant code, nearby callers, project contribution docs, and local helper/compat APIs, but do not edit files in this pass.

Return a short markdown plan with these exact sections:

## Problem
## Evidence Confidence
## Proposed Subject
## Patch Plan
## Risks
## Validation

Classify `## Evidence Confidence` as exactly one of `reproduced`, `observed`, or `inferred`. Use `inferred` only for a no-patch diagnosis/report plan unless you can name the extra evidence you will collect before editing; inferred source patches are blocked by Fixer because they are not pull-request-ready. For `observed` source-patch plans, plan to say in the final `## Issue Connection` that the failure was observed by Fixer and not independently reproduced. If the plan touches authentication, authorization, credentials, cryptography, sandboxing, permissions, or timing/throttling behavior, treat it as security-sensitive: do not plan a source patch unless validation can reproduce the behavior and analyze the security impact; otherwise plan a no-patch diagnosis/report. The plan must explain how the proposed code change addresses the observed issue evidence, call out any prior Fixer patch that should be improved or replaced, reject awkward control flow such as avoidable `goto` if there is a cleaner bounded alternative, name any local helper APIs or maintainer conventions the patch should follow, and keep the intended maintainer-facing explanation clear enough that someone unfamiliar with the local complaint wording can still follow the fix. In `## Validation`, name the reproducible configure/build/test entrypoint you will try from the workspace root before any focused leaf compile or smoke check, and include one bounded independent reproduction attempt for the collected failure signal when it is safe and cheap. Do not plan to claim `reproduced` unless that reproduction command or test can actually show the failure.

## Patch Pass

You are working on a bounded fixer proposal.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. Produce the smallest reasonable patch for the target repository, keep the change upstreamable, prefer the clearest control flow available, and do not keep avoidable `goto` when a simpler structure would read better. Before introducing new file, process, allocation, locking, networking, or platform APIs, inspect nearby code and project contribution docs for existing helpers or compatibility wrappers and use those local patterns unless you can explain why they do not fit. Validate from a reproducible workspace-root entrypoint before falling back to focused leaf commands; if a build or test cannot run, report the exact command, the exact blocker, and any narrower check you ran instead. During validation, also try one bounded independent reproduction of the collected failure signal when it is safe and cheap, such as a failing test, smoke command, perf/strace comparison, or before/after runtime check. Only use `reproduced` if that command or test actually reproduced the failure; otherwise keep `observed` and report the reproduction blocker. The final explanation must connect the observed issue evidence to the actual code change, not just paraphrase the diff. Write like a maintainer is going to read the patch mail cold: explain the bug in plain language, define subsystem-specific jargon the first time you need it, and make the causal story obvious. Explicitly classify evidence confidence as `reproduced`, `observed`, or `inferred`: `reproduced` means you reproduced the failure locally; `observed` means Fixer has direct crash/log/trace evidence but you did not independently reproduce it; `inferred` means the source patch is not pull-request-ready, so do not leave a source diff unless you first gather stronger observed/reproduced evidence; otherwise return a no-patch diagnosis/report. For any source-changing `observed` patch, say explicitly in `## Issue Connection` that the failure was observed by Fixer and not independently reproduced. Security-sensitive areas such as authentication, authorization, credentials, cryptography, sandboxing, permissions, and timing/throttling behavior need reproduced evidence plus explicit security-impact analysis before leaving a source diff; otherwise return a no-patch diagnosis/report for human review. If you introduce non-obvious state translation, index remapping, or backend split logic, add a short source comment that explains the invariant being preserved.

Start by explaining the likely root cause from the collected perf, strace, and /proc evidence. If you cannot land a safe patch, leave a diagnosis that is strong enough for an upstream bug report.

Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout.

Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `python3.13` upstream patch, not just a Debian-local workaround. 

Keep the change narrowly scoped and summarize validation clearly.

In every authoring pass, your final response must start with `Subject: <single-line git commit subject>` and then include these markdown sections exactly:

## Commit Message
A short upstream-friendly explanation of what changed and why. Write it in plain language that a maintainer can follow without local complaint context. If you use subsystem jargon, define it immediately.

## Evidence Confidence
Exactly one word: `reproduced`, `observed`, or `inferred`. Use `reproduced` only when you reproduced the failure locally with a command or test, and include that command/test in `## Validation`. Use `observed` when Fixer has direct crash/log/trace evidence but you did not independently reproduce it. If `## Git Add Paths` lists source files for an `observed` patch, `## Issue Connection` must explicitly say the failure was observed by Fixer and not independently reproduced. Security-sensitive source changes touching authentication, authorization, credentials, cryptography, sandboxing, permissions, or timing/throttling behavior require reproduced evidence and explicit security-impact analysis; otherwise list `None` under `## Git Add Paths` and write a no-patch diagnosis/report. Use `inferred` for profiler/strace/indirect evidence; inferred responses may be no-patch diagnoses or reports, but inferred source patches are not pull-request-ready until stronger evidence is gathered.

## Issue Connection
Write this as maintainer-facing patch mail, not as local Fixer notes. Cover four things explicitly in readable sentences: the user-visible symptom or the exact collected signal, the code-level cause or the cautious inference from evidence, the specific change you made, and the expected effect. Do not invent a reproducer, command line, crash, or user-visible failure that is not present in the evidence bundle. If the evidence is direct-but-not-reproduced, say it was observed by Fixer and not independently reproduced. If the evidence is indirect and you did not gather stronger evidence, do not leave a source diff; write a no-patch diagnosis/report instead. Include an explicit effect sentence such as `The expected effect is ...`, `This should reduce ...`, or `This prevents ...` for source patches. If the logic is non-obvious in code, mention that you added a short explanatory comment.

## Git Add Paths
List the repo-relative paths that belong in the final patch, one per line. Use `None` only when you intentionally made no source changes. Include intentionally new files, and do not list generated build artifacts.

## Validation
List the checks you ran, or say clearly that you could not run them. Include the independent reproduction command/test and result when `## Evidence Confidence` is `reproduced`; if reproduction was attempted but blocked, name the exact blocker and keep confidence at `observed` or `inferred`.

Before editing, read the plan at `./plan-output.txt` and follow it unless the code proves part of it wrong. If you change course, say so explicitly in the final write-up instead of silently drifting from the plan.

## Review Pass 1 (local metadata check)

Local metadata consistency check

## Refinement Pass 1

You are refining a fixer patch after an explicit code review.

Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. Read the latest author response at `./patch-output.txt`. Read the review report at `./review-1-output.txt`. This is refinement round 1. The original pre-edit snapshot is available at `./source` if you need to compare the current patch against it. Re-read the planning pass at `./plan-output.txt` before editing. The workspace currently changes these repo-relative paths: Lib/__pycache__/__future__.cpython-313.pyc, Lib/__pycache__/_collections_abc.cpython-313.pyc, Lib/__pycache__/_colorize.cpython-313.pyc, Lib/__pycache__/_compat_pickle.cpython-313.pyc, Lib/__pycache__/_compression.cpython-313.pyc, Lib/__pycache__/_opcode_metadata.cpython-313.pyc, Lib/__pycache__/_sitebuiltins.cpython-313.pyc, Lib/__pycache__/_weakrefset.cpython-313.pyc, Lib/__pycache__/abc.cpython-313.pyc, Lib/__pycache__/argparse.cpython-313.pyc, Lib/__pycache__/ast.cpython-313.pyc, Lib/__pycache__/bz2.cpython-313.pyc, Lib/__pycache__/codecs.cpython-313.pyc, Lib/__pycache__/contextlib.cpython-313.pyc, Lib/__pycache__/contextvars.cpython-313.pyc, Lib/__pycache__/copy.cpython-313.pyc, Lib/__pycache__/copyreg.cpython-313.pyc, Lib/__pycache__/datetime.cpython-313.pyc, Lib/__pycache__/dis.cpython-313.pyc, Lib/__pycache__/enum.cpython-313.pyc, Lib/__pycache__/fnmatch.cpython-313.pyc, Lib/__pycache__/functools.cpython-313.pyc, Lib/__pycache__/genericpath.cpython-313.pyc, Lib/__pycache__/gettext.cpython-313.pyc, Lib/__pycache__/glob.cpython-313.pyc, Lib/__pycache__/heapq.cpython-313.pyc, Lib/__pycache__/inspect.cpython-313.pyc, Lib/__pycache__/io.cpython-313.pyc, Lib/__pycache__/keyword.cpython-313.pyc, Lib/__pycache__/linecache.cpython-313.pyc, Lib/__pycache__/locale.cpython-313.pyc, Lib/__pycache__/lzma.cpython-313.pyc, Lib/__pycache__/numbers.cpython-313.pyc, Lib/__pycache__/opcode.cpython-313.pyc, Lib/__pycache__/operator.cpython-313.pyc, Lib/__pycache__/os.cpython-313.pyc, Lib/__pycache__/posixpath.cpython-313.pyc, Lib/__pycache__/reprlib.cpython-313.pyc, Lib/__pycache__/selectors.cpython-313.pyc, Lib/__pycache__/shutil.cpython-313.pyc, Lib/__pycache__/signal.cpython-313.pyc, Lib/__pycache__/site.cpython-313.pyc, Lib/__pycache__/socket.cpython-313.pyc, Lib/__pycache__/ssl.cpython-313.pyc, Lib/__pycache__/stat.cpython-313.pyc, Lib/__pycache__/string.cpython-313.pyc, Lib/__pycache__/struct.cpython-313.pyc, Lib/__pycache__/subprocess.cpython-313.pyc, Lib/__pycache__/textwrap.cpython-313.pyc, Lib/__pycache__/threading.cpython-313.pyc, Lib/__pycache__/token.cpython-313.pyc, Lib/__pycache__/tokenize.cpython-313.pyc, Lib/__pycache__/traceback.cpython-313.pyc, Lib/__pycache__/types.cpython-313.pyc, Lib/__pycache__/typing.cpython-313.pyc, Lib/__pycache__/warnings.cpython-313.pyc, Lib/__pycache__/weakref.cpython-313.pyc, Lib/asyncio/__pycache__/__init__.cpython-313.pyc, Lib/asyncio/__pycache__/base_events.cpython-313.pyc, Lib/asyncio/__pycache__/base_futures.cpython-313.pyc, Lib/asyncio/__pycache__/base_subprocess.cpython-313.pyc, Lib/asyncio/__pycache__/base_tasks.cpython-313.pyc, Lib/asyncio/__pycache__/constants.cpython-313.pyc, Lib/asyncio/__pycache__/coroutines.cpython-313.pyc, Lib/asyncio/__pycache__/events.cpython-313.pyc, Lib/asyncio/__pycache__/exceptions.cpython-313.pyc, Lib/asyncio/__pycache__/format_helpers.cpython-313.pyc, Lib/asyncio/__pycache__/futures.cpython-313.pyc, Lib/asyncio/__pycache__/locks.cpython-313.pyc, Lib/asyncio/__pycache__/log.cpython-313.pyc, Lib/asyncio/__pycache__/mixins.cpython-313.pyc, Lib/asyncio/__pycache__/protocols.cpython-313.pyc, Lib/asyncio/__pycache__/queues.cpython-313.pyc, Lib/asyncio/__pycache__/runners.cpython-313.pyc, Lib/asyncio/__pycache__/selector_events.cpython-313.pyc, Lib/asyncio/__pycache__/sslproto.cpython-313.pyc, Lib/asyncio/__pycache__/staggered.cpython-313.pyc, Lib/asyncio/__pycache__/streams.cpython-313.pyc, Lib/asyncio/__pycache__/subprocess.cpython-313.pyc, Lib/asyncio/__pycache__/taskgroups.cpython-313.pyc, Lib/asyncio/__pycache__/tasks.cpython-313.pyc, Lib/asyncio/__pycache__/threads.cpython-313.pyc, Lib/asyncio/__pycache__/timeouts.cpython-313.pyc, Lib/asyncio/__pycache__/transports.cpython-313.pyc, Lib/asyncio/__pycache__/trsock.cpython-313.pyc, Lib/asyncio/__pycache__/unix_events.cpython-313.pyc, Lib/collections/__pycache__/__init__.cpython-313.pyc, Lib/concurrent/__pycache__/__init__.cpython-313.pyc, Lib/concurrent/futures/__pycache__/__init__.cpython-313.pyc, Lib/concurrent/futures/__pycache__/_base.cpython-313.pyc, Lib/encodings/__pycache__/__init__.cpython-313.pyc, Lib/encodings/__pycache__/aliases.cpython-313.pyc, Lib/encodings/__pycache__/ascii.cpython-313.pyc, Lib/encodings/__pycache__/utf_8.cpython-313.pyc, Lib/importlib/__pycache__/__init__.cpython-313.pyc, Lib/importlib/__pycache__/_abc.cpython-313.pyc, Lib/logging/__pycache__/__init__.cpython-313.pyc, Lib/pathlib/__pycache__/__init__.cpython-313.pyc, Lib/pathlib/__pycache__/_abc.cpython-313.pyc, Lib/pathlib/__pycache__/_local.cpython-313.pyc, Lib/re/__pycache__/__init__.cpython-313.pyc, Lib/re/__pycache__/_casefix.cpython-313.pyc, Lib/re/__pycache__/_compiler.cpython-313.pyc, Lib/re/__pycache__/_constants.cpyth

[truncated 29270 bytes]

Response

## Plan Pass

## Problem
Fixer observed high CPU attributed to `python3.13` while running `/usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf`, but the embedded strace excerpt shows a 1-second blocking `poll()` followed by `wait4(..., WNOHANG)` returning `ECHILD`. That pattern looks like supervisor’s application-level event loop, not enough evidence of a CPython runtime bug.

## Evidence Confidence
observed

## Proposed Subject
No source patch yet: diagnose/report as insufficient CPython evidence unless a bounded reproduction shows the same CPU runaway in CPython without `supervisord`.

## Patch Plan
1. Do not edit CPython in this pass. The evidence is profiler/strace-only, raw artifact paths are unavailable, and the only concrete command line is `supervisord`.
2. If later evidence proves a CPython issue, start from the application entrypoint first, then inspect runtime code second. The current likely runtime-adjacent files would be `Python/thread_pthread.h`, allocator paths around `PyMem_Realloc`, and selector/wait wrappers only if new evidence points there.
3. Follow CPython upstream conventions from `README.rst`: use `./configure`, `make`, and `make test`; contribution process is via the CPython Developer Guide. Debian `README.source` says this source uses quilt patches, but the intended patch should be upstream-style rather than Debian-local.
4. Local helper conventions found: CPython thread code uses `PyMem_RawMalloc`/`PyMem_RawFree` where the GIL may not be held, and memory APIs must not be mixed with libc allocation. No relevant local helper justifies changing supervisor-like `poll`/`wait4` behavior in CPython from the current evidence.
5. Reject awkward speculative control flow changes, including any avoidable `goto`, because there is not yet a proved CPython defect to fix. No prior Fixer patch is present beyond the “Fixer baseline” commit.

## Risks
A CPython source patch here would likely be speculative and could change interpreter, thread, allocator, or signal behavior without a demonstrated runtime bug. The evidence also touches process polling/timing behavior, so changing throttling or wait semantics without reproduction would be unsafe.

## Validation
First try the project-level entrypoint from the workspace root: `./configure && make`. If it fails due to missing dependencies or generated files, record the exact failure and then use the narrowest relevant compile/smoke check available.

Bounded independent reproduction attempt: after a build, run a small `./python` script that performs `os.waitpid(-1, os.WNOHANG)` with no children and `select.poll().poll(1000)` in a loop under `timeout`, measuring CPU/time. This can check whether the observed syscall pattern itself causes CPU runaway, but unless it actually shows runaway CPU, the final issue connection should say Fixer observed the production signal and it was not independently reproduced.

## Patch Pass

Subject: No patch: insufficient evidence for CPython busy loop

## Commit Message
No source change is proposed. The collected signal points at a `supervisord` process running under Python and sleeping in a one-second `poll()` loop after `wait4(..., WNOHANG)` reports no child processes. That is not enough to identify a CPython runtime defect or justify changing interpreter polling, waiting, thread, or allocator code.

## Evidence Confidence
inferred

## Issue Connection
The collected signal is a Fixer runaway-process report for `/usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf`: perf attributed CPU to an unresolved Python offset, `/proc` showed the sampled process named `supervisord` in sleeping state, the kernel stack was in `poll_schedule_timeout`, and strace alternated `wait4(-1, ..., WNOHANG) = -1 ECHILD` with `poll(..., 1000) = 0`.

The cautious inference is that this is supervisor’s application-level event loop, not a proved CPython busy loop. A bounded local check of the same `waitpid(WNOHANG)` plus one-second `poll()` pattern did not reproduce CPU burn. The saved plan was followed; I did not change course.

I made no source change. CPython’s nearby conventions were inspected: `README.rst` points contributors to the CPython Developer Guide and root `./configure`, `make`, `make test` workflow; Debian `README.source` notes quilt packaging; thread code uses `PyMem_RawMalloc`/`PyMem_RawFree` where the GIL may not be held; `Include/pymem.h` warns not to mix CPython memory APIs with libc allocation. No relevant local helper or compatibility wrapper supports a CPython patch for this evidence.

The expected effect is that upstream code behavior is not changed based on indirect profiler/strace evidence. A useful upstream report should include raw artifacts or a reproducer showing high CPU in CPython itself, not only a Python-hosted application loop.

## Git Add Paths
None

## Validation
Ran project-level entrypoint from the workspace root:

`./configure && make`

Result: completed with exit code 0. Build output reported optional module issues: `_ssl` built but failed to import due to `undefined symbol: TLSv1_method`, and `_dbm`, `_gdbm`, `_tkinter` were missing. `make` still completed.

Ran bounded independent reproduction smoke check with the built interpreter:

`/usr/bin/time -f 'time user=%U sys=%S elapsed=%e cpu=%P' ./python - <<'PY' ... waitpid(-1, WNOHANG) + poll(1000) for 5 seconds ... PY`

Result: `loops=5 user=0.005610 sys=0.000000 elapsed=5.005`, `cpu=0%`. This did not reproduce the reported runaway CPU signal, so confidence remains `inferred` and no source patch was left.

## Review Pass 1 (local metadata check)

RESULT: fix-needed

## Findings
1. Patch metadata drift: the workspace currently changes `Lib/__pycache__/__future__.cpython-313.pyc`, `Lib/__pycache__/_collections_abc.cpython-313.pyc`, `Lib/__pycache__/_colorize.cpython-313.pyc`, `Lib/__pycache__/_compat_pickle.cpython-313.pyc`, `Lib/__pycache__/_compression.cpython-313.pyc`, `Lib/__pycache__/_opcode_metadata.cpython-313.pyc`, `Lib/__pycache__/_sitebuiltins.cpython-313.pyc`, `Lib/__pycache__/_weakrefset.cpython-313.pyc`, `Lib/__pycache__/abc.cpython-313.pyc`, `Lib/__pycache__/argparse.cpython-313.pyc`, `Lib/__pycache__/ast.cpython-313.pyc`, `Lib/__pycache__/bz2.cpython-313.pyc`, `Lib/__pycache__/codecs.cpython-313.pyc`, `Lib/__pycache__/contextlib.cpython-313.pyc`, `Lib/__pycache__/contextvars.cpython-313.pyc`, `Lib/__pycache__/copy.cpython-313.pyc`, `Lib/__pycache__/copyreg.cpython-313.pyc`, `Lib/__pycache__/datetime.cpython-313.pyc`, `Lib/__pycache__/dis.cpython-313.pyc`, `Lib/__pycache__/enum.cpython-313.pyc`, `Lib/__pycache__/fnmatch.cpython-313.pyc`, `Lib/__pycache__/functools.cpython-313.pyc`, `Lib/__pycache__/genericpath.cpython-313.pyc`, `Lib/__pycache__/gettext.cpython-313.pyc`, `Lib/__pycache__/glob.cpython-313.pyc`, `Lib/__pycache__/heapq.cpython-313.pyc`, `Lib/__pycache__/inspect.cpython-313.pyc`, `Lib/__pycache__/io.cpython-313.pyc`, `Lib/__pycache__/keyword.cpython-313.pyc`, `Lib/__pycache__/linecache.cpython-313.pyc`, `Lib/__pycache__/locale.cpython-313.pyc`, `Lib/__pycache__/lzma.cpython-313.pyc`, `Lib/__pycache__/numbers.cpython-313.pyc`, `Lib/__pycache__/opcode.cpython-313.pyc`, `Lib/__pycache__/operator.cpython-313.pyc`, `Lib/__pycache__/os.cpython-313.pyc`, `Lib/__pycache__/posixpath.cpython-313.pyc`, `Lib/__pycache__/reprlib.cpython-313.pyc`, `Lib/__pycache__/selectors.cpython-313.pyc`, `Lib/__pycache__/shutil.cpython-313.pyc`, `Lib/__pycache__/signal.cpython-313.pyc`, `Lib/__pycache__/site.cpython-313.pyc`, `Lib/__pycache__/socket.cpython-313.pyc`, `Lib/__pycache__/ssl.cpython-313.pyc`, `Lib/__pycache__/stat.cpython-313.pyc`, `Lib/__pycache__/string.cpython-313.pyc`, `Lib/__pycache__/struct.cpython-313.pyc`, `Lib/__pycache__/subprocess.cpython-313.pyc`, `Lib/__pycache__/textwrap.cpython-313.pyc`, `Lib/__pycache__/threading.cpython-313.pyc`, `Lib/__pycache__/token.cpython-313.pyc`, `Lib/__pycache__/tokenize.cpython-313.pyc`, `Lib/__pycache__/traceback.cpython-313.pyc`, `Lib/__pycache__/types.cpython-313.pyc`, `Lib/__pycache__/typing.cpython-313.pyc`, `Lib/__pycache__/warnings.cpython-313.pyc`, `Lib/__pycache__/weakref.cpython-313.pyc`, `Lib/asyncio/__pycache__/__init__.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_events.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_futures.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_subprocess.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_tasks.cpython-313.pyc`, `Lib/asyncio/__pycache__/constants.cpython-313.pyc`, `Lib/asyncio/__pycache__/coroutines.cpython-313.pyc`, `Lib/asyncio/__pycache__/events.cpython-313.pyc`, `Lib/asyncio/__pycache__/exceptions.cpython-313.pyc`, `Lib/asyncio/__pycache__/format_helpers.cpython-313.pyc`, `Lib/asyncio/__pycache__/futures.cpython-313.pyc`, `Lib/asyncio/__pycache__/locks.cpython-313.pyc`, `Lib/asyncio/__pycache__/log.cpython-313.pyc`, `Lib/asyncio/__pycache__/mixins.cpython-313.pyc`, `Lib/asyncio/__pycache__/protocols.cpython-313.pyc`, `Lib/asyncio/__pycache__/queues.cpython-313.pyc`, `Lib/asyncio/__pycache__/runners.cpython-313.pyc`, `Lib/asyncio/__pycache__/selector_events.cpython-313.pyc`, `Lib/asyncio/__pycache__/sslproto.cpython-313.pyc`, `Lib/asyncio/__pycache__/staggered.cpython-313.pyc`, `Lib/asyncio/__pycache__/streams.cpython-313.pyc`, `Lib/asyncio/__pycache__/subprocess.cpython-313.pyc`, `Lib/asyncio/__pycache__/taskgroups.cpython-313.pyc`, `Lib/asyncio/__pycache__/tasks.cpython-313.pyc`, `Lib/asyncio/__pycache__/threads.cpython-313.pyc`, `Lib/asyncio/__pycache__/timeouts.cpython-313.pyc`, `Lib/asyncio/__pycache__/transports.cpython-313.pyc`, `Lib/asyncio/__pycache__/trsock.cpython-313.pyc`, `Lib/asyncio/__pycache__/unix_events.cpython-313.pyc`, `Lib/collections/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/futures/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/futures/__pycache__/_base.cpython-313.pyc`, `Lib/encodings/__pycache__/__init__.cpython-313.pyc`, `Lib/encodings/__pycache__/aliases.cpython-313.pyc`, `Lib/encodings/__pycache__/ascii.cpython-313.pyc`, `Lib/encodings/__pycache__/utf_8.cpython-313.pyc`, `Lib/importlib/__pycache__/__init__.cpython-313.pyc`, `Lib/importlib/__pycache__/_abc.cpython-313.pyc`, `Lib/logging/__pycache__/__init__.cpython-313.pyc`, `Lib/pathlib/__pycache__/__init__.cpython-313.pyc`, `Lib/pathlib/__pycache__/_abc.cpython-313.pyc`, `Lib/pathlib/__pycache__/_local.cpython-313.pyc`, `Lib/re/__pycache__/__init__.cpython-313.pyc`, `Lib/re/__pycache__/_casefix.cpython-313.pyc`, `Lib/re/__pycache__/_compiler.cpython-313.pyc`, `Lib/re/__pycache__/_constants.cpython-313.pyc`, `Lib/re/__pycache__/_parser.cpython-313.pyc`, `Lib/sysconfig/__pycache__/__init__.cpython-313.pyc`, `Lib/sysconfig/__pycache__/__main__.cpython-313.pyc`, `Lib/xml/__pycache__/__init__.cpython-313.pyc`, `Lib/xml/etree/__pycache__/ElementPath.cpython-313.pyc`, `Lib/xml/etree/__pycache__/__init__.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/__init__.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/_common.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/_tzpath.cpython-313.pyc`, `Makefile`, `Makefile.pre`, `Misc/python-config.sh`, `Misc/python-embed.pc`, `Misc/python.pc`, `Modules/Setup.bootstrap`, `Modules/Setup.local`, `Modules/Setup.stdlib`, `Modules/_abc.o`, `Modules/_asyncio.cpython-313-x86_64-linux-gnu.so`, `Modules/_asynciomodule.o`, `Modules/_bisect.cpython-313-x86_64-linux-gnu.so`, `Modules/_bisectmodule.o`, `Modules/_blake2.cpython-313-x86_64-linux-gnu.so`, `Modules/_blake2/blake2b_impl.o`, `Modules/_blake2/blake2module.o`, `Modules/_blake2/blake2s_impl.o`, `Modules/_bz2.cpython-313-x86_64-linux-gnu.so`, `Modules/_bz2module.o`, `Modules/_codecs_cn.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_hk.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_iso2022.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_jp.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_kr.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_tw.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecsmodule.o`, `Modules/_collectionsmodule.o`, `Modules/_contextvars.cpython-313-x86_64-linux-gnu.so`, `Modules/_contextvarsmodule.o`, `Modules/_csv.cpython-313-x86_64-linux-gnu.so`, `Modules/_csv.o`, `Modules/_ctypes.cpython-313-x86_64-linux-gnu.so`, `Modules/_ctypes/_ctypes.o`, `Modules/_ctypes/_ctypes_test.o`, `Modules/_ctypes/callbacks.o`, `Modules/_ctypes/callproc.o`, `Modules/_ctypes/cfield.o`, `Modules/_ctypes/stgdict.o`, `Modules/_ctypes_test.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses_panel.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses_panel.o`, `Modules/_cursesmodule.o`, `Modules/_datetime.cpython-313-x86_64-linux-gnu.so`, `Modules/_datetimemodule.o`, `Modules/_decimal.cpython-313-x86_64-linux-gnu.so`, `Modules/_decimal/_decimal.o`, `Modules/_decimal/libmpdec/basearith.o`, `Modules/_decimal/libmpdec/constants.o`, `Modules/_decimal/libmpdec/context.o`, `Modules/_decimal/libmpdec/convolute.o`, `Modules/_decimal/libmpdec/crt.o`, `Modules/_decimal/libmpdec/difradix2.o`, `Modules/_decimal/libmpdec/fnt.o`, `Modules/_decimal/libmpdec/fourstep.o`, `Modules/_decimal/libmpdec/io.o`, `Modules/_decimal/libmpdec/libmpdec.a`, `Modules/_decimal/libmpdec/mpalloc.o`, `Modules/_decimal/libmpdec/mpdecimal.o`, `Modules/_decimal/libmpdec/numbertheory.o`, `Modules/_decimal/libmpdec/sixstep.o`, `Modules/_decimal/libmpdec/transpose.o`, `Modules/_elementtree.cpython-313-x86_64-linux-gnu.so`, `Modules/_elementtree.o`, `Modules/_functoolsmodule.o`, `Modules/_hacl/Hacl_Hash_MD5.o`, `Modules/_hacl/Hacl_Hash_SHA1.o`, `Modules/_hacl/Hacl_Hash_SHA2.o`, `Modules/_hacl/Hacl_Hash_SHA3.o`, `Modules/_hacl/libHacl_Hash_SHA2.a`, `Modules/_hashlib.cpython-313-x86_64-linux-gnu.so`, `Modules/_hashopenssl.o`, `Modules/_heapq.cpython-313-x86_64-linux-gnu.so`, `Modules/_heapqmodule.o`, `Modules/_interpchannels.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpchannelsmodule.o`, `Modules/_interpqueues.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpqueuesmodule.o`, `Modules/_interpreters.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpretersmodule.o`, `Modules/_io/_iomodule.o`, `Modules/_io/bufferedio.o`, `Modules/_io/bytesio.o`, `Modules/_io/fileio.o`, `Modules/_io/iobase.o`, `Modules/_io/stringio.o`, `Modules/_io/textio.o`, `Modules/_json.cpython-313-x86_64-linux-gnu.so`, `Modules/_json.o`, `Modules/_localemodule.o`, `Modules/_lsprof.cpython-313-x86_64-linux-gnu.so`, `Modules/_lsprof.o`, `Modules/_lzma.cpython-313-x86_64-linux-gnu.so`, `Modules/_lzmamodule.o`, `Modules/_md5.cpython-313-x86_64-linux-gnu.so`, `Modules/_multibytecodec.cpython-313-x86_64-linux-gnu.so`, `Modules/_multiprocessing.cpython-313-x86_64-linux-gnu.so`, `Modules/_multiprocessing/multiprocessing.o`, `Modules/_multiprocessing/posixshmem.o`, `Modules/_multiprocessing/semaphore.o`, `Modules/_opcode.cpython-313-x86_64-linux-gnu.so`, `Modules/_opcode.o`, `Modules/_operator.o`, `Modules/_pickle.cpython-313-x86_64-linux-gnu.so`, `Modules/_pickle.o`, `Modules/_posixshmem.cpython-313-x86_64-linux-gnu.so`, `Modules/_posixsubprocess.cpython-313-x86_64-linux-gnu.so`, `Modules/_posixsubprocess.o`, `Modules/_queue.cpython-313-x86_64-linux-gnu.so`, `Modules/_queuemodule.o`, `Modules/_random.cpython-313-x86_64-linux-gnu.so`, `Modules/_randommodule.o`, `Modules/_sha1.cpython-313-x86_64-linux-gnu.so`, `Modules/_sha2.cpython-313-x86_64-linux-gnu.so`, `Modules/_sha3.cpython-313-x86_64-linux-gnu.so`, `Modules/_socket.cpython-313-x86_64-linux-gnu.so`, `Modules/_sqlite/blob.o`, `Modules/_sqlite/connection.o`, `Modules/_sqlite/cursor.o`, `Modules/_sqlite/microprotocols.o`, `Modules/_sqlite/module.o`, `Modules/_sqlite/prepare_protocol.o`, `Modules/_sqlite/row.o`, `Modules/_sqlite/statement.o`, `Modules/_sqlite/util.o`, `Modules/_sqlite3.cpython-313-x86_64-linux-gnu.so`, `Modules/_sre/sre.o`, `Modules/_ssl.o`, `Modules/_ssl_failed.cpython-313-x86_64-linux-gnu.so`, `Modules/_stat.o`, `Modules/_statistics.cpython-313-x86_64-linux-gnu.so`, `Modules/_statisticsmodule.o`, `Modules/_struct.cpython-313-x86_64-linux-gnu.so`, `Modules/_struct.o`, `Modules/_suggestions.o`, `Modules/_sysconfig.o`, `Modules/_testbuffer.cpython-313-x86_64-linux-gnu.so`, `Modules/_testbuffer.o`, `Modules/_testcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testcapi/abstract.o`, `Modules/_testcapi/buffer.o`, `Modules/_testcapi/bytes.o`, `Modules/_testcapi/code.o`, `Modules/_testcapi/codec.o`, `Modules/_testcapi/complex.o`, `Modules/_testcapi/datetime.o`, `Modules/_testcapi/dict.o`, `Modules/_testcapi/docstring.o`, `Modules/_testcapi/exceptions.o`, `Modules/_testcapi/file.o`, `Modules/_testcapi/float.o`, `Modules/_testcapi/gc.o`, `Modules/_testcapi/getargs.o`, `Modules/_testcapi/hash.o`, `Modules/_testcapi/heaptype.o`, `Modules/_testcapi/immortal.o`, `Modules/_testcapi/list.o`, `Modules/_testcapi/long.o`, `Modules/_testcapi/mem.o`, `Modules/_testcapi/monitoring.o`, `Modules/_testcapi/numbers.o`, `Modules/_testcapi/object.o`, `Modules/_testcapi/pyatomic.o`, `Modules/_testcapi/run.o`, `Modules/_testcapi/set.o`, `Modules/_testcapi/structmember.o`, `Modules/_testcapi/time.o`, `Modules/_testcapi/tuple.o`, `Modules/_testcapi/unicode.o`, `Modules/_testcapi/vectorcall.o`, `Modules/_testcapi/watchers.o`, `Modules/_testcapimodule.o`, `Modules/_testclinic.cpython-313-x86_64-linux-gnu.so`, `Modules/_testclinic.o`, `Modules/_testclinic_limited.cpython-313-x86_64-linux-gnu.so`, `Modules/_testclinic_limited.o`, `Modules/_testexternalinspection.cpython-313-x86_64-linux-gnu.so`, `Modules/_testexternalinspection.o`, `Modules/_testimportmultiple.cpython-313-x86_64-linux-gnu.so`, `Modules/_testimportmultiple.o`, `Modules/_testinternalcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testinternalcapi.o`, `Modules/_testinternalcapi/pytime.o`, `Modules/_testinternalcapi/set.o`, `Modules/_testinternalcapi/test_critical_sections.o`, `Modules/_testinternalcapi/test_lock.o`, `Modules/_testlimitedcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testlimitedcapi.o`, `Modules/_testlimitedcapi/abstract.o`, `Modules/_testlimitedcapi/bytearray.o`, `Modules/_testlimitedcapi/bytes.o`, `Modules/_testlimitedcapi/complex.o`, `Modules/_testlimitedcapi/dict.o`, `Modules/_testlimitedcapi/eval.o`, `Modules/_testlimitedcapi/file.o`, `Modules/_testlimitedcapi/float.o`, `Modules/_testlimitedcapi/heaptype_relative.o`, `Modules/_testlimitedcapi/import.o`, `Modules/_testlimitedcapi/list.o`, `Modules/_testlimitedcapi/long.o`, `Modules/_testlimitedcapi/object.o`, `Modules/_testlimitedcapi/pyos.o`, `Modules/_testlimitedcapi/set.o`, `Modules/_testlimitedcapi/sys.o`, `Modules/_testlimitedcapi/tuple.o`, `Modules/_testlimitedcapi/unicode.o`, `Modules/_testlimitedcapi/vectorcall_limited.o`, `Modules/_testmultiphase.cpython-313-x86_64-linux-gnu.so`, `Modules/_testmultiphase.o`, `Modules/_testsinglephase.cpython-313-x86_64-linux-gnu.so`, `Modules/_testsinglephase.o`, `Modules/_threadmodule.o`, `Modules/_tracemalloc.o`, `Modules/_typingmodule.o`, `Modules/_uuid.cpython-313-x86_64-linux-gnu.so`, `Modules/_uuidmodule.o`, `Modules/_weakref.o`, `Modules/_xxtestfuzz.cpython-313-x86_64-linux-gnu.so`, `Modules/_xxtestfuzz/_xxtestfuzz.o`, `Modules/_xxtestfuzz/fuzzer.o`, `Modules/_zoneinfo.cpython-313-x86_64-linux-gnu.so`, `Modules/_zoneinfo.o`, `Modules/array.cpython-313-x86_64-linux-gnu.so`, `Modules/arraymodule.o`, `Modules/atexitmodule.o`, `Modules/binascii.cpython-313-x86_64-linux-gnu.so`, `Modules/binascii.o`, `Modules/cjkcodecs/_codecs_cn.o`, `Modules/cjkcodecs/_codecs_hk.o`, `Modules/cjkcodecs/_codecs_iso2022.o`, `Modules/cjkcodecs/_codecs_jp.o`, `Modules/cjkcodecs/_codecs_kr.o`, `Modules/cjkcodecs/_codecs_tw.o`, `Modules/cjkcodecs/multibytecodec.o`, `Modules/cmath.cpython-313-x86_64-linux-gnu.so`, `Modules/cmathmodule.o`, `Modules/config.c`, `Modules/config.o`, `Modules/errnomodule.o`, `Modules/expat/libexpat.a`, `Modules/expat/xmlparse.o`, `Modules/expat/xmlrole.o`, `Modules/expat/xmltok.o`, `Modules/faulthandler.o`, `Modules/fcntl.cpython-313-x86_64-linux-gnu.so`, `Modules/fcntlmodule.o`, `Modules/gcmodule.o`, `Modules/getbuildinfo.o`, `Modules/getpath.o`, `Modules/getpath_noop.o`, `Modules/grp.cpython-313-x86_64-linux-gnu.so`, `Modules/grpmodule.o`, `Modules/itertoolsmodule.o`, `Modules/ld_so_aix`, `Modules/main.o`, `Modules/math.cpython-313-x86_64-linux-gnu.so`, `Modules/mathmodule.o`, `Modules/md5module.o`, `Modules/mmap.cpython-313-x86_64-linux-gnu.so`, `Modules/mmapmodule.o`, `Modules/posixmodule.o`, `Modules/pwdmodule.o`, `Modules/pyexpat.cpython-313-x86_64-linux-gnu.so`, `Modules/pyexpat.o`, `Modules/readline.cpython-313-x86_64-linux-gnu.so`, `Modules/readline.o`, `Modules/resource.cpython-313-x86_64-linux-gnu.so`, `Modules/resource.o`, `Modules/rotatingtree.o`, `Modules/select.cpython-313-x86_64-linux-gnu.so`, `Modules/selectmodule.o`, `Modules/sha1module.o`, `Modules/sha2module.o`, `Modules/sha3module.o`, `Modules/signalmodule.o`, `Modules/socketmodule.o`, `Modules/symtablemodule.o`, `Modules/syslog.cpython-313-x86_64-linux-gnu.so`, `Modules/syslogmodule.o`, `Modules/termios.cpython-313-x86_64-linux-gnu.so`, `Modules/termios.o`, `Modules/timemodule.o`, `Modules/unicodedata.cpython-313-x86_64-linux-gnu.so`, `Modules/unicodedata.o`, `Modules/xxlimited.cpython-313-x86_64-linux-gnu.so`, `Modules/xxlimited.o`, `Modules/xxlimited_35.cpython-313-x86_64-linux-gnu.so`, `Modules/xxlimited_35.o`, `Modules/xxsubtype.cpython-313-x86_64-linux-gnu.so`, `Modules/xxsubtype.o`, `Modules/zlib.cpython-313-x86_64-linux-gnu.so`, `Modules/zlibmodule.o`, `Objects/abstract.o`, `Objects/boolobject.o`, `Objects/bytearrayobject.o`, `Objects/bytes_methods.o`, `Objects/bytesobject.o`, `Objects/call.o`, `Objects/capsule.o`, `Objects/cellobject.o`, `Objects/classobject.o`, `Objects/codeobject.o`, `Objects/complexobject.o`, `Objects/descrobject.o`, `Objects/dictobject.o`, `Objects/enumobject.o`, `Objects/exceptions.o`, `Objects/fileobject.o`, `Objects/floatobject.o`, `Objects/frameobject.o`, `Objects/funcobject.o`, `Objects/genericaliasobject.o`, `Objects/genobject.o`, `Objects/iterobject.o`, `Objects/listobject.o`, `Objects/longobject.o`, `Objects/memoryobject.o`, `Objects/methodobject.o`, `Objects/moduleobject.o`, `Objects/namespaceobject.o`, `Objects/object.o`, `Objects/obmalloc.o`, `Objects/odictobject.o`, `Objects/picklebufobject.o`, `Objects/rangeobject.o`, `Objects/setobject.o`, `Objects/sliceobject.o`, `Objects/structseq.o`, `Objects/tupleobject.o`, `Objects/typeobject.o`, `Objects/typevarobject.o`, `Objects/unicodectype.o`, `Objects/unicodeobject.o`, `Objects/unionobject.o`, `Objects/weakrefobject.o`, `Parser/action_helpers.o`, `Parser/lexer/buffer.o`, `Parser/lexer/lexer.o`, `Parser/lexer/state.o`, `Parser/myreadline.o`, `Parser/parser.o`, `Parser/peg_api.o`, `Parser/pegen.o`, `Parser/pegen_errors.o`, `Parser/string_parser.o`, `Parser/token.o`, `Parser/tokenizer/file_tokenizer.o`, `Parser/tokenizer/helpers.o`, `Parser/tokenizer/readline_tokenizer.o`, `Parser/tokenizer/string_tokenizer.o`, `Parser/tokenizer/utf8_tokenizer.o`, `Programs/_bootstrap_python.o`, `Programs/_freeze_module`, `Programs/_freeze_module.o`, `Programs/_testembed`, `Programs/_testembed.o`, `Programs/python.o`, `Python/Python-ast.o`, `Python/Python-tokenize.o`, `Python/_warnings.o`, `Python/asdl.o`, `Python/asm_trampoline.o`, `Python/assemble.o`, `Python/ast.o`, `Python/ast_opt.o`, `Python/ast_unparse.o`, `Python/bltinmodule.o`, `Python/bootstrap_hash.o`, `Python/brc.o`, `Python/ceval.o`, `Python/ceval_gil.o`, `Python/codecs.o`, `Python/compile.o`, `Python/context.o`, `Python/critical_section.o`, `Python/crossinterp.o`, `Python/dtoa.o`, `Python/dynamic_annotations.o`, `Python/dynload_shlib.o`, `Python/errors.o`, `Python/fileutils.o`, `Python/flowgraph.o`, `Python/formatter_unicode.o`, `Python/frame.o`, `Python/frozen.o`, `Python/frozen_modules/__hello__.h`, `Python/frozen_modules/__phello__.h`, `Python/frozen_modules/__phello__.ham.eggs.h`, `Python/frozen_modules/__phello__.ham.h`, `Python/frozen_modules/__phello__.spam.h`, `Python/frozen_modules/_collections_abc.h`, `Python/frozen_modules/_sitebuiltins.h`, `Python/frozen_modules/abc.h`, `Python/frozen_modules/codecs.h`, `Python/frozen_modules/frozen_only.h`, `Python/frozen_modules/genericpath.h`, `Python/frozen_modules/getpath.h`, `Python/frozen_modules/importlib._bootstrap.h`, `Python/frozen_modules/importlib._bootstrap_external.h`, `Python/frozen_modules/importlib.machinery.h`, `Python/frozen_modules/importlib.util.h`, `Python/frozen_modules/io.h`, `Python/frozen_modules/ntpath.h`, `Python/frozen_modules/os.h`, `Python/frozen_modules/posixpath.h`, `Python/frozen_modules/runpy.h`, `Python/frozen_modules/site.h`, `Python/frozen_modules/stat.h`, `Python/frozen_modules/zipimport.h`, `Python/frozenmain.o`, `Python/future.o`, `Python/gc.o`, `Python/gc_free_threading.o`, `Python/gc_gil.o`, `Python/getargs.o`, `Python/getcompiler.o`, `Python/getcopyright.o`, `Python/getopt.o`, `Python/getplatform.o`, `Python/getversion.o`, `Python/hamt.o`, `Python/hashtable.o`, `Python/import.o`, `Python/importdl.o`, `Python/initconfig.o`, `Python/instruction_sequence.o`, `Python/instrumentation.o`, `Python/interpconfig.o`, `Python/intrinsics.o`, `Python/jit.o`, `Python/legacy_tracing.o`, `Python/lock.o`, `Python/marshal.o`, `Python/modsupport.o`, `Python/mysnprintf.o`, `Python/mystrtoul.o`, `Python/object_stack.o`, `Python/optimizer.o`, `Python/optimizer_analysis.o`, `Python/optimizer_symbols.o`, `Python/parking_lot.o`, `Python/pathconfig.o`, `Python/perf_jit_trampoline.o`, `Python/perf_trampoline.o`, `Python/preconfig.o`, `Python/pyarena.o`, `Python/pyctype.o`, `Python/pyfpe.o`, `Python/pyhash.o`, `Python/pylifecycle.o`, `Python/pymath.o`, `Python/pystate.o`, `Python/pystrcmp.o`, `Python/pystrhex.o`, `Python/pystrtod.o`, `Python/pythonrun.o`, `Python/pytime.o`, `Python/qsbr.o`, `Python/specialize.o`, `Python/structmember.o`, `Python/suggestions.o`, `Python/symtable.o`, `Python/sysmodule.o`, `Python/thread.o`, `Python/traceback.o`, `Python/tracemalloc.o`, `_bootstrap_python`, `build/lib.linux-x86_64-3.13/__pycache__/_sysconfigdata__linux_x86_64-linux-gnu.cpython-313.pyc`, `build/lib.linux-x86_64-3.13/_asyncio.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_bisect.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_blake2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_bz2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_cn.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_hk.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_iso2022.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_jp.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_kr.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_tw.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_contextvars.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_csv.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_ctypes.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_ctypes_test.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_curses.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_curses_panel.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_datetime.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_decimal.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_elementtree.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_hashlib.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_heapq.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpchannels.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpqueues.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpreters.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_json.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_lsprof.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_lzma.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_md5.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_multibytecodec.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_multiprocessing.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_opcode.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_pickle.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_posixshmem.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_posixsubprocess.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_queue.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_random.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha1.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha3.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_socket.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sqlite3.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_statistics.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_struct.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sysconfigdata__linux_x86_64-linux-gnu.py`, `build/lib.linux-x86_64-3.13/_testbuffer.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testclinic.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testclinic_limited.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testexternalinspection.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testimportmultiple.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testinternalcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testlimitedcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testmultiphase.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testsinglephase.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_uuid.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_xxtestfuzz.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_zoneinfo.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/array.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/binascii.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/cmath.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/fcntl.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/grp.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/math.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/mmap.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/pyexpat.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/readline.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/resource.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/select.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/syslog.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/termios.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/unicodedata.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxlimited.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxlimited_35.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxsubtype.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/zlib.cpython-313-x86_64-linux-gnu.so`, `build/scripts-3.13/idle3.13`, `build/scripts-3.13/pydoc3.13`, `config.log`, `config.status`, `libpython3.13.a`, `platform`, `pybuilddir.txt`, `pyconfig.h`, `python`, `python-config`, `python-config.py`, `python-gdb.py`, but `## Git Add Paths` lists `None`. Update `## Git Add Paths` to match the real shipped file set exactly, and make sure `## Issue Connection` explains every functional file that remains in the patch.
2. Missing from `## Git Add Paths`: `Lib/__pycache__/__future__.cpython-313.pyc`, `Lib/__pycache__/_collections_abc.cpython-313.pyc`, `Lib/__pycache__/_colorize.cpython-313.pyc`, `Lib/__pycache__/_compat_pickle.cpython-313.pyc`, `Lib/__pycache__/_compression.cpython-313.pyc`, `Lib/__pycache__/_opcode_metadata.cpython-313.pyc`, `Lib/__pycache__/_sitebuiltins.cpython-313.pyc`, `Lib/__pycache__/_weakrefset.cpython-313.pyc`, `Lib/__pycache__/abc.cpython-313.pyc`, `Lib/__pycache__/argparse.cpython-313.pyc`, `Lib/__pycache__/ast.cpython-313.pyc`, `Lib/__pycache__/bz2.cpython-313.pyc`, `Lib/__pycache__/codecs.cpython-313.pyc`, `Lib/__pycache__/contextlib.cpython-313.pyc`, `Lib/__pycache__/contextvars.cpython-313.pyc`, `Lib/__pycache__/copy.cpython-313.pyc`, `Lib/__pycache__/copyreg.cpython-313.pyc`, `Lib/__pycache__/datetime.cpython-313.pyc`, `Lib/__pycache__/dis.cpython-313.pyc`, `Lib/__pycache__/enum.cpython-313.pyc`, `Lib/__pycache__/fnmatch.cpython-313.pyc`, `Lib/__pycache__/functools.cpython-313.pyc`, `Lib/__pycache__/genericpath.cpython-313.pyc`, `Lib/__pycache__/gettext.cpython-313.pyc`, `Lib/__pycache__/glob.cpython-313.pyc`, `Lib/__pycache__/heapq.cpython-313.pyc`, `Lib/__pycache__/inspect.cpython-313.pyc`, `Lib/__pycache__/io.cpython-313.pyc`, `Lib/__pycache__/keyword.cpython-313.pyc`, `Lib/__pycache__/linecache.cpython-313.pyc`, `Lib/__pycache__/locale.cpython-313.pyc`, `Lib/__pycache__/lzma.cpython-313.pyc`, `Lib/__pycache__/numbers.cpython-313.pyc`, `Lib/__pycache__/opcode.cpython-313.pyc`, `Lib/__pycache__/operator.cpython-313.pyc`, `Lib/__pycache__/os.cpython-313.pyc`, `Lib/__pycache__/posixpath.cpython-313.pyc`, `Lib/__pycache__/reprlib.cpython-313.pyc`, `Lib/__pycache__/selectors.cpython-313.pyc`, `Lib/__pycache__/shutil.cpython-313.pyc`, `Lib/__pycache__/signal.cpython-313.pyc`, `Lib/__pycache__/site.cpython-313.pyc`, `Lib/__pycache__/socket.cpython-313.pyc`, `Lib/__pycache__/ssl.cpython-313.pyc`, `Lib/__pycache__/stat.cpython-313.pyc`, `Lib/__pycache__/string.cpython-313.pyc`, `Lib/__pycache__/struct.cpython-313.pyc`, `Lib/__pycache__/subprocess.cpython-313.pyc`, `Lib/__pycache__/textwrap.cpython-313.pyc`, `Lib/__pycache__/threading.cpython-313.pyc`, `Lib/__pycache__/token.cpython-313.pyc`, `Lib/__pycache__/tokenize.cpython-313.pyc`, `Lib/__pycache__/traceback.cpython-313.pyc`, `Lib/__pycache__/types.cpython-313.pyc`, `Lib/__pycache__/typing.cpython-313.pyc`, `Lib/__pycache__/warnings.cpython-313.pyc`, `Lib/__pycache__/weakref.cpython-313.pyc`, `Lib/asyncio/__pycache__/__init__.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_events.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_futures.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_subprocess.cpython-313.pyc`, `Lib/asyncio/__pycache__/base_tasks.cpython-313.pyc`, `Lib/asyncio/__pycache__/constants.cpython-313.pyc`, `Lib/asyncio/__pycache__/coroutines.cpython-313.pyc`, `Lib/asyncio/__pycache__/events.cpython-313.pyc`, `Lib/asyncio/__pycache__/exceptions.cpython-313.pyc`, `Lib/asyncio/__pycache__/format_helpers.cpython-313.pyc`, `Lib/asyncio/__pycache__/futures.cpython-313.pyc`, `Lib/asyncio/__pycache__/locks.cpython-313.pyc`, `Lib/asyncio/__pycache__/log.cpython-313.pyc`, `Lib/asyncio/__pycache__/mixins.cpython-313.pyc`, `Lib/asyncio/__pycache__/protocols.cpython-313.pyc`, `Lib/asyncio/__pycache__/queues.cpython-313.pyc`, `Lib/asyncio/__pycache__/runners.cpython-313.pyc`, `Lib/asyncio/__pycache__/selector_events.cpython-313.pyc`, `Lib/asyncio/__pycache__/sslproto.cpython-313.pyc`, `Lib/asyncio/__pycache__/staggered.cpython-313.pyc`, `Lib/asyncio/__pycache__/streams.cpython-313.pyc`, `Lib/asyncio/__pycache__/subprocess.cpython-313.pyc`, `Lib/asyncio/__pycache__/taskgroups.cpython-313.pyc`, `Lib/asyncio/__pycache__/tasks.cpython-313.pyc`, `Lib/asyncio/__pycache__/threads.cpython-313.pyc`, `Lib/asyncio/__pycache__/timeouts.cpython-313.pyc`, `Lib/asyncio/__pycache__/transports.cpython-313.pyc`, `Lib/asyncio/__pycache__/trsock.cpython-313.pyc`, `Lib/asyncio/__pycache__/unix_events.cpython-313.pyc`, `Lib/collections/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/futures/__pycache__/__init__.cpython-313.pyc`, `Lib/concurrent/futures/__pycache__/_base.cpython-313.pyc`, `Lib/encodings/__pycache__/__init__.cpython-313.pyc`, `Lib/encodings/__pycache__/aliases.cpython-313.pyc`, `Lib/encodings/__pycache__/ascii.cpython-313.pyc`, `Lib/encodings/__pycache__/utf_8.cpython-313.pyc`, `Lib/importlib/__pycache__/__init__.cpython-313.pyc`, `Lib/importlib/__pycache__/_abc.cpython-313.pyc`, `Lib/logging/__pycache__/__init__.cpython-313.pyc`, `Lib/pathlib/__pycache__/__init__.cpython-313.pyc`, `Lib/pathlib/__pycache__/_abc.cpython-313.pyc`, `Lib/pathlib/__pycache__/_local.cpython-313.pyc`, `Lib/re/__pycache__/__init__.cpython-313.pyc`, `Lib/re/__pycache__/_casefix.cpython-313.pyc`, `Lib/re/__pycache__/_compiler.cpython-313.pyc`, `Lib/re/__pycache__/_constants.cpython-313.pyc`, `Lib/re/__pycache__/_parser.cpython-313.pyc`, `Lib/sysconfig/__pycache__/__init__.cpython-313.pyc`, `Lib/sysconfig/__pycache__/__main__.cpython-313.pyc`, `Lib/xml/__pycache__/__init__.cpython-313.pyc`, `Lib/xml/etree/__pycache__/ElementPath.cpython-313.pyc`, `Lib/xml/etree/__pycache__/__init__.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/__init__.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/_common.cpython-313.pyc`, `Lib/zoneinfo/__pycache__/_tzpath.cpython-313.pyc`, `Makefile`, `Makefile.pre`, `Misc/python-config.sh`, `Misc/python-embed.pc`, `Misc/python.pc`, `Modules/Setup.bootstrap`, `Modules/Setup.local`, `Modules/Setup.stdlib`, `Modules/_abc.o`, `Modules/_asyncio.cpython-313-x86_64-linux-gnu.so`, `Modules/_asynciomodule.o`, `Modules/_bisect.cpython-313-x86_64-linux-gnu.so`, `Modules/_bisectmodule.o`, `Modules/_blake2.cpython-313-x86_64-linux-gnu.so`, `Modules/_blake2/blake2b_impl.o`, `Modules/_blake2/blake2module.o`, `Modules/_blake2/blake2s_impl.o`, `Modules/_bz2.cpython-313-x86_64-linux-gnu.so`, `Modules/_bz2module.o`, `Modules/_codecs_cn.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_hk.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_iso2022.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_jp.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_kr.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecs_tw.cpython-313-x86_64-linux-gnu.so`, `Modules/_codecsmodule.o`, `Modules/_collectionsmodule.o`, `Modules/_contextvars.cpython-313-x86_64-linux-gnu.so`, `Modules/_contextvarsmodule.o`, `Modules/_csv.cpython-313-x86_64-linux-gnu.so`, `Modules/_csv.o`, `Modules/_ctypes.cpython-313-x86_64-linux-gnu.so`, `Modules/_ctypes/_ctypes.o`, `Modules/_ctypes/_ctypes_test.o`, `Modules/_ctypes/callbacks.o`, `Modules/_ctypes/callproc.o`, `Modules/_ctypes/cfield.o`, `Modules/_ctypes/stgdict.o`, `Modules/_ctypes_test.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses_panel.cpython-313-x86_64-linux-gnu.so`, `Modules/_curses_panel.o`, `Modules/_cursesmodule.o`, `Modules/_datetime.cpython-313-x86_64-linux-gnu.so`, `Modules/_datetimemodule.o`, `Modules/_decimal.cpython-313-x86_64-linux-gnu.so`, `Modules/_decimal/_decimal.o`, `Modules/_decimal/libmpdec/basearith.o`, `Modules/_decimal/libmpdec/constants.o`, `Modules/_decimal/libmpdec/context.o`, `Modules/_decimal/libmpdec/convolute.o`, `Modules/_decimal/libmpdec/crt.o`, `Modules/_decimal/libmpdec/difradix2.o`, `Modules/_decimal/libmpdec/fnt.o`, `Modules/_decimal/libmpdec/fourstep.o`, `Modules/_decimal/libmpdec/io.o`, `Modules/_decimal/libmpdec/libmpdec.a`, `Modules/_decimal/libmpdec/mpalloc.o`, `Modules/_decimal/libmpdec/mpdecimal.o`, `Modules/_decimal/libmpdec/numbertheory.o`, `Modules/_decimal/libmpdec/sixstep.o`, `Modules/_decimal/libmpdec/transpose.o`, `Modules/_elementtree.cpython-313-x86_64-linux-gnu.so`, `Modules/_elementtree.o`, `Modules/_functoolsmodule.o`, `Modules/_hacl/Hacl_Hash_MD5.o`, `Modules/_hacl/Hacl_Hash_SHA1.o`, `Modules/_hacl/Hacl_Hash_SHA2.o`, `Modules/_hacl/Hacl_Hash_SHA3.o`, `Modules/_hacl/libHacl_Hash_SHA2.a`, `Modules/_hashlib.cpython-313-x86_64-linux-gnu.so`, `Modules/_hashopenssl.o`, `Modules/_heapq.cpython-313-x86_64-linux-gnu.so`, `Modules/_heapqmodule.o`, `Modules/_interpchannels.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpchannelsmodule.o`, `Modules/_interpqueues.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpqueuesmodule.o`, `Modules/_interpreters.cpython-313-x86_64-linux-gnu.so`, `Modules/_interpretersmodule.o`, `Modules/_io/_iomodule.o`, `Modules/_io/bufferedio.o`, `Modules/_io/bytesio.o`, `Modules/_io/fileio.o`, `Modules/_io/iobase.o`, `Modules/_io/stringio.o`, `Modules/_io/textio.o`, `Modules/_json.cpython-313-x86_64-linux-gnu.so`, `Modules/_json.o`, `Modules/_localemodule.o`, `Modules/_lsprof.cpython-313-x86_64-linux-gnu.so`, `Modules/_lsprof.o`, `Modules/_lzma.cpython-313-x86_64-linux-gnu.so`, `Modules/_lzmamodule.o`, `Modules/_md5.cpython-313-x86_64-linux-gnu.so`, `Modules/_multibytecodec.cpython-313-x86_64-linux-gnu.so`, `Modules/_multiprocessing.cpython-313-x86_64-linux-gnu.so`, `Modules/_multiprocessing/multiprocessing.o`, `Modules/_multiprocessing/posixshmem.o`, `Modules/_multiprocessing/semaphore.o`, `Modules/_opcode.cpython-313-x86_64-linux-gnu.so`, `Modules/_opcode.o`, `Modules/_operator.o`, `Modules/_pickle.cpython-313-x86_64-linux-gnu.so`, `Modules/_pickle.o`, `Modules/_posixshmem.cpython-313-x86_64-linux-gnu.so`, `Modules/_posixsubprocess.cpython-313-x86_64-linux-gnu.so`, `Modules/_posixsubprocess.o`, `Modules/_queue.cpython-313-x86_64-linux-gnu.so`, `Modules/_queuemodule.o`, `Modules/_random.cpython-313-x86_64-linux-gnu.so`, `Modules/_randommodule.o`, `Modules/_sha1.cpython-313-x86_64-linux-gnu.so`, `Modules/_sha2.cpython-313-x86_64-linux-gnu.so`, `Modules/_sha3.cpython-313-x86_64-linux-gnu.so`, `Modules/_socket.cpython-313-x86_64-linux-gnu.so`, `Modules/_sqlite/blob.o`, `Modules/_sqlite/connection.o`, `Modules/_sqlite/cursor.o`, `Modules/_sqlite/microprotocols.o`, `Modules/_sqlite/module.o`, `Modules/_sqlite/prepare_protocol.o`, `Modules/_sqlite/row.o`, `Modules/_sqlite/statement.o`, `Modules/_sqlite/util.o`, `Modules/_sqlite3.cpython-313-x86_64-linux-gnu.so`, `Modules/_sre/sre.o`, `Modules/_ssl.o`, `Modules/_ssl_failed.cpython-313-x86_64-linux-gnu.so`, `Modules/_stat.o`, `Modules/_statistics.cpython-313-x86_64-linux-gnu.so`, `Modules/_statisticsmodule.o`, `Modules/_struct.cpython-313-x86_64-linux-gnu.so`, `Modules/_struct.o`, `Modules/_suggestions.o`, `Modules/_sysconfig.o`, `Modules/_testbuffer.cpython-313-x86_64-linux-gnu.so`, `Modules/_testbuffer.o`, `Modules/_testcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testcapi/abstract.o`, `Modules/_testcapi/buffer.o`, `Modules/_testcapi/bytes.o`, `Modules/_testcapi/code.o`, `Modules/_testcapi/codec.o`, `Modules/_testcapi/complex.o`, `Modules/_testcapi/datetime.o`, `Modules/_testcapi/dict.o`, `Modules/_testcapi/docstring.o`, `Modules/_testcapi/exceptions.o`, `Modules/_testcapi/file.o`, `Modules/_testcapi/float.o`, `Modules/_testcapi/gc.o`, `Modules/_testcapi/getargs.o`, `Modules/_testcapi/hash.o`, `Modules/_testcapi/heaptype.o`, `Modules/_testcapi/immortal.o`, `Modules/_testcapi/list.o`, `Modules/_testcapi/long.o`, `Modules/_testcapi/mem.o`, `Modules/_testcapi/monitoring.o`, `Modules/_testcapi/numbers.o`, `Modules/_testcapi/object.o`, `Modules/_testcapi/pyatomic.o`, `Modules/_testcapi/run.o`, `Modules/_testcapi/set.o`, `Modules/_testcapi/structmember.o`, `Modules/_testcapi/time.o`, `Modules/_testcapi/tuple.o`, `Modules/_testcapi/unicode.o`, `Modules/_testcapi/vectorcall.o`, `Modules/_testcapi/watchers.o`, `Modules/_testcapimodule.o`, `Modules/_testclinic.cpython-313-x86_64-linux-gnu.so`, `Modules/_testclinic.o`, `Modules/_testclinic_limited.cpython-313-x86_64-linux-gnu.so`, `Modules/_testclinic_limited.o`, `Modules/_testexternalinspection.cpython-313-x86_64-linux-gnu.so`, `Modules/_testexternalinspection.o`, `Modules/_testimportmultiple.cpython-313-x86_64-linux-gnu.so`, `Modules/_testimportmultiple.o`, `Modules/_testinternalcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testinternalcapi.o`, `Modules/_testinternalcapi/pytime.o`, `Modules/_testinternalcapi/set.o`, `Modules/_testinternalcapi/test_critical_sections.o`, `Modules/_testinternalcapi/test_lock.o`, `Modules/_testlimitedcapi.cpython-313-x86_64-linux-gnu.so`, `Modules/_testlimitedcapi.o`, `Modules/_testlimitedcapi/abstract.o`, `Modules/_testlimitedcapi/bytearray.o`, `Modules/_testlimitedcapi/bytes.o`, `Modules/_testlimitedcapi/complex.o`, `Modules/_testlimitedcapi/dict.o`, `Modules/_testlimitedcapi/eval.o`, `Modules/_testlimitedcapi/file.o`, `Modules/_testlimitedcapi/float.o`, `Modules/_testlimitedcapi/heaptype_relative.o`, `Modules/_testlimitedcapi/import.o`, `Modules/_testlimitedcapi/list.o`, `Modules/_testlimitedcapi/long.o`, `Modules/_testlimitedcapi/object.o`, `Modules/_testlimitedcapi/pyos.o`, `Modules/_testlimitedcapi/set.o`, `Modules/_testlimitedcapi/sys.o`, `Modules/_testlimitedcapi/tuple.o`, `Modules/_testlimitedcapi/unicode.o`, `Modules/_testlimitedcapi/vectorcall_limited.o`, `Modules/_testmultiphase.cpython-313-x86_64-linux-gnu.so`, `Modules/_testmultiphase.o`, `Modules/_testsinglephase.cpython-313-x86_64-linux-gnu.so`, `Modules/_testsinglephase.o`, `Modules/_threadmodule.o`, `Modules/_tracemalloc.o`, `Modules/_typingmodule.o`, `Modules/_uuid.cpython-313-x86_64-linux-gnu.so`, `Modules/_uuidmodule.o`, `Modules/_weakref.o`, `Modules/_xxtestfuzz.cpython-313-x86_64-linux-gnu.so`, `Modules/_xxtestfuzz/_xxtestfuzz.o`, `Modules/_xxtestfuzz/fuzzer.o`, `Modules/_zoneinfo.cpython-313-x86_64-linux-gnu.so`, `Modules/_zoneinfo.o`, `Modules/array.cpython-313-x86_64-linux-gnu.so`, `Modules/arraymodule.o`, `Modules/atexitmodule.o`, `Modules/binascii.cpython-313-x86_64-linux-gnu.so`, `Modules/binascii.o`, `Modules/cjkcodecs/_codecs_cn.o`, `Modules/cjkcodecs/_codecs_hk.o`, `Modules/cjkcodecs/_codecs_iso2022.o`, `Modules/cjkcodecs/_codecs_jp.o`, `Modules/cjkcodecs/_codecs_kr.o`, `Modules/cjkcodecs/_codecs_tw.o`, `Modules/cjkcodecs/multibytecodec.o`, `Modules/cmath.cpython-313-x86_64-linux-gnu.so`, `Modules/cmathmodule.o`, `Modules/config.c`, `Modules/config.o`, `Modules/errnomodule.o`, `Modules/expat/libexpat.a`, `Modules/expat/xmlparse.o`, `Modules/expat/xmlrole.o`, `Modules/expat/xmltok.o`, `Modules/faulthandler.o`, `Modules/fcntl.cpython-313-x86_64-linux-gnu.so`, `Modules/fcntlmodule.o`, `Modules/gcmodule.o`, `Modules/getbuildinfo.o`, `Modules/getpath.o`, `Modules/getpath_noop.o`, `Modules/grp.cpython-313-x86_64-linux-gnu.so`, `Modules/grpmodule.o`, `Modules/itertoolsmodule.o`, `Modules/ld_so_aix`, `Modules/main.o`, `Modules/math.cpython-313-x86_64-linux-gnu.so`, `Modules/mathmodule.o`, `Modules/md5module.o`, `Modules/mmap.cpython-313-x86_64-linux-gnu.so`, `Modules/mmapmodule.o`, `Modules/posixmodule.o`, `Modules/pwdmodule.o`, `Modules/pyexpat.cpython-313-x86_64-linux-gnu.so`, `Modules/pyexpat.o`, `Modules/readline.cpython-313-x86_64-linux-gnu.so`, `Modules/readline.o`, `Modules/resource.cpython-313-x86_64-linux-gnu.so`, `Modules/resource.o`, `Modules/rotatingtree.o`, `Modules/select.cpython-313-x86_64-linux-gnu.so`, `Modules/selectmodule.o`, `Modules/sha1module.o`, `Modules/sha2module.o`, `Modules/sha3module.o`, `Modules/signalmodule.o`, `Modules/socketmodule.o`, `Modules/symtablemodule.o`, `Modules/syslog.cpython-313-x86_64-linux-gnu.so`, `Modules/syslogmodule.o`, `Modules/termios.cpython-313-x86_64-linux-gnu.so`, `Modules/termios.o`, `Modules/timemodule.o`, `Modules/unicodedata.cpython-313-x86_64-linux-gnu.so`, `Modules/unicodedata.o`, `Modules/xxlimited.cpython-313-x86_64-linux-gnu.so`, `Modules/xxlimited.o`, `Modules/xxlimited_35.cpython-313-x86_64-linux-gnu.so`, `Modules/xxlimited_35.o`, `Modules/xxsubtype.cpython-313-x86_64-linux-gnu.so`, `Modules/xxsubtype.o`, `Modules/zlib.cpython-313-x86_64-linux-gnu.so`, `Modules/zlibmodule.o`, `Objects/abstract.o`, `Objects/boolobject.o`, `Objects/bytearrayobject.o`, `Objects/bytes_methods.o`, `Objects/bytesobject.o`, `Objects/call.o`, `Objects/capsule.o`, `Objects/cellobject.o`, `Objects/classobject.o`, `Objects/codeobject.o`, `Objects/complexobject.o`, `Objects/descrobject.o`, `Objects/dictobject.o`, `Objects/enumobject.o`, `Objects/exceptions.o`, `Objects/fileobject.o`, `Objects/floatobject.o`, `Objects/frameobject.o`, `Objects/funcobject.o`, `Objects/genericaliasobject.o`, `Objects/genobject.o`, `Objects/iterobject.o`, `Objects/listobject.o`, `Objects/longobject.o`, `Objects/memoryobject.o`, `Objects/methodobject.o`, `Objects/moduleobject.o`, `Objects/namespaceobject.o`, `Objects/object.o`, `Objects/obmalloc.o`, `Objects/odictobject.o`, `Objects/picklebufobject.o`, `Objects/rangeobject.o`, `Objects/setobject.o`, `Objects/sliceobject.o`, `Objects/structseq.o`, `Objects/tupleobject.o`, `Objects/typeobject.o`, `Objects/typevarobject.o`, `Objects/unicodectype.o`, `Objects/unicodeobject.o`, `Objects/unionobject.o`, `Objects/weakrefobject.o`, `Parser/action_helpers.o`, `Parser/lexer/buffer.o`, `Parser/lexer/lexer.o`, `Parser/lexer/state.o`, `Parser/myreadline.o`, `Parser/parser.o`, `Parser/peg_api.o`, `Parser/pegen.o`, `Parser/pegen_errors.o`, `Parser/string_parser.o`, `Parser/token.o`, `Parser/tokenizer/file_tokenizer.o`, `Parser/tokenizer/helpers.o`, `Parser/tokenizer/readline_tokenizer.o`, `Parser/tokenizer/string_tokenizer.o`, `Parser/tokenizer/utf8_tokenizer.o`, `Programs/_bootstrap_python.o`, `Programs/_freeze_module`, `Programs/_freeze_module.o`, `Programs/_testembed`, `Programs/_testembed.o`, `Programs/python.o`, `Python/Python-ast.o`, `Python/Python-tokenize.o`, `Python/_warnings.o`, `Python/asdl.o`, `Python/asm_trampoline.o`, `Python/assemble.o`, `Python/ast.o`, `Python/ast_opt.o`, `Python/ast_unparse.o`, `Python/bltinmodule.o`, `Python/bootstrap_hash.o`, `Python/brc.o`, `Python/ceval.o`, `Python/ceval_gil.o`, `Python/codecs.o`, `Python/compile.o`, `Python/context.o`, `Python/critical_section.o`, `Python/crossinterp.o`, `Python/dtoa.o`, `Python/dynamic_annotations.o`, `Python/dynload_shlib.o`, `Python/errors.o`, `Python/fileutils.o`, `Python/flowgraph.o`, `Python/formatter_unicode.o`, `Python/frame.o`, `Python/frozen.o`, `Python/frozen_modules/__hello__.h`, `Python/frozen_modules/__phello__.h`, `Python/frozen_modules/__phello__.ham.eggs.h`, `Python/frozen_modules/__phello__.ham.h`, `Python/frozen_modules/__phello__.spam.h`, `Python/frozen_modules/_collections_abc.h`, `Python/frozen_modules/_sitebuiltins.h`, `Python/frozen_modules/abc.h`, `Python/frozen_modules/codecs.h`, `Python/frozen_modules/frozen_only.h`, `Python/frozen_modules/genericpath.h`, `Python/frozen_modules/getpath.h`, `Python/frozen_modules/importlib._bootstrap.h`, `Python/frozen_modules/importlib._bootstrap_external.h`, `Python/frozen_modules/importlib.machinery.h`, `Python/frozen_modules/importlib.util.h`, `Python/frozen_modules/io.h`, `Python/frozen_modules/ntpath.h`, `Python/frozen_modules/os.h`, `Python/frozen_modules/posixpath.h`, `Python/frozen_modules/runpy.h`, `Python/frozen_modules/site.h`, `Python/frozen_modules/stat.h`, `Python/frozen_modules/zipimport.h`, `Python/frozenmain.o`, `Python/future.o`, `Python/gc.o`, `Python/gc_free_threading.o`, `Python/gc_gil.o`, `Python/getargs.o`, `Python/getcompiler.o`, `Python/getcopyright.o`, `Python/getopt.o`, `Python/getplatform.o`, `Python/getversion.o`, `Python/hamt.o`, `Python/hashtable.o`, `Python/import.o`, `Python/importdl.o`, `Python/initconfig.o`, `Python/instruction_sequence.o`, `Python/instrumentation.o`, `Python/interpconfig.o`, `Python/intrinsics.o`, `Python/jit.o`, `Python/legacy_tracing.o`, `Python/lock.o`, `Python/marshal.o`, `Python/modsupport.o`, `Python/mysnprintf.o`, `Python/mystrtoul.o`, `Python/object_stack.o`, `Python/optimizer.o`, `Python/optimizer_analysis.o`, `Python/optimizer_symbols.o`, `Python/parking_lot.o`, `Python/pathconfig.o`, `Python/perf_jit_trampoline.o`, `Python/perf_trampoline.o`, `Python/preconfig.o`, `Python/pyarena.o`, `Python/pyctype.o`, `Python/pyfpe.o`, `Python/pyhash.o`, `Python/pylifecycle.o`, `Python/pymath.o`, `Python/pystate.o`, `Python/pystrcmp.o`, `Python/pystrhex.o`, `Python/pystrtod.o`, `Python/pythonrun.o`, `Python/pytime.o`, `Python/qsbr.o`, `Python/specialize.o`, `Python/structmember.o`, `Python/suggestions.o`, `Python/symtable.o`, `Python/sysmodule.o`, `Python/thread.o`, `Python/traceback.o`, `Python/tracemalloc.o`, `_bootstrap_python`, `build/lib.linux-x86_64-3.13/__pycache__/_sysconfigdata__linux_x86_64-linux-gnu.cpython-313.pyc`, `build/lib.linux-x86_64-3.13/_asyncio.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_bisect.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_blake2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_bz2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_cn.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_hk.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_iso2022.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_jp.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_kr.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_codecs_tw.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_contextvars.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_csv.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_ctypes.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_ctypes_test.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_curses.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_curses_panel.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_datetime.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_decimal.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_elementtree.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_hashlib.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_heapq.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpchannels.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpqueues.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_interpreters.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_json.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_lsprof.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_lzma.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_md5.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_multibytecodec.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_multiprocessing.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_opcode.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_pickle.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_posixshmem.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_posixsubprocess.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_queue.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_random.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha1.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha2.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sha3.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_socket.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sqlite3.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_statistics.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_struct.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_sysconfigdata__linux_x86_64-linux-gnu.py`, `build/lib.linux-x86_64-3.13/_testbuffer.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testclinic.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testclinic_limited.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testexternalinspection.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testimportmultiple.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testinternalcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testlimitedcapi.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testmultiphase.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_testsinglephase.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_uuid.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_xxtestfuzz.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/_zoneinfo.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/array.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/binascii.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/cmath.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/fcntl.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/grp.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/math.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/mmap.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/pyexpat.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/readline.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/resource.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/select.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/syslog.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/termios.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/unicodedata.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxlimited.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxlimited_35.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/xxsubtype.cpython-313-x86_64-linux-gnu.so`, `build/lib.linux-x86_64-3.13/zlib.cpython-313-x86_64-linux-gnu.so`, `build/scripts-3.13/idle3.13`, `build/scripts-3.13/pydoc3.13`, `config.log`, `config.status`, `libpython3.13.a`, `platform`, `pybuilddir.txt`, `pyconfig.h`, `python`, `python-config`, `python-config.py`, `python-gdb.py`.
2. Listed in `## Git Add Paths` but not actually changed: `None`.

## Refinement Pass 1

Subject: No patch: clean generated build artifacts

## Commit Message
No source change is proposed. The review found that the no-patch response drifted from the workspace because the validation build left generated files and bytecode behind. This refinement removes those generated artifacts so the workspace matches the intended no-patch diagnosis.

## Evidence Confidence
inferred

## Issue Connection
The collected signal is a Fixer runaway-process report for `/usr/bin/python3 /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf`: perf attributed CPU to an unresolved Python offset, `/proc` showed the sampled process named `supervisord` in sleeping state, the kernel stack was in `poll_schedule_timeout`, and strace alternated `wait4(-1, ..., WNOHANG) = -1 ECHILD` with `poll(..., 1000) = 0`.

The cautious inference remains that this is supervisor’s application-level event loop, not a proved CPython busy loop. The previous bounded local check of the same `waitpid(WNOHANG)` plus one-second `poll()` pattern did not reproduce CPU burn.

I made no source change. The review finding was addressed by removing generated build artifacts and bytecode with CPython’s cleanup target so `## Git Add Paths` and the worktree both represent a no-patch diagnosis. CPython conventions were re-checked: `README.rst` points to the CPython Developer Guide and root `./configure`, `make`, `make test`; Debian `README.source` notes quilt packaging; CPython memory/thread helpers include `PyMem_RawMalloc`/`PyMem_RawFree` for no-GIL raw allocation. No relevant local helper supports a CPython source patch for this evidence.

The expected effect is that no upstream code behavior is changed based on indirect profiler/strace evidence, and the proposal is now gittable as an intentional no-patch report.

## Git Add Paths
None

## Validation
Addressed the review drift with:

`make distclean`

Result: removed generated build outputs, bytecode, and configure artifacts.

Checked the final workspace state:

`git status --short`

Result: no output; the worktree is clean.

Project-level validation from the previous authoring pass was:

`./configure && make`

Result: completed with exit code 0. Build output reported optional module issues: `_ssl` built but failed to import due to `undefined symbol: TLSv1_method`, and `_dbm`, `_gdbm`, `_tkinter` were missing. `make` still completed.

Bounded independent reproduction from the previous pass was run with the built interpreter:

`/usr/bin/time -f 'time user=%U sys=%S elapsed=%e cpu=%P' ./python - <<'PY' ... waitpid(-1, WNOHANG) + poll(1000) for 5 seconds ... PY`

Result: `loops=5 user=0.005610 sys=0.000000 elapsed=5.005`, `cpu=0%`. This did not reproduce the reported runaway CPU signal, so confidence remains `inferred` and no source patch is left.

## Review Pass 2

RESULT: ok

No source patch is present after refinement: `git status --short` and `git diff` are clean. The refined response correctly lists `None` under `## Git Add Paths`, uses a valid `## Evidence Confidence` value (`inferred`), and does not overstate the profiler/strace evidence as a reproduced CPython bug.

The review finding from the prior round was addressed: generated build artifacts and bytecode were removed with `make distclean`, and the final workspace is now synchronized with the no-patch diagnosis. The maintainer-facing explanation stays appropriately cautious, ties the evidence to the `supervisord` application-level `wait4(WNOHANG)`/`poll(1000)` loop, and avoids inventing a CPython reproducer or leaving a speculative timing/throttling source change.