summaryrefslogtreecommitdiff
path: root/Modules/parsermodule.c
Commit message (Expand)AuthorAgeFilesLines
* Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSizeSerhiy Storchaka2016-11-201-2/+2
* replace custom validation logic in the parse module with a simple DFA validat...Benjamin Peterson2016-06-021-2452/+93
* Issue #25923: Added more const qualifiers to signatures of static and private...Serhiy Storchaka2015-12-251-5/+5
* Issue #25923: Added the const qualifier to static constant arrays.Serhiy Storchaka2015-12-251-2/+2
* Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size.Serhiy Storchaka2015-12-191-1/+1
* Issue #24791: Fix grammar regression for call syntax: 'g(*a or b)'.Yury Selivanov2015-08-051-3/+6
* allow test node after ** in calls (closes #24176)Benjamin Peterson2015-05-161-1/+1
* PEP 0492 -- Coroutines with async and await syntax. Issue #24017.Yury Selivanov2015-05-111-12/+103
* PEP 448: additional unpacking generalizations (closes #2292)Benjamin Peterson2015-05-051-124/+141
* Removed unintentional trailing spaces in non-external and non-generated C files.Serhiy Storchaka2015-03-181-1/+1
* (Merge 3.3) parser: fix usage of Py_BuildValue() to build a parser errorVictor Stinner2014-01-021-53/+101
|\
| * Close #11619: The parser and the import machinery do not encode UnicodeVictor Stinner2013-08-261-18/+31
| * Issue #18408: Fix typo in build_node_tree() of the parser moduleVictor Stinner2013-07-171-1/+1
| * Issue #18408: parser module: fix error handling in node2tuple()Victor Stinner2013-07-121-28/+52
| * Issue #18408: Fix parser.sequence2st() and parser.tuple2st(): raise MemoryErrorVictor Stinner2013-07-121-4/+15
* | parser: fix usage of Py_BuildValue() to build a parser errorVictor Stinner2014-01-021-1/+1
|/
* Issue #15989: Fix several occurrences of integer overflowSerhiy Storchaka2013-01-191-76/+99
|\
| * Issue #16714: use 'raise' exceptions, don't 'throw'.Andrew Svetlov2012-12-181-71/+80
| |\ |/ /
| * Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors...Antoine Pitrou2012-08-151-32/+16
| |\
| * \ MERGE: Closes #15512: Correct __sizeof__ support for parserJesus Cea2012-08-031-31/+64
| |\ \
| | * \ Issue #14741: Merge fix from 3.2.Mark Dickinson2012-05-071-5/+1
| | |\ \
| | * \ \ Issue #14697: Merge fix from 3.2.Mark Dickinson2012-05-071-21/+79
| | |\ \ \
| | * \ \ \ Issue #14701: Merge fix from 3.2.Mark Dickinson2012-05-071-31/+64
| | |\ \ \ \
| | | * \ \ \ Issue #14696: Merge from 3.2Mark Dickinson2012-04-291-5/+36
| | | |\ \ \ \
| | | * \ \ \ \ Issue #9154: Merge fix from 3.2.Mark Dickinson2012-04-291-31/+64
| | | |\ \ \ \ \
| | | | * | | | | Implement PEP 380 - 'yield from' (closes #11682)Nick Coghlan2012-01-131-27/+55
| | | | * | | | | Rename _Py_identifier to _Py_IDENTIFIER.Martin v. Löwis2011-10-141-3/+3
| | | | * | | | | Use identifier API for PyObject_GetAttrString.Martin v. Löwis2011-10-101-3/+6
| | | | * | | | | always clear parser errorBenjamin Peterson2011-06-051-1/+1
| | | | * | | | | only clear the parser error if it's set (closes #12264)Benjamin Peterson2011-06-041-2/+3
| | | | * | | | | Issue #10785: Store the filename as Unicode in the Python parser.Victor Stinner2011-04-051-0/+1
* | | | | | | | | Issue #16714: use 'raise' exceptions, don't 'throw'.Andrew Svetlov2012-12-181-3/+3
| |_|_|_|_|_|_|/ |/| | | | | | |
* | | | | | | | Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors...Antoine Pitrou2012-08-151-5/+13
|/ / / / / / /
* | | | | | | Closes #15512: Correct __sizeof__ support for parserJesus Cea2012-08-031-1/+12
| |_|_|_|_|/ |/| | | | |
* | | | | | Issue #14741: Fix missing support for ellipsis in parser module.Mark Dickinson2012-05-071-5/+1
| |_|_|_|/ |/| | | |
* | | | | Issue #14697: Fix missing parser module support for set displays and set comp...Mark Dickinson2012-05-071-21/+79
|/ / / /
* | | | Issue #14701: Add missing support for 'raise ... from' in parser module.Mark Dickinson2012-05-071-12/+11
| |_|/ |/| |
* | | Issue #14696: Fix parser module to understand 'nonlocal' declarations.Mark Dickinson2012-04-291-5/+36
|/ /
* | Issue #9154: Fix parser module to understand function annotations.Mark Dickinson2012-04-291-57/+71
|/
* #11515: Merge with 3.1.Ezio Melotti2011-03-151-1/+1
|\
| * #11515: fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-151-1/+1
| * Merged revisions 82555 via svnmerge fromMark Dickinson2010-07-041-6/+6
| * Merged revisions 82552-82553 via svnmerge fromMark Dickinson2010-07-041-3/+4
| * Merged revisions 82537 via svnmerge fromMark Dickinson2010-07-041-8/+9
| * Recorded merge of revisions 81032 via svnmerge fromAntoine Pitrou2010-05-091-107/+107
* | Issue #6697: Fixed instances of _PyUnicode_AsString() result not checked for ...Alexander Belopolsky2010-12-081-0/+13
* | Remove redundant includes of headers that are already included by Python.h.Georg Brandl2010-11-301-2/+0
* | Issue #9130: Validate ellipsis tokens in relative imports.Mark Dickinson2010-07-041-6/+6
* | Issue #9130: Fix validation of relative imports in parser module.Mark Dickinson2010-07-041-3/+4
* | Issue #9128: Fix validation of class decorators in parser module.Mark Dickinson2010-07-041-8/+9