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 }}
parikpython
/
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
symtable.c
on
3.6
User selector
All users
All time
Commit history
Commits on Nov 16, 2018
Add a missed PyErr_NoMemory() in symtable_new(). (GH-10576)
Show description for 0124040
miss-islington
and
ZackerySpytz
authored
0124040
View commit details
Copy full SHA for 0124040
View code at this point
Browse repository at this point
Commits on Oct 11, 2018
Fix a possible decref of a borrowed reference in symtable.c. (GH-9786)
Show description for 1a23abe
miss-islington
and
ZackerySpytz
authored
1a23abe
View commit details
Copy full SHA for 1a23abe
View code at this point
Browse repository at this point
Commits on Nov 16, 2016
Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualToASCIIString.
Show description for 3b73ea1
serhiy-storchaka
committed
3b73ea1
View commit details
Copy full SHA for 3b73ea1
View code at this point
Browse repository at this point
Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualToASCIIString.
Show description for f4934ea
serhiy-storchaka
committed
f4934ea
View commit details
Copy full SHA for f4934ea
View code at this point
Browse repository at this point
Commits on Sep 23, 2016
Issue #28100: Refactor error messages, patch by Ivan Levkivskyi
tiran
committed
517507c
View commit details
Copy full SHA for 517507c
View code at this point
Browse repository at this point
Commits on Sep 9, 2016
Issue #28008: Implement PEP 530 -- asynchronous comprehensions.
Yury Selivanov
committed
52c4e7c
View commit details
Copy full SHA for 52c4e7c
View code at this point
Browse repository at this point
Issue #27999: Make "global after use" a SyntaxError, and ditto for nonlocal.
Show description for 6cff874
Guido van Rossum
committed
6cff874
View commit details
Copy full SHA for 6cff874
View code at this point
Browse repository at this point
Issue #28003: Implement PEP 525 -- Asynchronous Generators.
Yury Selivanov
committed
eb63645
View commit details
Copy full SHA for eb63645
View code at this point
Browse repository at this point
Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations.
Show description for f8cb8a1
Yury Selivanov
committed
f8cb8a1
View commit details
Copy full SHA for f8cb8a1
View code at this point
Browse repository at this point
Commits on Sep 8, 2016
Fix potential NULL pointer dereference in update_symbols()
Show description for 45af0c8
tiran
committed
45af0c8
View commit details
Copy full SHA for 45af0c8
View code at this point
Browse repository at this point
Commits on Jun 4, 2016
Merge typo fixes from 3.5
vadmium
committed
1940919
View commit details
Copy full SHA for 1940919
View code at this point
Browse repository at this point
Fix typos in code comment and documentation
vadmium
committed
3ee6270
View commit details
Copy full SHA for 3ee6270
View code at this point
Browse repository at this point
Commits on Jan 25, 2016
Add ast.Constant
Show description for f2c1aa1
vstinner
committed
f2c1aa1
View commit details
Copy full SHA for f2c1aa1
View code at this point
Browse repository at this point
Commits on Dec 29, 2015
merge 3.5 (#25973)
benjaminp
committed
5aab44b
View commit details
Copy full SHA for 5aab44b
View code at this point
Browse repository at this point
make recording and reporting errors and nonlocal and global directives more robust (closes #25973)
benjaminp
committed
3cc8f4b
View commit details
Copy full SHA for 3cc8f4b
View code at this point
Browse repository at this point
Commits on Dec 25, 2015
Issue #25923: Added more const qualifiers to signatures of static and private functions.
serhiy-storchaka
committed
ef1585e
View commit details
Copy full SHA for ef1585e
View code at this point
Browse repository at this point
Commits on Sep 19, 2015
Issue #24965: Implement PEP 498 "Literal String Interpolation". Documentation is still needed, I'll open an issue for that.
ericvsmith
committed
235a6f0
View commit details
Copy full SHA for 235a6f0
View code at this point
Browse repository at this point
Commits on Jul 22, 2015
Issue #24619: More tests; fix nits in compiler.c
Yury Selivanov
committed
b7666a3
View commit details
Copy full SHA for b7666a3
View code at this point
Browse repository at this point
Commits on Jul 3, 2015
Issue #19235: Add new RecursionError exception. Patch by Georg Brandl.
Yury Selivanov
committed
f488fb4
View commit details
Copy full SHA for f488fb4
View code at this point
Browse repository at this point
Commits on May 12, 2015
PEP 0492 -- Coroutines with async and await syntax. Issue #24017.
Yury Selivanov
committed
7544508
View commit details
Copy full SHA for 7544508
View code at this point
Browse repository at this point
Commits on May 6, 2015
PEP 448: additional unpacking generalizations (closes #2292)
Show description for 025e9eb
benjaminp
committed
025e9eb
View commit details
Copy full SHA for 025e9eb
View code at this point
Browse repository at this point
Commits on Apr 28, 2015
remove the concept of an unoptimized function scope from the compiler, since it can't happen anymore
benjaminp
committed
1dfd247
View commit details
Copy full SHA for 1dfd247
View code at this point
Browse repository at this point
Commits on Apr 24, 2015
remove dead *-import checking code (closes #24049)
benjaminp
committed
9bdd613
View commit details
Copy full SHA for 9bdd613
View code at this point
Browse repository at this point
Commits on Sep 27, 2013
merge 3.3 (#19098)
benjaminp
committed
c30d058
View commit details
Copy full SHA for c30d058
View code at this point
Browse repository at this point
don't scale compiler stack frames if the recursion limit is huge (closes #19098)
benjaminp
committed
305e5aa
View commit details
Copy full SHA for 305e5aa
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 Jul 11, 2013
Issue #18408: ste_new() initialize all attributes before handling error
Show description for 9a4fb66
vstinner
committed
9a4fb66
View commit details
Copy full SHA for 9a4fb66
View code at this point
Browse repository at this point
Commits on May 17, 2013
move definition to top of block
benjaminp
committed
e2135c6
View commit details
Copy full SHA for e2135c6
View code at this point
Browse repository at this point
Commits on May 16, 2013
rather than passing locals to the class body, just execute the class body in the proper environment
benjaminp
committed
e8e1459
View commit details
Copy full SHA for e8e1459
View code at this point
Browse repository at this point
Commits on May 15, 2013
complain about "global __class__" in a class body (closes #17983)
benjaminp
committed
1e93b06
View commit details
Copy full SHA for 1e93b06
View code at this point
Browse repository at this point
hide the __class__ closure from the class body (#12370)
benjaminp
committed
312595c
View commit details
Copy full SHA for 312595c
View code at this point
Browse repository at this point
Commits on Mar 18, 2013
unify some ast.argument's attrs; change Attribute column offset (closes #16795)
Show description for cda75be
benjaminp
committed
cda75be
View commit details
Copy full SHA for cda75be
View code at this point
Browse repository at this point
Commits on Dec 6, 2012
create NameConstant AST class for None, True, and False literals (closes #16619)
benjaminp
committed
442f209
View commit details
Copy full SHA for 442f209
View code at this point
Browse repository at this point
Commits on Nov 25, 2012
Issue #16546: merge fix from 3.3
mdickinson
committed
073f067
View commit details
Copy full SHA for 073f067
View code at this point
Browse repository at this point
Issue #16546: make ast.YieldFrom argument mandatory.
mdickinson
committed
ded35ae
View commit details
Copy full SHA for ded35ae
View code at this point
Browse repository at this point
Previous
Next
You can’t perform that action at this time.