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
Type
/
to 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 }}
asottile
/
cpython
Public
forked from
python/cpython
Notifications
You must be signed in to change notification settings
Fork
3
Star
1
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
on
patch-2
User selector
All users
All time
Commit history
Commits on Sep 14, 2023
gh-109219: propagate free vars through type param scopes (#109377)
Show description for 909adb5
carljm
and
JelleZijlstra
authored
909adb5
View commit details
Copy full SHA for 909adb5
View code at this point
Browse repository at this point
gh-105658: fix excess trace events for except block ending with a conditional block (#109384)
iritkatriel
authored
4a54074
View commit details
Copy full SHA for 4a54074
View code at this point
Browse repository at this point
dump readable opcode names in flowgraph debug utility (#109392)
Show description for 1ce9ea0
carljm
and
iritkatriel
authored
1ce9ea0
View commit details
Copy full SHA for 1ce9ea0
View code at this point
Browse repository at this point
Commits on Sep 13, 2023
GH-104584: Don't call executors from JUMP_BACKWARD (GH-109347)
brandtbucher
authored
6c13e13
View commit details
Copy full SHA for 6c13e13
View code at this point
Browse repository at this point
GH-105848: Replace KW_NAMES + CALL with LOAD_CONST + CALL_KW (GH-109300)
brandtbucher
authored
22e65ee
View commit details
Copy full SHA for 22e65ee
View code at this point
Browse repository at this point
gh-109341: Fix crash on compiling invalid AST including TypeAlias (#109349)
JelleZijlstra
authored
987b4bc
View commit details
Copy full SHA for 987b4bc
View code at this point
Browse repository at this point
gh-109351: Fix crash when compiling AST with invalid NamedExpr (#109352)
JelleZijlstra
authored
79101ed
View commit details
Copy full SHA for 79101ed
View code at this point
Browse repository at this point
Commits on Sep 12, 2023
GH-109330: Dump and compare stats using opcode names, not numbers (GH-109335)
mdboom
authored
5dcbbd8
View commit details
Copy full SHA for 5dcbbd8
View code at this point
Browse repository at this point
gh-106581: Honor 'always_exits' in write_components() (#109338)
Show description for b86ce91
gvanrossum
authored
b86ce91
View commit details
Copy full SHA for b86ce91
View code at this point
Browse repository at this point
gh-109256: allocate opcode IDs for internal opcodes in their own range (#109269)
iritkatriel
authored
8b55adf
View commit details
Copy full SHA for 8b55adf
View code at this point
Browse repository at this point
gh-109216: Fix possible memory leak in `BUILD_MAP` (#109257)
sobolevn
authored
247ee1b
View commit details
Copy full SHA for 247ee1b
View code at this point
Browse repository at this point
gh-109118: Disallow nested scopes within PEP 695 scopes within classes (#109196)
Show description for b88d9e7
JelleZijlstra
and
carljm
authored
b88d9e7
View commit details
Copy full SHA for b88d9e7
View code at this point
Browse repository at this point
Commits on Sep 11, 2023
gh-109195: fix source location for super load before LOAD_SUPER_ATTR (#109289)
carljm
authored
ceeb417
View commit details
Copy full SHA for ceeb417
View code at this point
Browse repository at this point
gh-109214: Rename SAVE_IP to _SET_IP, and similar (#109285)
Show description for fbaf77e
gvanrossum
authored
fbaf77e
View commit details
Copy full SHA for fbaf77e
View code at this point
Browse repository at this point
gh-109039: Branch prediction for Tier 2 interpreter (#109038)
Show description for bcce5e2
gvanrossum
authored
bcce5e2
View commit details
Copy full SHA for bcce5e2
View code at this point
Browse repository at this point
gh-109179: Fix traceback display for SyntaxErrors with notes (#109197)
iritkatriel
authored
ecd21a6
View commit details
Copy full SHA for ecd21a6
View code at this point
Browse repository at this point
gh-108987: Fix _thread.start_new_thread() race condition (#109135)
Show description for 517cd82
vstinner
authored
517cd82
View commit details
Copy full SHA for 517cd82
View code at this point
Browse repository at this point
GH-108976. Keep monitoring data structures valid during de-optimization during callback. (GH-109131)
markshannon
authored
4a69301
View commit details
Copy full SHA for 4a69301
View code at this point
Browse repository at this point
Commits on Sep 10, 2023
gh-109207: Fix SystemError when printing symtable entry object. (GH-109225)
yunline
authored
4297499
View commit details
Copy full SHA for 4297499
View code at this point
Browse repository at this point
Commits on Sep 9, 2023
gh-109118: Fix runtime crash when NameError happens in PEP 695 function (#109123)
JelleZijlstra
authored
17f9941
View commit details
Copy full SHA for 17f9941
View code at this point
Browse repository at this point
Commits on Sep 8, 2023
Check the result of PySet_Contains() for error in Python/symtable.c (GH-109146)
serhiy-storchaka
authored
87a7faf
View commit details
Copy full SHA for 87a7faf
View code at this point
Browse repository at this point
GH-108614: Unbreak emscripten build (GH-109132)
markshannon
authored
501f2dc
View commit details
Copy full SHA for 501f2dc
View code at this point
Browse repository at this point
gh-106922: Fix error location for constructs with spaces and parentheses (#108959)
pablogsal
authored
6275c67
View commit details
Copy full SHA for 6275c67
View code at this point
Browse repository at this point
gh-104690: thread_run() checks for tstate dangling pointer (#109056)
Show description for f63d378
vstinner
authored
f63d378
View commit details
Copy full SHA for f63d378
View code at this point
Browse repository at this point
GH-91079: Rename C_RECURSION_LIMIT to Py_C_RECURSION_LIMIT (#108507)
Show description for b0edf3b
vstinner
authored
b0edf3b
View commit details
Copy full SHA for b0edf3b
View code at this point
Browse repository at this point
GH-108716: Turn off deep-freezing of code objects. (GH-108722)
markshannon
authored
15d4c9f
View commit details
Copy full SHA for 15d4c9f
View code at this point
Browse repository at this point
Commits on Sep 7, 2023
gh-109094: remove unnecessary updates of frame->prev_instr in instrumentation functions (#109076)
iritkatriel
authored
9639696
View commit details
Copy full SHA for 9639696
View code at this point
Browse repository at this point
GH-108614: Add `RESUME_CHECK` instruction (GH-108630)
markshannon
authored
0858328
View commit details
Copy full SHA for 0858328
View code at this point
Browse repository at this point
gh-108753: _Py_PrintSpecializationStats() uses Py_hexdigits (#109040)
vstinner
authored
fd5989b
View commit details
Copy full SHA for fd5989b
View code at this point
Browse repository at this point
gh-107265: Remove all ENTER_EXECUTOR when execute _Py_Instrument (gh-108539)
corona10
authored
3bfa24e
View commit details
Copy full SHA for 3bfa24e
View code at this point
Browse repository at this point
Commits on Sep 6, 2023
GH-104584: Restore frame->stacktop on optimizer error (GH-108953)
brandtbucher
authored
6971e40
View commit details
Copy full SHA for 6971e40
View code at this point
Browse repository at this point
gh-108753: Enhance pystats (#108754)
Show description for a0773b8
vstinner
and
mdboom
authored
a0773b8
View commit details
Copy full SHA for a0773b8
View code at this point
Browse repository at this point
gh-108765: Cleanup #include in Python/*.c files (#108977)
Show description for b298b39
vstinner
authored
b298b39
View commit details
Copy full SHA for b298b39
View code at this point
Browse repository at this point
Commits on Sep 5, 2023
GH-108390: Prevent non-local events being set with `sys.monitoring.set_local_events()` (GH-108420)
markshannon
authored
5a2a046
View commit details
Copy full SHA for 5a2a046
View code at this point
Browse repository at this point
Commits on Sep 4, 2023
gh-106320: Remove private _PyErr_WriteUnraisableMsg() (#108863)
Show description for 6765938
vstinner
authored
6765938
View commit details
Copy full SHA for 6765938
View code at this point
Browse repository at this point
Previous
Next
You can’t perform that action at this time.