| Commit message (Expand) | Author | Age | Files | Lines |
* | bpo-15999: Clean up of handling boolean arguments. (GH-15610) | Serhiy Storchaka | 2019-09-01 | 1 | -8/+3 |
|
|
* | bpo-37268: Add deprecation notice and a DeprecationWarning for the parser mod... | Pablo Galindo | 2019-07-30 | 1 | -0/+6 |
|
|
* | bpo-37253: Add _PyCompilerFlags_INIT macro (GH-14018) | Victor Stinner | 2019-06-13 | 1 | -2/+1 |
|
|
* | bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G... | Jeroen Demeyer | 2019-05-31 | 1 | -2/+2 |
|
|
* | fix warnings by adding more const (GH-12924) | Inada Naoki | 2019-04-23 | 1 | -2/+1 |
|
|
* | bpo-36440: include node names in ParserError messages, instead of numeric IDs... | tyomitch | 2019-04-03 | 1 | -6/+11 |
|
|
* | bpo-36256: Fix bug in parsermodule when parsing if statements (GH-12477) | Pablo Galindo | 2019-03-21 | 1 | -5/+17 |
|
|
* | Remove d_initial from the parser as it is unused (GH-12212) | tyomitch | 2019-03-09 | 1 | -1/+1 |
|
|
* | bpo-35975: Support parsing earlier minor versions of Python 3 (GH-12086) | Guido van Rossum | 2019-03-07 | 1 | -1/+4 |
|
|
* | bpo-35766: Merge typed_ast back into CPython (GH-11645) | Guido van Rossum | 2019-01-31 | 1 | -0/+6 |
|
|
* | bpo-33416: Add end positions to Python AST (GH-11605) | Ivan Levkivskyi | 2019-01-22 | 1 | -1/+1 |
|
|
* | bpo-33012: Fix invalid function cast warnings with gcc 8. (GH-6749) | Serhiy Storchaka | 2018-11-27 | 1 | -14/+14 |
|
|
* | bpo-35177, Python-ast.h: Fix "Yield" compiler warning (GH-10664) | Victor Stinner | 2018-11-22 | 1 | -0/+1 |
|
|
* | bpo-35177: Add dependencies between header files (GH-10361) | Victor Stinner | 2018-11-11 | 1 | -3/+2 |
|
|
* | bpo-33308: Fix a crash in the parser module when convert an ST object. (#6519) | Serhiy Storchaka | 2018-04-18 | 1 | -3/+3 |
|
|
* | bpo-23699: Use a macro to reduce boilerplate code in rich comparison function... | stratakis | 2017-11-02 | 1 | -32/+2 |
|
|
* | bpo-30070: Fixed leaks and crashes in errors handling in the parser module. (... | Serhiy Storchaka | 2017-04-19 | 1 | -52/+79 |
|
|
* | Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever | Serhiy Storchaka | 2017-01-23 | 1 | -2/+1 |
|
|
* | Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSize | Serhiy Storchaka | 2016-11-20 | 1 | -2/+2 |
|
|
* | replace custom validation logic in the parse module with a simple DFA validat... | Benjamin Peterson | 2016-06-02 | 1 | -2452/+93 |
|
|
* | Issue #25923: Added more const qualifiers to signatures of static and private... | Serhiy Storchaka | 2015-12-25 | 1 | -5/+5 |
|
|
* | Issue #25923: Added the const qualifier to static constant arrays. | Serhiy Storchaka | 2015-12-25 | 1 | -2/+2 |
|
|
* | Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size. | Serhiy Storchaka | 2015-12-19 | 1 | -1/+1 |
|
|
* | Issue #24791: Fix grammar regression for call syntax: 'g(*a or b)'. | Yury Selivanov | 2015-08-05 | 1 | -3/+6 |
|
|
* | allow test node after ** in calls (closes #24176) | Benjamin Peterson | 2015-05-16 | 1 | -1/+1 |
|
|
* | PEP 0492 -- Coroutines with async and await syntax. Issue #24017. | Yury Selivanov | 2015-05-12 | 1 | -12/+103 |
|
|
* | PEP 448: additional unpacking generalizations (closes #2292) | Benjamin Peterson | 2015-05-06 | 1 | -124/+141 |
|
|
* | Removed unintentional trailing spaces in non-external and non-generated C files. | Serhiy Storchaka | 2015-03-18 | 1 | -1/+1 |
|
|
* | (Merge 3.3) parser: fix usage of Py_BuildValue() to build a parser error | Victor Stinner | 2014-01-02 | 1 | -1/+1 |
|\ |
|
| * | parser: fix usage of Py_BuildValue() to build a parser error | Victor Stinner | 2014-01-02 | 1 | -1/+1 |
|
|
| * | Issue #15989: Fix several occurrences of integer overflow | Serhiy Storchaka | 2013-01-19 | 1 | -5/+19 |
| |\ |
|
* | | | Close #11619: The parser and the import machinery do not encode Unicode | Victor Stinner | 2013-08-26 | 1 | -18/+31 |
|
|
* | | | Issue #18408: Fix typo in build_node_tree() of the parser module | Victor Stinner | 2013-07-16 | 1 | -1/+1 |
|
|
* | | | Issue #18408: parser module: fix error handling in node2tuple() | Victor Stinner | 2013-07-11 | 1 | -28/+52 |
|
|
* | | | Issue #18408: Fix parser.sequence2st() and parser.tuple2st(): raise MemoryError | Victor Stinner | 2013-07-11 | 1 | -4/+15 |
|
|
* | | | Issue #15989: Fix several occurrences of integer overflow | Serhiy Storchaka | 2013-01-14 | 1 | -5/+19 |
|/ / |
|
* | | Issue #16714: use 'raise' exceptions, don't 'throw'. | Andrew Svetlov | 2012-12-18 | 1 | -3/+3 |
|\ \
| |/ |
|
| * | Issue #16714: use 'raise' exceptions, don't 'throw'. | Andrew Svetlov | 2012-12-18 | 1 | -3/+3 |
|
|
* | | Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors... | Antoine Pitrou | 2012-08-15 | 1 | -32/+16 |
|\ \
| |/ |
|
| * | Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors... | Antoine Pitrou | 2012-08-15 | 1 | -5/+13 |
|
|
* | | MERGE: Closes #15512: Correct __sizeof__ support for parser | Jesus Cea | 2012-08-03 | 1 | -1/+12 |
|\ \
| |/ |
|
| * | Closes #15512: Correct __sizeof__ support for parser | Jesus Cea | 2012-08-03 | 1 | -1/+12 |
|
|
* | | Issue #14741: Merge fix from 3.2. | Mark Dickinson | 2012-05-07 | 1 | -5/+1 |
|\ \
| |/ |
|
| * | Issue #14741: Fix missing support for ellipsis in parser module. | Mark Dickinson | 2012-05-07 | 1 | -5/+1 |
|
|
* | | Issue #14697: Merge fix from 3.2. | Mark Dickinson | 2012-05-07 | 1 | -21/+79 |
|\ \
| |/ |
|
| * | Issue #14697: Fix missing parser module support for set displays and set comp... | Mark Dickinson | 2012-05-07 | 1 | -21/+79 |
|
|
* | | Issue #14701: Merge fix from 3.2. | Mark Dickinson | 2012-05-07 | 1 | -12/+11 |
|\ \
| |/ |
|
| * | Issue #14701: Add missing support for 'raise ... from' in parser module. | Mark Dickinson | 2012-05-07 | 1 | -12/+11 |
|
|
* | | Issue #14696: Merge from 3.2 | Mark Dickinson | 2012-04-29 | 1 | -5/+36 |
|\ \
| |/ |
|
| * | Issue #14696: Fix parser module to understand 'nonlocal' declarations. | Mark Dickinson | 2012-04-29 | 1 | -5/+36 |
|
|