Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
Accelerator
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search
/
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
Uh oh!
There was an error while loading.
Please reload this page
.
faster-cpython
/
cpython
Public
forked from
python/cpython
Notifications
You must be signed in to change notification settings
Fork
27
Star
529
Code
Pull requests
1
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Commits
Breadcrumbs
History for
cpython
Python
frame.c
on
stackref-not-null
User selector
All users
All time
Commit history
Commits on Sep 24, 2024
gh-123923: Defer refcounting for `f_funcobj` in `_PyInterpreterFrame` (#124026)
Show description for f4997bb
colesbury
authored
f4997bb
View commit details
Copy full SHA for f4997bb
View code at this point
Browse repository at this point
Commits on Sep 12, 2024
gh-123923: Defer refcounting for `f_executable` in `_PyInterpreterFrame` (#123924)
Show description for b2afe2a
colesbury
authored
b2afe2a
View commit details
Copy full SHA for b2afe2a
View code at this point
Browse repository at this point
Commits on Aug 15, 2024
gh-117139: Garbage collector support for deferred refcounting (#122956)
Show description for e001027
colesbury
and
Fidget-Spinner
authored
e001027
View commit details
Copy full SHA for e001027
View code at this point
Browse repository at this point
Commits on Jul 18, 2024
GH-120024: Use pointer for stack pointer (GH-121923)
markshannon
authored
169324c
View commit details
Copy full SHA for 169324c
View code at this point
Browse repository at this point
Commits on Jun 26, 2024
gh-117139: Convert the evaluation stack to stack refs (#118450)
Show description for 22b0de2
Fidget-Spinner
and
markshannon
authored
22b0de2
View commit details
Copy full SHA for 22b0de2
View code at this point
Browse repository at this point
Commits on Jun 24, 2024
gh-120834: fix type of *_iframe field in _PyGenObject_HEAD declaration (#120835)
iritkatriel
authored
65a12c5
View commit details
Copy full SHA for 65a12c5
View code at this point
Browse repository at this point
Commits on May 1, 2024
gh-118272: set stacktop to 0 before freeing contents, to avoid access to invalid objects during GC (#118478)
iritkatriel
authored
6763bfc
View commit details
Copy full SHA for 6763bfc
View code at this point
Browse repository at this point
Commits on Apr 30, 2024
gh-118272: Clear generator frame's locals when the generator is closed (#118277)
Show description for 1f16b4c
iritkatriel
and
graingert
authored
1f16b4c
View commit details
Copy full SHA for 1f16b4c
View code at this point
Browse repository at this point
Commits on Apr 25, 2024
GH-118095: Handle `RETURN_GENERATOR` in tier 2 (GH-118180)
markshannon
authored
f180b31
View commit details
Copy full SHA for f180b31
View code at this point
Browse repository at this point
Commits on Mar 12, 2024
GH-116098: Remove dead frame object creation code (GH-116687)
gaogaotiantian
authored
a53cc3f
View commit details
Copy full SHA for a53cc3f
View code at this point
Browse repository at this point
Commits on Feb 1, 2024
Remove unused Py_XDECREF from _PyFrame_ClearExceptCode (GH-106158)
Show description for 84e0e32
andersk
authored
84e0e32
View commit details
Copy full SHA for 84e0e32
View code at this point
Browse repository at this point
Commits on Oct 26, 2023
gh-109094: replace frame->prev_instr by frame->instr_ptr (#109095)
iritkatriel
authored
67a91f7
View commit details
Copy full SHA for 67a91f7
View code at this point
Browse repository at this point
Commits on Aug 31, 2023
gh-107149: Make PyUnstable_ExecutableKinds public (#108440)
Show description for 9c03215
vstinner
authored
9c03215
View commit details
Copy full SHA for 9c03215
View code at this point
Browse repository at this point
Commits on Aug 17, 2023
GH-108035: Remove the `_PyCFrame` struct as it is no longer needed for performance. (GH-108036)
markshannon
authored
006e44f
View commit details
Copy full SHA for 006e44f
View code at this point
Browse repository at this point
Commits on Jun 14, 2023
GH-100987: Allow objects other than code objects as the "executable" of an internal frame. (GH-105727)
Show description for 7199584
markshannon
authored
7199584
View commit details
Copy full SHA for 7199584
View code at this point
Browse repository at this point
Commits on May 18, 2023
GH-96803: Document and test new unstable internal frame API functions (GH-104211)
Show description for cfa517d
markshannon
authored
cfa517d
View commit details
Copy full SHA for cfa517d
View code at this point
Browse repository at this point
Commits on May 5, 2023
GH-96803: Add three C-API functions to make _PyInterpreterFrame less opaque for users of PEP 523. (GH-96849)
markshannon
authored
a0df9ee
View commit details
Copy full SHA for a0df9ee
View code at this point
Browse repository at this point
Commits on Feb 28, 2023
gh-102192: Replace PyErr_Fetch/Restore etc by more efficient alternatives (in Python/) (#102193)
iritkatriel
authored
4c87537
View commit details
Copy full SHA for 4c87537
View code at this point
Browse repository at this point
Commits on Feb 23, 2023
GH-100719: Remove redundant `gi_code` field from generator object. (GH-100749)
markshannon
authored
22b8d77
View commit details
Copy full SHA for 22b8d77
View code at this point
Browse repository at this point
Commits on Jan 9, 2023
GH-100126: Skip incomplete frames in more places (GH-100613)
brandtbucher
authored
61762b9
View commit details
Copy full SHA for 61762b9
View code at this point
Browse repository at this point
Commits on Dec 6, 2022
GH-99729: Unlink frames before clearing them (GH-100030)
brandtbucher
authored
b72014c
View commit details
Copy full SHA for b72014c
View code at this point
Browse repository at this point
Commits on Nov 10, 2022
GH-96421: Insert shim frame on entry to interpreter (GH-96319)
Show description for 1e197e6
markshannon
authored
1e197e6
View commit details
Copy full SHA for 1e197e6
View code at this point
Browse repository at this point
Commits on Oct 6, 2022
GH-97002: Prevent `_PyInterpreterFrame`s from backing more than one `PyFrameObject` (GH-97996)
brandtbucher
authored
21a2d9f
View commit details
Copy full SHA for 21a2d9f
View code at this point
Browse repository at this point
Commits on Oct 5, 2022
GH-97779: Ensure that *all* frame objects are backed by "complete" frames (GH-97845)
brandtbucher
authored
0ff8fd6
View commit details
Copy full SHA for 0ff8fd6
View code at this point
Browse repository at this point
Commits on Oct 3, 2022
GH-97752: Clear the `previous` member of newly-created generator/coroutine frames (GH-97795)
brandtbucher
authored
93fcc1f
View commit details
Copy full SHA for 93fcc1f
View code at this point
Browse repository at this point
Commits on Aug 25, 2022
GH-96237: Allow non-functions as reference-holder in frames. (GH-96238)
markshannon
authored
c09fa75
View commit details
Copy full SHA for c09fa75
View code at this point
Browse repository at this point
Commits on Jul 1, 2022
GH-94262: Don't create frame objects for frames that aren't yet complete. (GH-94371)
markshannon
authored
544531d
View commit details
Copy full SHA for 544531d
View code at this point
Browse repository at this point
Commits on Jun 20, 2022
GH-93897: Store frame size in code object and de-opt if insufficient space on thread frame stack. (GH-93908)
markshannon
authored
45e62a2
View commit details
Copy full SHA for 45e62a2
View code at this point
Browse repository at this point
Commits on Jun 19, 2022
gh-93937, C API: Move PyFrame_GetBack() to Python.h (#93938)
Show description for 27b9894
vstinner
authored
27b9894
View commit details
Copy full SHA for 27b9894
View code at this point
Browse repository at this point
Commits on May 18, 2022
Split refcount stats into 'interpreter' and 'non-interpreter' (GH-92919)
markshannon
authored
a4460f2
View commit details
Copy full SHA for a4460f2
View code at this point
Browse repository at this point
Commits on Apr 7, 2022
bpo-47177: Replace `f_lasti` with `prev_instr` (GH-32208)
brandtbucher
authored
ef6a482
View commit details
Copy full SHA for ef6a482
View code at this point
Browse repository at this point
Commits on Mar 22, 2022
bpo-47045: Remove `f_state` field (GH-31963)
Show description for 49daf6d
markshannon
authored
49daf6d
View commit details
Copy full SHA for 49daf6d
View code at this point
Browse repository at this point
Commits on Feb 25, 2022
bpo-46836: Rename InterpreterFrame to _PyInterpreterFrame (GH-31583)
Show description for 87af12b
vstinner
authored
87af12b
View commit details
Copy full SHA for 87af12b
View code at this point
Browse repository at this point
Commits on Feb 3, 2022
Pass reference to func, as well as args, when pushing frame. (GH-31100)
markshannon
authored
da4d4ec
View commit details
Copy full SHA for da4d4ec
View code at this point
Browse repository at this point
Commits on Feb 2, 2022
bpo-46072: Add some frame stats. (GH-31060)
markshannon
authored
187930f
View commit details
Copy full SHA for 187930f
View code at this point
Browse repository at this point
Previous
Next
You can’t perform that action at this time.