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 }}
F-park
/
cpython
Public
forked from
python/cpython
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
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
ast.c
on
docs_datetime_patch
User selector
All users
All time
Commit history
Commits on Sep 13, 2023
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 8, 2023
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
Commits on Aug 4, 2023
GH-107263: Increase C stack limit for most functions, except `_PyEval_EvalFrameDefault()` (GH-107535)
Show description for fa45958
markshannon
authored
fa45958
View commit details
Copy full SHA for fa45958
View code at this point
Browse repository at this point
Commits on May 22, 2023
gh-104656: Rename typeparams AST node to type_params (#104657)
JelleZijlstra
authored
a5f244d
View commit details
Copy full SHA for a5f244d
View code at this point
Browse repository at this point
Commits on May 16, 2023
gh-103763: Implement PEP 695 (#103764)
Show description for 24d8b88
5 people
authored
24d8b88
View commit details
Copy full SHA for 24d8b88
View code at this point
Browse repository at this point
Commits on May 15, 2023
gh-104482: Fix error handling bugs in ast.c (#104483)
iritkatriel
authored
8a3702f
View commit details
Copy full SHA for 8a3702f
View code at this point
Browse repository at this point
Commits on Oct 5, 2022
GH-91079: Decouple C stack overflow checks from Python recursion checks. (GH-96510)
markshannon
authored
7644935
View commit details
Copy full SHA for 7644935
View code at this point
Browse repository at this point
Commits on Jun 1, 2022
gh-92597: Improve error message for AST nodes with invalid ranges (GH-93398)
pablogsal
authored
8a221a8
View commit details
Copy full SHA for 8a221a8
View code at this point
Browse repository at this point
Commits on May 30, 2022
gh-93351: Ensure the position information in AST nodes created by the parser is always consistent (GH-93352)
pablogsal
authored
5893b5d
View commit details
Copy full SHA for 5893b5d
View code at this point
Browse repository at this point
Commits on Dec 14, 2021
bpo-45292: [PEP-654] add except* (GH-29581)
iritkatriel
authored
d60457a
View commit details
Copy full SHA for d60457a
View code at this point
Browse repository at this point
Commits on Nov 16, 2021
bpo-45753: Make recursion checks more efficient. (GH-29524)
Show description for b931077
markshannon
authored
b931077
View commit details
Copy full SHA for b931077
View code at this point
Browse repository at this point
Commits on Jul 29, 2021
bpo-43897: Reject "_" captures and top-level MatchStar in the AST validator (GH-27432)
brandtbucher
authored
8d06474
View commit details
Copy full SHA for 8d06474
View code at this point
Browse repository at this point
Commits on Jul 28, 2021
bpo-43897: AST validation for pattern matching nodes (GH24771)
isidentical
authored
31bec6f
View commit details
Copy full SHA for 31bec6f
View code at this point
Browse repository at this point
Commits on Apr 29, 2021
bpo-43892: Make match patterns explicit in the AST (GH-25585)
Show description for 1e7b858
ncoghlan
and
brandtbucher
authored
1e7b858
View commit details
Copy full SHA for 1e7b858
View code at this point
Browse repository at this point
Commits on Apr 25, 2021
bpo-42609: Check recursion depth in the AST validator and optimizer (GH-23744)
serhiy-storchaka
authored
face87c
View commit details
Copy full SHA for face87c
View code at this point
Browse repository at this point
Commits on Mar 23, 2021
bpo-43244: Remove ast.h, asdl.h, Python-ast.h headers (GH-24933)
Show description for 94faa07
vstinner
authored
94faa07
View commit details
Copy full SHA for 94faa07
View code at this point
Browse repository at this point
Commits on Mar 18, 2021
bpo-43244: Remove the PyAST_Validate() function (GH-24911)
Show description for eec8e61
vstinner
authored
eec8e61
View commit details
Copy full SHA for eec8e61
View code at this point
Browse repository at this point
Commits on Feb 26, 2021
bpo-42128: Structural Pattern Matching (PEP 634) (GH-22917)
Show description for 145bf26
4 people
authored
145bf26
View commit details
Copy full SHA for 145bf26
View code at this point
Browse repository at this point
Commits on Oct 10, 2020
bpo-42000: Cleanup the AST related C-code (GH-22641)
Show description for 02a1603
isidentical
authored
02a1603
View commit details
Copy full SHA for 02a1603
View code at this point
Browse repository at this point
Commits on Sep 16, 2020
bpo-41746: Add type information to asdl_seq objects (GH-22223)
Show description for a5634c4
pablogsal
authored
a5634c4
View commit details
Copy full SHA for a5634c4
View code at this point
Browse repository at this point
Commits on Jun 20, 2020
bpo-40939: Remove the old parser (Part 2) (GH-21005)
Show description for 314858e
lysnikolaou
authored
314858e
View commit details
Copy full SHA for 314858e
View code at this point
Browse repository at this point
Commits on Jun 11, 2020
bpo-40939: Remove the old parser (GH-20768)
Show description for 1ed83ad
pablogsal
authored
1ed83ad
View commit details
Copy full SHA for 1ed83ad
View code at this point
Browse repository at this point
Commits on Jun 6, 2020
bpo-40870: Invalidate usage of some constants with ast.Name (GH-20649)
isidentical
authored
68874a8
View commit details
Copy full SHA for 68874a8
View code at this point
Browse repository at this point
Commits on May 27, 2020
bpo-40614: Respect feature version for f-string debug expressions (GH-20196)
Show description for c116c94
3 people
authored
c116c94
View commit details
Copy full SHA for c116c94
View code at this point
Browse repository at this point
Commits on May 15, 2020
bpo-40334: Correctly identify invalid target in assignment errors (GH-20076)
Show description for 16ab070
pablogsal
and
lysnikolaou
authored
16ab070
View commit details
Copy full SHA for 16ab070
View code at this point
Browse repository at this point
Commits on Apr 11, 2020
bpo-39943: Add the const qualifier to pointers on non-mutable PyUnicode data. (GH-19345)
serhiy-storchaka
authored
cd8295f
View commit details
Copy full SHA for cd8295f
View code at this point
Browse repository at this point
Commits on Apr 3, 2020
bpo-40141: Include the value in the column position for keyword AST nodes (GH-19348)
pablogsal
authored
40cf35c
View commit details
Copy full SHA for 40cf35c
View code at this point
Browse repository at this point
bpo-40147: Move the check for duplicate keywords to the compiler (GH-19289)
pablogsal
authored
254ec78
View commit details
Copy full SHA for 254ec78
View code at this point
Browse repository at this point
Commits on Apr 1, 2020
bpo-40141: Add line and column information to ast.keyword nodes (GH-19283)
pablogsal
authored
168660b
View commit details
Copy full SHA for 168660b
View code at this point
Browse repository at this point
Commits on Mar 25, 2020
bpo-39882: Add _Py_FatalErrorFormat() function (GH-19157)
vstinner
authored
87d3b9d
View commit details
Copy full SHA for 87d3b9d
View code at this point
Browse repository at this point
Commits on Mar 19, 2020
bpo-40000: Improve error messages when validating invalid ast.Constant nodes (GH-19055)
Show description for 0ac59f9
isidentical
and
pablogsal
authored
0ac59f9
View commit details
Copy full SHA for 0ac59f9
View code at this point
Browse repository at this point
Commits on Mar 17, 2020
bpo-39988: Remove ast.AugLoad and ast.AugStore node classes. (GH-19038)
serhiy-storchaka
authored
6b97598
View commit details
Copy full SHA for 6b97598
View code at this point
Browse repository at this point
Commits on Mar 15, 2020
bpo-39969: Remove ast.Param node class as is no longer used (GH-19020)
isidentical
authored
8689209
View commit details
Copy full SHA for 8689209
View code at this point
Browse repository at this point
Commits on Mar 10, 2020
bpo-34822: Simplify AST for subscription. (GH-9605)
Show description for 13d52c2
serhiy-storchaka
authored
13d52c2
View commit details
Copy full SHA for 13d52c2
View code at this point
Browse repository at this point
Previous
Next
You can’t perform that action at this time.