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
.
pythonStudy2017
/
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
ceval.c
on
3.3
User selector
All users
All time
Commit history
Commits on Feb 9, 2014
Issue #20437: Fixed 21 potential bugs when deleting objects references.
serhiy-storchaka
committed
505ff75
View commit details
Copy full SHA for 505ff75
View code at this point
Browse repository at this point
Commits on Oct 30, 2013
update comment
benjaminp
committed
8f16948
View commit details
Copy full SHA for 8f16948
View code at this point
Browse repository at this point
Commits on Oct 7, 2013
Fix macro expansion of _PyErr_OCCURRED(), and make sure to use it in at least one place so as to avoid regressions.
pitrou
committed
59c900d
View commit details
Copy full SHA for 59c900d
View code at this point
Browse repository at this point
Commits on Jul 20, 2013
Add missing check of PyDict_SetItem()'s return value in PyEval_EvalCodeEx()
Show description for 0bd447f
tiran
committed
0bd447f
View commit details
Copy full SHA for 0bd447f
View code at this point
Browse repository at this point
Commits on May 15, 2013
when arguments are cells clear the locals slot (backport of #17927)
benjaminp
committed
e1b4cbc
View commit details
Copy full SHA for e1b4cbc
View code at this point
Browse repository at this point
Commits on Apr 19, 2013
#17413: make sure settrace funcs get passed exception instances for 'value'.
Show description for 3583761
bitdancer
committed
3583761
View commit details
Copy full SHA for 3583761
View code at this point
Browse repository at this point
Commits on Aug 7, 2012
fix yield from return value on custom iterators (closes #15568)
benjaminp
committed
b37df51
View commit details
Copy full SHA for b37df51
View code at this point
Browse repository at this point
Commits on Jun 17, 2012
Issue #13783: the PEP 380 implementation no longer expands the public C API
ncoghlan
committed
c40bc09
View commit details
Copy full SHA for c40bc09
View code at this point
Browse repository at this point
Commits on Jun 1, 2012
check return for error
benjaminp
committed
d1ab608
View commit details
Copy full SHA for d1ab608
View code at this point
Browse repository at this point
Commits on May 15, 2012
PEP 415: Implement suppression of __context__ display with an exception attribute
Show description for d5a1c44
benjaminp
committed
d5a1c44
View commit details
Copy full SHA for d5a1c44
View code at this point
Browse repository at this point
Commits on Apr 26, 2012
only incref when using borrowing functions
benjaminp
committed
1138944
View commit details
Copy full SHA for 1138944
View code at this point
Browse repository at this point
Commits on Apr 23, 2012
Implement PEP 412: Key-sharing dictionaries (closes #13903)
Show description for 7d95e40
benjaminp
committed
7d95e40
View commit details
Copy full SHA for 7d95e40
View code at this point
Browse repository at this point
Commits on Apr 19, 2012
Fix refleak: PyObject_GetItem returns a new reference, not a borrowed one like PyDict_GetItem.
pitrou
committed
bf35c15
View commit details
Copy full SHA for bf35c15
View code at this point
Browse repository at this point
Commits on Apr 18, 2012
Issue #14385: Support other types than dict for __builtins__
Show description for b0b2242
vstinner
committed
b0b2242
View commit details
Copy full SHA for b0b2242
View code at this point
Browse repository at this point
Commits on Apr 2, 2012
Guard an LLTRACE variable to silence an unused variable warning.
brettcannon
committed
368b4b7
View commit details
Copy full SHA for 368b4b7
View code at this point
Browse repository at this point
Commits on Mar 26, 2012
Issue #14383: Add _PyDict_GetItemId() and _PyDict_SetItemId() functions
Show description for 3c1e481
vstinner
committed
3c1e481
View commit details
Copy full SHA for 3c1e481
View code at this point
Browse repository at this point
Commits on Mar 21, 2012
use identifier api
benjaminp
committed
302e790
View commit details
Copy full SHA for 302e790
View code at this point
Browse repository at this point
Commits on Mar 15, 2012
perform yield from delegation by repeating YIELD_FROM opcode (closes #14230)
Show description for 2afe6ae
benjaminp
committed
2afe6ae
View commit details
Copy full SHA for 2afe6ae
View code at this point
Browse repository at this point
Commits on Feb 26, 2012
Close issue #6210: Implement PEP 409
ncoghlan
committed
ab7bf21
View commit details
Copy full SHA for ab7bf21
View code at this point
Browse repository at this point
Commits on Jan 22, 2012
use the static identifier api for looking up special methods
Show description for ce79852
benjaminp
committed
ce79852
View commit details
Copy full SHA for ce79852
View code at this point
Browse repository at this point
Commits on Jan 13, 2012
Fix compilation with C89 compilers (Windows...)
amauryfa
committed
0a239e9
View commit details
Copy full SHA for 0a239e9
View code at this point
Browse repository at this point
NULL and no exception set from tp_iternext means StopIteration
benjaminp
committed
0296a56
View commit details
Copy full SHA for 0296a56
View code at this point
Browse repository at this point
Implement PEP 380 - 'yield from' (closes #11682)
ncoghlan
committed
1f7ce62
View commit details
Copy full SHA for 1f7ce62
View code at this point
Browse repository at this point
Commits on Nov 25, 2011
PEP 3155 / issue #13448: Qualified name for classes and functions.
pitrou
committed
86a36b5
View commit details
Copy full SHA for 86a36b5
View code at this point
Browse repository at this point
Commits on Oct 14, 2011
Port SetAttrString/HasAttrString to SetAttrId/GetAttrId.
loewis
committed
1c67dd9
View commit details
Copy full SHA for 1c67dd9
View code at this point
Browse repository at this point
Rename _Py_identifier to _Py_IDENTIFIER.
loewis
committed
bd928fe
View commit details
Copy full SHA for bd928fe
View code at this point
Browse repository at this point
Commits on Oct 9, 2011
Add API for static strings, primarily good for identifiers.
Show description for afe55bb
loewis
committed
afe55bb
View commit details
Copy full SHA for afe55bb
View code at this point
Browse repository at this point
Commits on Oct 2, 2011
ceval.c: restore str+=str optimization
Victor Stinner
committed
d2a915d
View commit details
Copy full SHA for d2a915d
View code at this point
Browse repository at this point
Commits on Oct 1, 2011
remove "fast-path" for (i)adding strings
Show description for 811c2f1
benjaminp
committed
811c2f1
View commit details
Copy full SHA for 811c2f1
View code at this point
Browse repository at this point
Commits on Sep 30, 2011
Remove commented code: str+=str is no more super-optimized
Victor Stinner
committed
bec0fda
View commit details
Copy full SHA for bec0fda
View code at this point
Browse repository at this point
Commits on Sep 28, 2011
Implement PEP 393.
loewis
committed
d63a3b8
View commit details
Copy full SHA for d63a3b8
View code at this point
Browse repository at this point
Commits on Jul 23, 2011
Issue 12620: Make pendingbusy flag static to Py_MakePendingCalls().
Charles-François Natali
committed
f23339a
View commit details
Copy full SHA for f23339a
View code at this point
Browse repository at this point
Commits on Jul 18, 2011
excise the remains of STOP_CODE, which hasn't done anything useful for years
benjaminp
committed
76f7f4d
View commit details
Copy full SHA for 76f7f4d
View code at this point
Browse repository at this point
Commits on Jul 15, 2011
merge 3.2 (#11627)
benjaminp
committed
e92cd0c
View commit details
Copy full SHA for e92cd0c
View code at this point
Browse repository at this point
catch nasty exception classes with __new__ that doesn't return a exception (closes #11627)
Show description for 5afa03a
benjaminp
committed
5afa03a
View commit details
Copy full SHA for 5afa03a
View code at this point
Browse repository at this point
Previous
Next
You can’t perform that action at this time.