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 }}
Uh oh!
There was an error while loading.
Please reload this page
.
python
/
cpython
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
35.2k
Star
74.3k
Code
Issues
5k+
Pull requests
2.5k
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Commits
Breadcrumbs
History for
cpython
Parser
on
3.4
User selector
All users
All time
Commit history
Commits on Sep 19, 2016
properly handle the single null-byte file (closes #24022)
benjaminp
committed
26d998c
View commit details
Copy full SHA for 26d998c
View code at this point
Browse repository at this point
Commits on Nov 14, 2015
Issue #25388: Fixed tokenizer crash when processing undecodable source code
Show description for 0d44111
serhiy-storchaka
committed
0d44111
View commit details
Copy full SHA for 0d44111
View code at this point
Browse repository at this point
Commits on Apr 21, 2015
do not call into python api if an exception is set (#24022)
benjaminp
committed
d73aca7
View commit details
Copy full SHA for d73aca7
View code at this point
Browse repository at this point
Commits on Jun 7, 2014
allow the keyword else immediately after (no space) an integer (closes #21642)
benjaminp
committed
c416162
View commit details
Copy full SHA for c416162
View code at this point
Browse repository at this point
Commits on Feb 28, 2014
Merge with 3.3
loewis
committed
78f1e4c
View commit details
Copy full SHA for 78f1e4c
View code at this point
Browse repository at this point
Issue #20731: Properly position in source code files even if they
Show description for 815b41b
loewis
committed
815b41b
View commit details
Copy full SHA for 815b41b
View code at this point
Browse repository at this point
Commits on Feb 11, 2014
merge 3.3 (#20588)
benjaminp
committed
42ec031
View commit details
Copy full SHA for 42ec031
View code at this point
Browse repository at this point
don't put runtime values in array initializer for C89 compliance (closes #20588)
benjaminp
committed
c2f665e
View commit details
Copy full SHA for c2f665e
View code at this point
Browse repository at this point
Commits on Jan 9, 2014
Do not reset the line number because we already set file position to correct
Show description for 5940b92
serhiy-storchaka
committed
5940b92
View commit details
Copy full SHA for 5940b92
View code at this point
Browse repository at this point
Do not reset the line number because we already set file position to correct
Show description for 1064a13
serhiy-storchaka
committed
1064a13
View commit details
Copy full SHA for 1064a13
View code at this point
Browse repository at this point
Issue #18960: Fix bugs with Python source code encoding in the second line.
Show description for 7282ff6
serhiy-storchaka
committed
7282ff6
View commit details
Copy full SHA for 7282ff6
View code at this point
Browse repository at this point
Issue #18960: Fix bugs with Python source code encoding in the second line.
Show description for 768c16c
serhiy-storchaka
committed
768c16c
View commit details
Copy full SHA for 768c16c
View code at this point
Browse repository at this point
Commits on Dec 21, 2013
Issue #16136: Remove VMS support and VMS-related code
tiran
committed
af01f66
View commit details
Copy full SHA for af01f66
View code at this point
Browse repository at this point
Commits on Dec 4, 2013
upcast int to size_t to silence two autological-constant-out-of-range-compare warnings with clang.
tiran
committed
724b828
View commit details
Copy full SHA for 724b828
View code at this point
Browse repository at this point
Commits on Nov 18, 2013
Fix a compiler warning on Windows 64-bit in parsetok.c
Show description for cad876d
vstinner
committed
cad876d
View commit details
Copy full SHA for cad876d
View code at this point
Browse repository at this point
Fix compiler warnings on Windows 64-bit in grammar.c
Show description for 3a8a333
vstinner
committed
3a8a333
View commit details
Copy full SHA for 3a8a333
View code at this point
Browse repository at this point
Commits on Oct 19, 2013
Issue #1772673: The type of `char*` arguments now changed to `const char*`.
serhiy-storchaka
committed
c679227
View commit details
Copy full SHA for c679227
View code at this point
Browse repository at this point
Issue #16742: My fix on PyOS_StdioReadline() was incomplete, PyMem_FREE() was
Show description for c548660
vstinner
committed
c548660
View commit details
Copy full SHA for c548660
View code at this point
Browse repository at this point
Commits on Oct 12, 2013
Issue #4555: All exported C symbols are now prefixed with either "Py" or "_Py".
Show description for d01d396
pitrou
committed
d01d396
View commit details
Copy full SHA for d01d396
View code at this point
Browse repository at this point
Commits on Oct 10, 2013
Close #16742: Fix misuse of memory allocations in PyOS_Readline()
Show description for 2fe9bac
vstinner
committed
2fe9bac
View commit details
Copy full SHA for 2fe9bac
View code at this point
Browse repository at this point
Commits on Sep 26, 2013
Move open outside try/finally
eliben
committed
1891cff
View commit details
Copy full SHA for 1891cff
View code at this point
Browse repository at this point
Don't use fancy new Python features like 'with' - some bots don't have them
Show description for 9908123
eliben
committed
9908123
View commit details
Copy full SHA for 9908123
View code at this point
Browse repository at this point
Normalize whitespace
eliben
committed
58fe1b1
View commit details
Copy full SHA for 58fe1b1
View code at this point
Browse repository at this point
Small fixes in Parser/asdl.py - no change in functionality.
Show description for b788a38
eliben
committed
b788a38
View commit details
Copy full SHA for b788a38
View code at this point
Browse repository at this point
Commits on Aug 27, 2013
Issue #18571: Implementation of the PEP 446: file descriptors and file handles
Show description for daf4555
vstinner
committed
daf4555
View commit details
Copy full SHA for daf4555
View code at this point
Browse repository at this point
Commits on Aug 26, 2013
Close #11619: The parser and the import machinery do not encode Unicode
Show description for 14e461d
vstinner
committed
14e461d
View commit details
Copy full SHA for 14e461d
View code at this point
Browse repository at this point
Commits on Aug 25, 2013
#18803: merge with 3.3.
ezio-melotti
committed
d640fe2
View commit details
Copy full SHA for d640fe2
View code at this point
Browse repository at this point
#18803: fix more typos. Patch by Févry Thibault.
ezio-melotti
committed
7c4a7e6
View commit details
Copy full SHA for 7c4a7e6
View code at this point
Browse repository at this point
Commits on Aug 13, 2013
Issue #18722: Remove uses of the "register" keyword in C code.
pitrou
committed
9ed5f27
View commit details
Copy full SHA for 9ed5f27
View code at this point
Browse repository at this point
Commits on Aug 6, 2013
Issue #18368: PyOS_StdioReadline() no longer leaks memory when realloc() fails.
tiran
committed
73207e0
View commit details
Copy full SHA for 73207e0
View code at this point
Browse repository at this point
Issue #18368: PyOS_StdioReadline() no longer leaks memory when realloc() fails.
tiran
committed
9ae513c
View commit details
Copy full SHA for 9ae513c
View code at this point
Browse repository at this point
Commits on Jul 31, 2013
Silence warning about set but unused variable inside compile_atom() in non-debug builds
tiran
committed
1289565
View commit details
Copy full SHA for 1289565
View code at this point
Browse repository at this point
Silence warning about set but unused variable inside compile_atom() in non-debug builds
tiran
committed
5e4d372
View commit details
Copy full SHA for 5e4d372
View code at this point
Browse repository at this point
Commits on Jul 26, 2013
Issue #18552: Check return value of PyArena_AddPyObject() in obj2ast_object().
tiran
committed
b7f1b38
View commit details
Copy full SHA for b7f1b38
View code at this point
Browse repository at this point
Issue #18552: Check return value of PyArena_AddPyObject() in obj2ast_object().
tiran
committed
70c94e7
View commit details
Copy full SHA for 70c94e7
View code at this point
Browse repository at this point
Previous
Next
You can’t perform that action at this time.