index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Python
/
symtable.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G...
Jeroen Demeyer
2019-05-31
1
-2/+2
*
bpo-36540: PEP 570 -- Implementation (GH-12701)
Pablo Galindo
2019-04-29
1
-0/+2
*
bpo-36187: Remove NamedStore. (GH-12167)
Serhiy Storchaka
2019-03-05
1
-5/+4
*
bpo-35459: Use PyDict_GetItemWithError() instead of PyDict_GetItem(). (GH-11112)
Serhiy Storchaka
2019-02-25
1
-5/+13
*
Complete switch cases in symtable.c; fixes bpo-35963 (GH-11821)
Guido van Rossum
2019-02-11
1
-0/+4
*
bpo-35224: PEP 572 Implementation (#10497)
Emily Morehouse
2019-01-24
1
-9/+83
*
bpo-35177, Python-ast.h: Fix "Yield" compiler warning (GH-10664)
Victor Stinner
2018-11-22
1
-0/+1
*
Add a missed PyErr_NoMemory() in symtable_new(). (GH-10576)
Zackery Spytz
2018-11-16
1
-1/+3
*
bpo-35081: Rename internal headers (GH-10275)
Victor Stinner
2018-11-12
1
-1/+1
*
bpo-35177: Add dependencies between header files (GH-10361)
Victor Stinner
2018-11-11
1
-5/+0
*
bpo-35081: Add _PyThreadState_GET() internal macro (GH-10266)
Victor Stinner
2018-11-01
1
-1/+1
*
bpo-35081: Add pycore_ prefix to internal header files (GH-10263)
Victor Stinner
2018-10-31
1
-1/+1
*
bpo-34939: Allow annotated global names in module namespace (GH-9844)
Pablo Galindo
2018-10-14
1
-0/+1
*
Fix a possible decref of a borrowed reference in symtable.c. (GH-9786)
Zackery Spytz
2018-10-11
1
-2/+4
*
bpo-32892: Use ast.Constant instead of specific constant AST types. (GH-9445)
Serhiy Storchaka
2018-09-27
1
-5/+0
*
bpo-34683: Make SyntaxError column offsets consistently 1-indexed (gh-9338)
Ammar Askar
2018-09-24
1
-7/+7
*
bpo-32836: Remove obsolete code from symtable pass (GH-5680)
Nitish Chandra
2018-02-26
1
-25/+0
*
bpo-10544: Disallow "yield" in comprehensions and generator expressions. (GH-...
Serhiy Storchaka
2018-02-04
1
-24/+7
*
bpo-10544: Deprecate "yield" in comprehensions and generator expressions. (GH...
Serhiy Storchaka
2017-12-01
1
-1/+30
*
bpo-28936: Detect lexically first syntax error first (#4097)
Ivan Levkivskyi
2017-10-26
1
-18/+16
*
bpo-30860: Consolidate stateful runtime globals. (#3397)
Eric Snow
2017-09-08
1
-0/+4
*
Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualT...
Serhiy Storchaka
2016-11-16
1
-2/+2
|
\
|
*
Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualT...
Serhiy Storchaka
2016-11-16
1
-2/+2
*
|
Issue #28100: Refactor error messages, patch by Ivan Levkivskyi
Christian Heimes
2016-09-23
1
-12/+8
*
|
Issue #28008: Implement PEP 530 -- asynchronous comprehensions.
Yury Selivanov
2016-09-09
1
-0/+6
*
|
Issue #27999: Make "global after use" a SyntaxError, and ditto for nonlocal.
Guido van Rossum
2016-09-09
1
-68/+36
*
|
Issue #28003: Implement PEP 525 -- Asynchronous Generators.
Yury Selivanov
2016-09-09
1
-2/+4
*
|
Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations.
Yury Selivanov
2016-09-09
1
-0/+56
*
|
Fix potential NULL pointer dereference in update_symbols()
Christian Heimes
2016-09-08
1
-1/+1
*
|
Merge typo fixes from 3.5
Martin Panter
2016-06-04
1
-1/+1
|
\
\
|
|
/
|
*
Fix typos in code comment and documentation
Martin Panter
2016-06-04
1
-1/+1
*
|
Add ast.Constant
Victor Stinner
2016-01-25
1
-0/+1
*
|
merge 3.5 (#25973)
Benjamin Peterson
2015-12-29
1
-8/+16
|
\
\
|
|
/
|
*
make recording and reporting errors and nonlocal and global directives more r...
Benjamin Peterson
2015-12-29
1
-8/+16
*
|
Issue #25923: Added more const qualifiers to signatures of static and private...
Serhiy Storchaka
2015-12-25
1
-2/+2
*
|
Issue #24965: Implement PEP 498 "Literal String Interpolation". Documentation...
Eric V. Smith
2015-09-19
1
-0/+8
|
/
*
Issue #24619: More tests; fix nits in compiler.c
Yury Selivanov
2015-07-22
1
-1/+1
*
Issue #19235: Add new RecursionError exception. Patch by Georg Brandl.
Yury Selivanov
2015-07-03
1
-2/+2
*
PEP 0492 -- Coroutines with async and await syntax. Issue #24017.
Yury Selivanov
2015-05-12
1
-6/+43
*
PEP 448: additional unpacking generalizations (closes #2292)
Benjamin Peterson
2015-05-06
1
-18/+8
*
remove the concept of an unoptimized function scope from the compiler, since ...
Benjamin Peterson
2015-04-28
1
-16/+0
*
remove dead *-import checking code (closes #24049)
Benjamin Peterson
2015-04-24
1
-31/+0
*
merge 3.3 (#19098)
Benjamin Peterson
2013-09-27
1
-2/+6
|
\
|
*
don't scale compiler stack frames if the recursion limit is huge (closes #19098)
Benjamin Peterson
2013-09-27
1
-2/+6
|
*
move definition to top of block
Benjamin Peterson
2013-05-17
1
-1/+2
|
*
complain about "global __class__" in a class body (closes #17983)
Benjamin Peterson
2013-05-15
1
-0/+6
*
|
Close #11619: The parser and the import machinery do not encode Unicode
Victor Stinner
2013-08-26
1
-15/+40
*
|
Issue #18408: ste_new() initialize all attributes before handling error
Victor Stinner
2013-07-11
1
-13/+9
*
|
rather than passing locals to the class body, just execute the class body in ...
Benjamin Peterson
2013-05-16
1
-6/+1
*
|
hide the __class__ closure from the class body (#12370)
Benjamin Peterson
2013-05-15
1
-15/+19
[next]