summaryrefslogtreecommitdiff
path: root/Python/symtable.c
Commit message (Expand)AuthorAgeFilesLines
* Add a missed PyErr_NoMemory() in symtable_new(). (GH-10576)Miss Islington (bot)2018-11-161-1/+3
* Fix a possible decref of a borrowed reference in symtable.c. (GH-9786)Miss Islington (bot)2018-10-101-2/+4
* bpo-32836: Remove obsolete code from symtable pass (GH-5680)Miss Islington (bot)2018-03-101-25/+0
* bpo-10544: Deprecate "yield" in comprehensions and generator expressions. (GH...Serhiy Storchaka2017-12-011-1/+30
* bpo-28936: Detect lexically first syntax error first (#4097)Ivan Levkivskyi2017-10-271-18/+16
* bpo-30860: Consolidate stateful runtime globals. (#3397)Eric Snow2017-09-071-0/+4
* Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualT...Serhiy Storchaka2016-11-161-2/+2
|\
| * Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualT...Serhiy Storchaka2016-11-161-2/+2
* | Issue #28100: Refactor error messages, patch by Ivan LevkivskyiChristian Heimes2016-09-231-12/+8
* | Issue #28008: Implement PEP 530 -- asynchronous comprehensions.Yury Selivanov2016-09-091-0/+6
* | Issue #27999: Make "global after use" a SyntaxError, and ditto for nonlocal.Guido van Rossum2016-09-091-68/+36
* | Issue #28003: Implement PEP 525 -- Asynchronous Generators.Yury Selivanov2016-09-081-2/+4
* | Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations.Yury Selivanov2016-09-081-0/+56
* | Fix potential NULL pointer dereference in update_symbols()Christian Heimes2016-09-091-1/+1
* | Merge typo fixes from 3.5Martin Panter2016-06-041-1/+1
|\ \ | |/
| * Fix typos in code comment and documentationMartin Panter2016-06-041-1/+1
* | Add ast.ConstantVictor Stinner2016-01-261-0/+1
* | merge 3.5 (#25973)Benjamin Peterson2015-12-291-8/+16
|\ \ | |/
| * make recording and reporting errors and nonlocal and global directives more r...Benjamin Peterson2015-12-291-8/+16
* | Issue #25923: Added more const qualifiers to signatures of static and private...Serhiy Storchaka2015-12-251-2/+2
* | Issue #24965: Implement PEP 498 "Literal String Interpolation". Documentation...Eric V. Smith2015-09-191-0/+8
|/
* Issue #24619: More tests; fix nits in compiler.cYury Selivanov2015-07-221-1/+1
* Issue #19235: Add new RecursionError exception. Patch by Georg Brandl.Yury Selivanov2015-07-031-2/+2
* PEP 0492 -- Coroutines with async and await syntax. Issue #24017.Yury Selivanov2015-05-111-6/+43
* PEP 448: additional unpacking generalizations (closes #2292)Benjamin Peterson2015-05-051-18/+8
* remove the concept of an unoptimized function scope from the compiler, since ...Benjamin Peterson2015-04-271-16/+0
* remove dead *-import checking code (closes #24049)Benjamin Peterson2015-04-241-31/+0
* merge 3.3 (#19098)Benjamin Peterson2013-09-261-2/+6
|\
| * don't scale compiler stack frames if the recursion limit is huge (closes #19098)Benjamin Peterson2013-09-261-2/+6
| * move definition to top of blockBenjamin Peterson2013-05-161-1/+2
| * complain about "global __class__" in a class body (closes #17983)Benjamin Peterson2013-05-151-0/+6
* | Close #11619: The parser and the import machinery do not encode UnicodeVictor Stinner2013-08-261-15/+40
* | Issue #18408: ste_new() initialize all attributes before handling errorVictor Stinner2013-07-111-13/+9
* | rather than passing locals to the class body, just execute the class body in ...Benjamin Peterson2013-05-161-6/+1
* | hide the __class__ closure from the class body (#12370)Benjamin Peterson2013-05-151-15/+19
* | unify some ast.argument's attrs; change Attribute column offset (closes #16795)Benjamin Peterson2013-03-181-6/+6
* | create NameConstant AST class for None, True, and False literals (closes #16619)Benjamin Peterson2012-12-061-0/+1
* | Issue #16546: merge fix from 3.3Mark Dickinson2012-11-251-6/+6
|\ \ | |/
| * Issue #16546: make ast.YieldFrom argument mandatory.Mark Dickinson2012-11-251-6/+6
* | Issue #5765: Merge from 3.3Nick Coghlan2012-11-041-31/+70
|\ \ | |/
| * Issue #5765: Apply a hard recursion limit in the compilerNick Coghlan2012-11-041-29/+68
* | point errors related to nonlocals and globals to the statement declaring them...Benjamin Peterson2012-10-311-8/+49
|/
* check return value of _PyUnicode_AsStringBenjamin Peterson2012-10-311-2/+6
* Cleanup 'k' when the creation of PySTEntryObject fails. ad3824a90261 used to ...Christian Heimes2012-09-121-1/+3
|\
| * Cleanup 'k' when the creation of PySTEntryObject fails. ad3824a90261 used to ...Christian Heimes2012-09-121-1/+3
* | Partly revert ad3824a90261 and add comment about reference ownershipChristian Heimes2012-09-121-2/+1
|\ \ | |/
| * Partly revert ad3824a90261 and add comment about reference ownershipChristian Heimes2012-09-121-2/+1
* | Closed reference leak of variable 'k' in function ste_new which wasn't decref...Christian Heimes2012-09-101-1/+2
|\ \ | |/
| * Closed reference leak of variable 'k' in function ste_new which wasn't decref...Christian Heimes2012-09-101-1/+2
* | Close #14857: fix regression in references to PEP 3135 implicit __class__ clo...Nick Coghlan2012-05-271-11/+8