Skip to content

gh-141004: Document PyCode_Optimize - #141378

Merged
ZeroIntensity merged 1 commit into
python:mainfrom
ZeroIntensity:document-pycode-optimize
Nov 13, 2025
Merged

gh-141004: Document PyCode_Optimize#141378
ZeroIntensity merged 1 commit into
python:mainfrom
ZeroIntensity:document-pycode-optimize

Conversation

@ZeroIntensity

@ZeroIntensityZeroIntensity commented Nov 10, 2025

Copy link
Copy Markdown
Member

I don't think it's worth documenting the <3.10 behavior because all those versions are EOL.


📚 Documentation preview 📚: https://cpython-previews--141378.org.readthedocs.build/en/141378/c-api/code.html#c.PyCode_Optimize

@StanFromIrelandStanFromIreland left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

I don't think it's worth documenting the <3.10 behavior because all those versions are EOL.

I agree, LGTM.

@ZeroIntensity

Copy link
Copy Markdown
MemberAuthor

I'm going to hold off on this one for a few days in case someone is strongly opposed to documenting it.

@ZeroIntensity
ZeroIntensity merged commit d7862e9 into python:mainNov 13, 2025
39 checks passed
@ZeroIntensity
ZeroIntensity deleted the document-pycode-optimize branch November 13, 2025 15:07
@github-project-automationgithub-project-automationBot moved this from Todo to Done in Docs PRsNov 13, 2025
@miss-islington-app

Copy link
Copy Markdown

Thanks @ZeroIntensity for the PR 🌮🎉.. I'm working now to backport this PR to: 3.13, 3.14.
🐍🍒⛏🤖

miss-islington pushed a commit to miss-islington/cpython that referenced this pull request Nov 13, 2025
(cherry picked from commit d7862e9)
Co-authored-by: Peter Bierma <zintensitydev@gmail.com>
@bedevere-app

Copy link
Copy Markdown

GH-141514 is a backport of this pull request to the 3.14 branch.

miss-islington pushed a commit to miss-islington/cpython that referenced this pull request Nov 13, 2025
(cherry picked from commit d7862e9)
Co-authored-by: Peter Bierma <zintensitydev@gmail.com>
@bedevere-appbedevere-appBot removed the needs backport to 3.14 bugs and security fixes label Nov 13, 2025
@bedevere-app

Copy link
Copy Markdown

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

@bedevere-appbedevere-appBot removed the needs backport to 3.13 bugs and security fixes label Nov 13, 2025
ZeroIntensity added a commit that referenced this pull request Nov 13, 2025
gh-141004: Document `PyCode_Optimize` (GH-141378)
(cherry picked from commit d7862e9)
Co-authored-by: Peter Bierma <zintensitydev@gmail.com>
ZeroIntensity added a commit that referenced this pull request Nov 13, 2025
gh-141004: Document `PyCode_Optimize` (GH-141378)
(cherry picked from commit d7862e9)
Co-authored-by: Peter Bierma <zintensitydev@gmail.com>
CuriousLearner added a commit to CuriousLearner/cpython that referenced this pull request Nov 13, 2025
* main: (463 commits)
pythongh-140601: Add ResourceWarning to iterparse when not closed (pythonGH-140603)
pythongh-137969: Fix double evaluation of `ForwardRef`s which rely on globals (python#140974)
pythongh-139109: A new tracing JIT compiler frontend for CPython (pythonGH-140310)
pythongh-141004: Document `PyErr_RangedSyntaxLocationObject` (python#141521)
pythongh-140873: Add support of non-descriptor callables in functools.singledispatchmethod() (pythonGH-140884)
pythongh-139653: Add PyUnstable_ThreadState_SetStackProtection() (python#139668)
pythongh-141004: Document `PyCode_Optimize` (pythonGH-141378)
pythongh-141004: Document C APIs for dictionary keys, values, and items (pythonGH-141009)
pythongh-137959: Fix `TIER1_TO_TIER2` macro name in JIT InternalDocs (pythonGH-141496)
pythongh-139871: Add `bytearray.take_bytes([n])` to efficiently extract `bytes` (pythonGH-140128)
pythongh-140601: Refactor ElementTree.iterparse() tests (pythonGH-141499)
pythongh-135801: Add the module parameter to compile() etc (pythonGH-139652)
pythongh-140260: fix data race in `_struct` module initialization with subinterpreters (python#140909)
pythongh-137109: refactor warning about threads when forking (python#141438)
pythongh-141004: Document `PyRun_InteractiveOneObject` (pythonGH-141405)
pythongh-124111: Fix TCL 9 thread detection (pythonGH-128103)
pythongh-141442: Add escaping to iOS testbed arguments (python#141443)
pythongh-140936: Fix JIT assertion crash at finalization if some generator is alive (pythonGH-140969)
Add details about JIT build infrastructure and updating dependencies to `Tools/jit` (python#141167)
pythongh-141412: Use reliable target URL for urllib example (pythonGH-141428)
...
CuriousLearner added a commit to CuriousLearner/cpython that referenced this pull request Nov 14, 2025
* 'main' of github.com:python/cpython: (464 commits)
pythongh-140601: Add ResourceWarning to iterparse when not closed (pythonGH-140603)
pythongh-137969: Fix double evaluation of `ForwardRef`s which rely on globals (python#140974)
pythongh-139109: A new tracing JIT compiler frontend for CPython (pythonGH-140310)
pythongh-141004: Document `PyErr_RangedSyntaxLocationObject` (python#141521)
pythongh-140873: Add support of non-descriptor callables in functools.singledispatchmethod() (pythonGH-140884)
pythongh-139653: Add PyUnstable_ThreadState_SetStackProtection() (python#139668)
pythongh-141004: Document `PyCode_Optimize` (pythonGH-141378)
pythongh-141004: Document C APIs for dictionary keys, values, and items (pythonGH-141009)
pythongh-137959: Fix `TIER1_TO_TIER2` macro name in JIT InternalDocs (pythonGH-141496)
pythongh-139871: Add `bytearray.take_bytes([n])` to efficiently extract `bytes` (pythonGH-140128)
pythongh-140601: Refactor ElementTree.iterparse() tests (pythonGH-141499)
pythongh-135801: Add the module parameter to compile() etc (pythonGH-139652)
pythongh-140260: fix data race in `_struct` module initialization with subinterpreters (python#140909)
pythongh-137109: refactor warning about threads when forking (python#141438)
pythongh-141004: Document `PyRun_InteractiveOneObject` (pythonGH-141405)
pythongh-124111: Fix TCL 9 thread detection (pythonGH-128103)
pythongh-141442: Add escaping to iOS testbed arguments (python#141443)
pythongh-140936: Fix JIT assertion crash at finalization if some generator is alive (pythonGH-140969)
Add details about JIT build infrastructure and updating dependencies to `Tools/jit` (python#141167)
pythongh-141412: Use reliable target URL for urllib example (pythonGH-141428)
...
CuriousLearner added a commit to CuriousLearner/cpython that referenced this pull request Nov 14, 2025
* 'main' of github.com:python/cpython: (464 commits)
pythongh-140601: Add ResourceWarning to iterparse when not closed (pythonGH-140603)
pythongh-137969: Fix double evaluation of `ForwardRef`s which rely on globals (python#140974)
pythongh-139109: A new tracing JIT compiler frontend for CPython (pythonGH-140310)
pythongh-141004: Document `PyErr_RangedSyntaxLocationObject` (python#141521)
pythongh-140873: Add support of non-descriptor callables in functools.singledispatchmethod() (pythonGH-140884)
pythongh-139653: Add PyUnstable_ThreadState_SetStackProtection() (python#139668)
pythongh-141004: Document `PyCode_Optimize` (pythonGH-141378)
pythongh-141004: Document C APIs for dictionary keys, values, and items (pythonGH-141009)
pythongh-137959: Fix `TIER1_TO_TIER2` macro name in JIT InternalDocs (pythonGH-141496)
pythongh-139871: Add `bytearray.take_bytes([n])` to efficiently extract `bytes` (pythonGH-140128)
pythongh-140601: Refactor ElementTree.iterparse() tests (pythonGH-141499)
pythongh-135801: Add the module parameter to compile() etc (pythonGH-139652)
pythongh-140260: fix data race in `_struct` module initialization with subinterpreters (python#140909)
pythongh-137109: refactor warning about threads when forking (python#141438)
pythongh-141004: Document `PyRun_InteractiveOneObject` (pythonGH-141405)
pythongh-124111: Fix TCL 9 thread detection (pythonGH-128103)
pythongh-141442: Add escaping to iOS testbed arguments (python#141443)
pythongh-140936: Fix JIT assertion crash at finalization if some generator is alive (pythonGH-140969)
Add details about JIT build infrastructure and updating dependencies to `Tools/jit` (python#141167)
pythongh-141412: Use reliable target URL for urllib example (pythonGH-141428)
...
StanFromIreland pushed a commit to StanFromIreland/cpython that referenced this pull request Dec 6, 2025
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

docsDocumentation in the Doc dirskip news

Projects

Status: Done

Development

Successfully merging this pull request may close these issues.

2 participants

@ZeroIntensity@StanFromIreland