summaryrefslogtreecommitdiffstats
path: root/Parser/pegen/pegen.c
Commit message (Expand)AuthorAgeFilesLines
* [3.9] bpo-42214: Fix check for NOTEQUAL token in the PEG parser for the barry...Pablo Galindo2020-10-311-2/+1
* [3.9] bpo-42123: Run the parser two times and only enable invalid rules on th...Lysandros Nikolaou2020-10-281-0/+13
* bpo-42150: Avoid buffer overflow in the new parser (GH-22978)Miss Skeleton (bot)2020-10-251-1/+2
* [3.9] bpo-41697: Correctly handle KeywordOrStarred when parsing arguments in ...Pablo Galindo2020-09-031-8/+9
* [3.9] bpo-41690: Use a loop to collect args in the parser instead of recursio...Pablo Galindo2020-09-021-0/+35
* [3.9] Validate the AST produced by the parser in debug mode (GH-21643) (GH-21...Pablo Galindo2020-07-271-0/+9
* bpo-41215: Make assertion in the new parser more strict (GH-21364)Miss Islington (bot)2020-07-061-1/+1
* [3.9] bpo-41215: Don't use NULL by default in the PEG parser keyword list (GH...Pablo Galindo2020-07-061-2/+5
* [3.9] bpo-35975: Only use cf_feature_version if PyCF_ONLY_AST in cf_flags (#2...Guido van Rossum2020-06-281-2/+3
* [3.9] bpo-41076: Pre-feed the parser with the f-string expression location (G...Pablo Galindo2020-06-281-0/+3
* bpo-41084: Adjust message when an f-string expression causes a SyntaxError (G...Miss Islington (bot)2020-06-271-0/+21
* bpo-40958: Avoid 'possible loss of data' warning on Windows (GH-20970)Miss Islington (bot)2020-06-201-1/+1
* [3.9] bpo-40334: Produce better error messages on invalid targets (GH-20106) ...Lysandros Nikolaou2020-06-191-8/+20
* bpo-40958: Avoid buffer overflow in the parser when indexing the current line...Miss Islington (bot)2020-06-161-11/+9
* [3.9] Improve readability and style in parser files (GH-20884) (GH-20885)Pablo Galindo2020-06-151-21/+30
* bpo-40903: Handle multiple '=' in invalid assignment rules in the PEG parser ...Miss Islington (bot)2020-06-081-0/+1
* bpo-40880: Fix invalid read in newline_in_string in pegen.c (GH-20666)Miss Islington (bot)2020-06-061-2/+2
* [3.9] Backport GH-20440: Set p->error_indicator in more places (GH-20457)Lysandros Nikolaou2020-05-271-0/+5
* [3.9] Backport GH-20370 and GH-20436: Soft keywords (GH-20458)Lysandros Nikolaou2020-05-271-1/+33
* bpo-40750: Support -d flag in the new parser (GH-20340)Miss Islington (bot)2020-05-251-0/+1
* Use Py_ssize_t for the column number in the PEG support code (GH-20341)Miss Islington (bot)2020-05-241-1/+1
* bpo-40334: Produce better error messages for non-parenthesized genexps (GH-20...Miss Islington (bot)2020-05-221-0/+21
* bpo-40334: Reproduce error message for type comments on bare '*' in the new p...Lysandros Nikolaou2020-05-181-20/+20
* bpo-40334: Correctly identify invalid target in assignment errors (GH-20076)Pablo Galindo2020-05-151-0/+46
* bpo-40619: Correctly handle error lines in programs without file mode (GH-20090)Pablo Galindo2020-05-141-25/+5
* bpo-40334: Always show the caret on SyntaxErrors (GH-20050)Lysandros Nikolaou2020-05-131-26/+35
* bpo-40593: Improve syntax errors for invalid characters in source code. (GH-2...Serhiy Storchaka2020-05-121-3/+0
* bpo-40585: Normalize errors messages in codeop when comparing them (GH-20030)Pablo Galindo2020-05-111-0/+6
* bpo-40334: Fix error location upon parsing an invalid string literal (GH-19962)Lysandros Nikolaou2020-05-071-7/+3
* bpo-40246: Revert reporting of invalid string prefixes (GH-19888)Lysandros Nikolaou2020-05-041-3/+0
* bpo-40491: Fix typo in syntax error for numeric literals (GH-19893)Shantanu2020-05-041-1/+1
* bpo-40334: Set error_indicator in _PyPegen_raise_error (GH-19887)Lysandros Nikolaou2020-05-041-0/+1
* Ensure that tok->type_comments is set on every path (GH-19828)Guido van Rossum2020-05-011-3/+2
* bpo-40334: Improve column offsets for thrown syntax errors by Pegen (GH-19782)Batuhan Taskaya2020-05-011-80/+47
* bpo-40334: Add support for feature_version in new PEG parser (GH-19827)Lysandros Nikolaou2020-05-011-4/+17
* bpo-40334: Support type comments (GH-19780)Guido van Rossum2020-04-301-4/+147
* bpo-40334: refactor and cleanup for the PEG generators (GH-19775)Pablo Galindo2020-04-291-46/+0
* bpo-40334: Disallow invalid single statements in the new parser (GH-19774)Lysandros Nikolaou2020-04-291-0/+51
* bpo-40334: Explicitly cast to int in pegen.c to fix a compiler warning (GH-19...Pablo Galindo2020-04-291-4/+4
* bpo-40334: Catch E_EOF error, when the tokenizer returns ERRORTOKEN (GH-19743)Lysandros Nikolaou2020-04-281-3/+6
* bpo-40334: Support PyPARSE_DONT_IMPLY_DEDENT in the new parser (GH-19736)Pablo Galindo2020-04-271-1/+1
* bpo-40334: Support CO_FUTURE_BARRY_AS_BDFL in the new parser (GH-19721)Pablo Galindo2020-04-271-9/+52
* Use Py_ssize_t instead of ssize_t (GH-19685)Pablo Galindo2020-04-241-1/+1
* bpo-40334: Improve various PEG-Parser related stuff (GH-19669)Lysandros Nikolaou2020-04-231-27/+49
* bpo-40334: Fix build errors and warnings in test_peg_generator (GH-19672)Pablo Galindo2020-04-231-1/+11
* bpo-40334: Don't downcast from Py_ssize_t to int (GH-19671)Pablo Galindo2020-04-231-21/+21
* bpo-40334: PEP 617 implementation: New PEG parser for CPython (GH-19503)Pablo Galindo2020-04-221-0/+1865