- b86ed8e bpo-43797: Improve syntax error for invalid comparisons (#25317) by Pablo Galindo · 4 years, 4 months ago
- 75a06f0 bpo-43798: Add source location attributes to alias (GH-25324) by Matthew Suozzo · 4 years, 4 months ago
- d27f8d2 bpo-43244: Rename pycore_ast.h functions to _PyAST_xxx() (GH-25252) by Victor Stinner · 4 years, 4 months ago
- 8efad61 bpo-41064: Improve syntax error for invalid usage of '**' in f-strings (GH-25006) by Pablo Galindo · 4 years, 5 months ago
- 6af528b bpo-43244: Fix test_peg_generators on Windows (GH-24913) by Victor Stinner · 4 years, 5 months ago
- 08fb8ac bpo-42128: Add 'missing :' syntax error message to match statements (GH-24733) by Pablo Galindo · 4 years, 5 months ago
- c994ffe bpo-11717: fix ssize_t redefinition error when targeting 32bit Windows app (GH-24479) by Jozef Grajciar · 4 years, 5 months ago
- 145bf26 bpo-42128: Structural Pattern Matching (PEP 634) (GH-22917) by Brandt Bucher · 4 years, 5 months ago
- 206cbda bpo-43149: Improve error message for exception group without parentheses (GH-24467) by Pablo Galindo · 4 years, 6 months ago
- d4e6ed7 bpo-43121: Fix incorrect SyntaxError message for missing comma (GH-24436) by Pablo Galindo · 4 years, 6 months ago
- 58fb156 bpo-42997: Improve error message for missing : before suites (GH-24292) by Pablo Galindo · 4 years, 6 months ago
- 835f14f bpo-43017: Improve error message for unparenthesised tuples in comprehensions (GH24314) by Pablo Galindo · 4 years, 6 months ago
- 07dcd86 bpo-42860: Remove type error from grammar (GH-24156) by Lysandros Nikolaou · 4 years, 7 months ago
- 2ea320d bpo-40631: Disallow single parenthesized star target (GH-24027) by Lysandros Nikolaou · 4 years, 7 months ago
- 43c4fb6 bpo-30858: Improve error location for expressions with assignments (GH-23753) by Pablo Galindo · 4 years, 8 months ago
- 9bdc40e Refactor the grammar to match the language specification docs (GH-23574) by Pablo Galindo · 4 years, 8 months ago
- b0aba1f bpo-42381: Allow walrus in set literals and set comprehensions (GH-23332) by Pablo Galindo · 4 years, 9 months ago
- cae6018 bpo-42316: Allow unparenthesized walrus operator in indexes (GH-23317) by Lysandros Nikolaou · 4 years, 9 months ago
- cb3e5ed bpo-42374: Allow unparenthesized walrus in genexps (GH-23319) by Lysandros Nikolaou · 4 years, 9 months ago
- 02cdfc9 bpo-42218: Correctly handle errors in left-recursive rules (GH-23065) by Lysandros Nikolaou · 4 years, 9 months ago
- 06f8c33 bpo-42214: Fix check for NOTEQUAL token in the PEG parser for the barry_as_flufl rule (GH-23048) by Pablo Galindo · 4 years, 9 months ago
- 15acc4e bpo-41659: Disallow curly brace directly after primary (GH-22996) by Lysandros Nikolaou · 4 years, 9 months ago
- bca7014 bpo-42123: Run the parser two times and only enable invalid rules on the second run (GH-22111) by Lysandros Nikolaou · 4 years, 10 months ago
- 2e5ca9e bpo-41746: Cast to typed seqs in CHECK macros to avoid type erasure (GH-22864) by Lysandros Nikolaou · 4 years, 10 months ago
- 48f305f bpo-41979: Accept star-unpacking on with-item targets (GH-22611) by Batuhan Taskaya · 4 years, 10 months ago
- a5634c4 bpo-41746: Add type information to asdl_seq objects (GH-22223) by Pablo Galindo · 5 years ago
- 315a61f bpo-41697: Correctly handle KeywordOrStarred when parsing arguments in the parser (GH-22077) by Pablo Galindo · 5 years ago
- 4a97b15 bpo-41690: Use a loop to collect args in the parser instead of recursion (GH-22053) by Pablo Galindo · 5 years ago
- 1ac0cbc bpo-41215: Don't use NULL by default in the PEG parser keyword list (GH-21355) by Pablo Galindo · 5 years ago
- c8f29ad bpo-40769: Allow extra surrounding parentheses for invalid annotated assignment rule (GH-20387) by Batuhan Taskaya · 5 years ago
- 4b85e60 bpo-41119: Output correct error message for list/tuple followed by colon (GH-21160) by Lysandros Nikolaou · 5 years ago
- 6c4e0bd bpo-41060: Avoid SEGFAULT when calling GET_INVALID_TARGET in the grammar (GH-21020) by Lysandros Nikolaou · 5 years ago
- 01ece63 bpo-40334: Produce better error messages on invalid targets (GH-20106) by Lysandros Nikolaou · 5 years ago
- 1ed83ad bpo-40939: Remove the old parser (GH-20768) by Pablo Galindo · 5 years ago
- 9e5d30c bpo-39882: Py_FatalError() logs the function name (GH-18819) by Victor Stinner · 5 years ago
- 09415ff fix warnings by adding more const (GH-12924) by Inada Naoki · 6 years ago
- f2cf1e3 bpo-36623: Clean parser headers and include files (GH-12253) by Pablo Galindo · 6 years ago
- dcfcd14 bpo-35766: Merge typed_ast back into CPython (GH-11645) by Guido van Rossum · 7 years ago
- 9932a22 bpo-33416: Add end positions to Python AST (GH-11605) by Ivan Levkivskyi · 7 years ago
- 2a65ecb Issue #26130: Remove redundant variable 's' from Parser/parser.c by Berker Peksag · 9 years ago
- c679227 Issue #1772673: The type of `char*` arguments now changed to `const char*`. by Serhiy Storchaka · 12 years ago
- 9ed5f27 Issue #18722: Remove uses of the "register" keyword in C code. by Antoine Pitrou · 12 years ago
- f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 15 years ago
- e3944a5 The BDFL has retired! Long live the FLUFL (Friendly Language Uncle For Life)! by Brett Cannon · 16 years ago
- 9aebc61 Merged revisions 67030-67031 via svnmerge from by Benjamin Peterson · 17 years ago
- 4d6ec85 Merged revisions 61952-61953 via svnmerge from by Christian Heimes · 17 years ago
- 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 19 years ago
- 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 19 years ago
- 45aecf4 Checkpoint. 218 tests are okay; 53 are failing. Done so far: by Guido van Rossum · 19 years ago
- 49c5da1 Patch #1440601: Add col_offset attribute to AST nodes. by Martin v. Löwis · 19 years ago
- 8ae1295 Make 'as' an actual keyword when with's future statement is used. Not by Thomas Wouters · 19 years ago
- 34aa7ba from __future__ import with_statement addon for 'with', mostly written by Neal. by Thomas Wouters · 19 years ago
- c155dd4 Disable the parser hacks that allowed the "yield" keyword to be enabled by Neil Schemenauer · 23 years ago
- 1ca1296 The parser doesn't need its own implementation of assert, and having its by Tim Peters · 24 years ago
- 3c03323 Fis SF bug #442647: not all forms of legal future statements were by Guido van Rossum · 24 years ago
- b09f7ed Preliminary support for "from __future__ import generators" to enable by Guido van Rossum · 24 years ago
- e3c3b27 Fix a bug in stack overflow error handling. This fixes half of Bug #115555. by Guido van Rossum · 25 years ago
- 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 25 years ago
- 23c9e00 Mass ANSIfication. by Thomas Wouters · 25 years ago
- 85f3639 Create two new exceptions: IndentationError and TabError. These are by Fred Drake · 25 years ago
- dbd9ba6 Nuke all remaining occurrences of Py_PROTO and Py_FPROTO. by Tim Peters · 25 years ago
- ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 25 years ago
- fd71b9e Change copyright notice. by Guido van Rossum · 25 years ago
- 9498806 Add new parser error code, E_OVERFLOW. This error is returned when by Jeremy Hylton · 25 years ago
- 86bea46 Another directory quickly renamed. by Guido van Rossum · 28 years ago
- 408027e Rename DEBUG macro to Py_DEBUG by Guido van Rossum · 29 years ago
- d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 29 years ago
- b9f8d6e Added 1995 to copyright message. by Guido van Rossum · 31 years ago
- 588633d Parser/tokenizer.c (tok_nextc): zap tok->buf after freeing; by Guido van Rossum · 31 years ago
- 1d5735e Merge back to main trunk by Guido van Rossum · 31 years ago
- 9bfef44 * Changed all copyright messages to include 1993. by Guido van Rossum · 32 years ago
- cf7448b Correct debug printing code by Guido van Rossum · 33 years ago
- bab9d03 Copyright for 1992 added by Guido van Rossum · 33 years ago
- f70e43a Added copyright notice. by Guido van Rossum · 34 years ago
- 3f5da24 "Compiling" version by Guido van Rossum · 35 years ago
- 99f02d4 Free parse tree when deleting parser. by Guido van Rossum · 35 years ago
- 85a5fbb Initial revision by Guido van Rossum · 35 years ago