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-List
/
cpython
Public
forked from
idobatter/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
Include
pythonrun.h
on
master
User selector
All users
All time
Commit history
Commits on Dec 25, 2015
Issue #25923: Added more const qualifiers to signatures of static and private functions.
serhiy-storchaka
committed
8a3d794
View commit details
Copy full SHA for 8a3d794
View code at this point
Browse repository at this point
Commits on May 9, 2015
PEP 479: Change StopIteration handling inside generators.
Show description for 639d355
Yury Selivanov
committed
639d355
View commit details
Copy full SHA for 639d355
View code at this point
Browse repository at this point
Commits on Nov 20, 2014
Issue #22869: Split pythonrun into two modules
Show description for 7dfc33e
ncoghlan
committed
7dfc33e
View commit details
Copy full SHA for 7dfc33e
View code at this point
Browse repository at this point
Commits on Jan 3, 2014
Issue #19526: Exclude all new API from the stable ABI.
loewis
committed
a311d12
View commit details
Copy full SHA for a311d12
View code at this point
Browse repository at this point
Commits on Nov 6, 2013
Issue #19512: Add PyRun_InteractiveOneObject() function
Show description for 27eea72
vstinner
committed
27eea72
View commit details
Copy full SHA for 27eea72
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
74dc84d
View commit details
Copy full SHA for 74dc84d
View code at this point
Browse repository at this point
Commits on Oct 18, 2013
Issue #16129: Py_SetStandardStreamEncoding cleanups
Show description for 97ed910
ncoghlan
committed
97ed910
View commit details
Copy full SHA for 97ed910
View code at this point
Browse repository at this point
Commits on Oct 17, 2013
Issue #16129: Move Py_SetStandardStreamEncoding declaration
ncoghlan
committed
4084c1b
View commit details
Copy full SHA for 4084c1b
View code at this point
Browse repository at this point
Issue #16129: Add `Py_SetStandardStreamEncoding`
Show description for 851a45c
ncoghlan
committed
851a45c
View commit details
Copy full SHA for 851a45c
View code at this point
Browse repository at this point
Commits on Aug 30, 2013
Issue #18756: os.urandom() now uses a lazily-opened persistent file descriptor, so as to avoid using many file descriptors when run in parallel from multiple threads.
pitrou
committed
b6c686c
View commit details
Copy full SHA for b6c686c
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 4b2fd0a
vstinner
committed
4b2fd0a
View commit details
Copy full SHA for 4b2fd0a
View code at this point
Browse repository at this point
Commits on Jul 22, 2013
Issue #18520: Add a new PyStructSequence_InitType2() function, same than
Show description for bd886a9
vstinner
committed
bd886a9
View commit details
Copy full SHA for bd886a9
View code at this point
Browse repository at this point
Commits on May 6, 2013
Issue #1545463: Global variables caught in reference cycles are now garbage-collected at shutdown.
pitrou
committed
25b5710
View commit details
Copy full SHA for 25b5710
View code at this point
Browse repository at this point
Commits on May 4, 2013
Issue #17408: Avoid using an obsolete instance of the copyreg module when the interpreter is shutdown and then started again.
pitrou
committed
5dae4f3
View commit details
Copy full SHA for 5dae4f3
View code at this point
Browse repository at this point
Commits on Jun 19, 2012
Issue #14928: Fix importlib bootstrap issues by using a custom executable (Modules/_freeze_importlib) to build Python/importlib.h.
pitrou
committed
83449db
View commit details
Copy full SHA for 83449db
View code at this point
Browse repository at this point
Commits on Jun 3, 2012
Issue #14090: fix some minor C API problems in default branch (3.3)
eliben
committed
530c098
View commit details
Copy full SHA for 530c098
View code at this point
Browse repository at this point
Commits on Apr 14, 2012
Issue #2377: Make importlib the implementation of __import__().
Show description for 037a1a7
brettcannon
committed
037a1a7
View commit details
Copy full SHA for 037a1a7
View code at this point
Browse repository at this point
Commits on Feb 21, 2012
Fix test failure in test_cmd_line by initializing the hash secret at the earliest point.
pitrou
committed
0c41425
View commit details
Copy full SHA for 0c41425
View code at this point
Browse repository at this point
Fix test failure in test_cmd_line by initializing the hash secret at the earliest point.
pitrou
committed
d97583b
View commit details
Copy full SHA for d97583b
View code at this point
Browse repository at this point
Commits on Feb 20, 2012
Merge 3.2: Issue #13703 plus some related test suite fixes.
birkenfeld
committed
298a409
View commit details
Copy full SHA for 298a409
View code at this point
Browse repository at this point
Merge from 3.1: Issue #13703: add a way to randomize the hash values of basic types (str, bytes, datetime)
Show description for c046a71
birkenfeld
committed
c046a71
View commit details
Copy full SHA for c046a71
View code at this point
Browse repository at this point
Issue #13703: add a way to randomize the hash values of basic types (str, bytes, datetime)
Show description for 5af1ccb
birkenfeld
committed
5af1ccb
View commit details
Copy full SHA for 5af1ccb
View code at this point
Browse repository at this point
Commits on Nov 18, 2011
Issue #10227: Add an allocation cache for a single slice object.
Show description for 20c31ce
pitrou
committed
20c31ce
View commit details
Copy full SHA for 20c31ce
View code at this point
Browse repository at this point
Commits on May 4, 2011
Issue #1856: Avoid crashes and lockups when daemon threads run while the
Show description for 271c99a
pitrou
committed
271c99a
View commit details
Copy full SHA for 271c99a
View code at this point
Browse repository at this point
Issue #1856: Avoid crashes and lockups when daemon threads run while the
Show description for 89ae6ab
pitrou
committed
89ae6ab
View commit details
Copy full SHA for 89ae6ab
View code at this point
Browse repository at this point
Commits on Mar 6, 2011
Remove sys.subversion and svn build identification leftovers.
birkenfeld
committed
5db419f
View commit details
Copy full SHA for 5db419f
View code at this point
Browse repository at this point
Merge build identification to 3.2 branch.
birkenfeld
committed
c91e9aa
View commit details
Copy full SHA for c91e9aa
View code at this point
Browse repository at this point
Commits on Mar 5, 2011
Commit the hg build identification patch from the pymigr repo.
birkenfeld
committed
eca408a
View commit details
Copy full SHA for eca408a
View code at this point
Browse repository at this point
Commits on Dec 27, 2010
Issue #9738: Document encodings of AST, compiler, parser and PyRun functions
Victor Stinner
committed
96c3309
View commit details
Copy full SHA for 96c3309
View code at this point
Browse repository at this point
Commits on Dec 4, 2010
Expose CompileString, not CompileStringFlags under the
Show description for ea048b6
loewis
committed
ea048b6
View commit details
Copy full SHA for ea048b6
View code at this point
Browse repository at this point
Add an "optimize" parameter to compile() to control the optimization level, and provide an interface to it in py_compile, compileall and PyZipFile.
birkenfeld
committed
e652f1b
View commit details
Copy full SHA for e652f1b
View code at this point
Browse repository at this point
Commits on Dec 3, 2010
Merge branches/pep-0384.
loewis
committed
bbbb003
View commit details
Copy full SHA for bbbb003
View code at this point
Browse repository at this point
Commits on Sep 27, 2010
issue 9910
Show description for a3bf512
Kristján Valur Jónsson
committed
a3bf512
View commit details
Copy full SHA for a3bf512
View code at this point
Browse repository at this point
Commits on Aug 8, 2010
Issue #477863: Print a warning at shutdown if gc.garbage is not empty.
pitrou
committed
258aa41
View commit details
Copy full SHA for 258aa41
View code at this point
Browse repository at this point
Commits on May 9, 2010
Recorded merge of revisions 81032 via svnmerge from
Show description for c14f70a
pitrou
committed
c14f70a
View commit details
Copy full SHA for c14f70a
View code at this point
Browse repository at this point
Previous
Next
You can’t perform that action at this time.