summaryrefslogtreecommitdiffstats
path: root/Parser
Commit message (Expand)AuthorAgeFilesLines
* bpo-45439: Rename _PyObject_CallNoArg() to _PyObject_CallNoArgs() (GH-28891)Victor Stinner2021-10-111-1/+1
* bpo-45408: Don't override previous tokenizer errors in the second parser pass...Pablo Galindo Salgado2021-10-071-1/+4
* Fix typos in the Objects directory (GH-28766)Christian Clauss2021-10-061-1/+1
* Optimized code format (GH-28599)Rajendra arora2021-09-281-3/+1
* Fixed typo in "decclarations" (GH-28578)Rajendra arora2021-09-281-1/+1
* bpo-43914: Correctly highlight SyntaxError exceptions for invalid generator e...Pablo Galindo Salgado2021-09-273-6/+18
* Extract visitors from the grammar nodes and call makers in the peg generator ...Pablo Galindo Salgado2021-09-051-167/+167
* bpo-44947: Refine the syntax error for trailing commas in import statements (...Pablo Galindo Salgado2021-08-181-5/+8
* Update pegen to use the latest upstream developments (GH-27586)Pablo Galindo Salgado2021-08-123-41/+55
* bpo-44885: Correct the ast locations of f-strings with format specs and repea...Pablo Galindo Salgado2021-08-121-38/+30
* bpo-44854: Remove trailing whitespaces (GH-27689)Serhiy Storchaka2021-08-091-1/+1
* bpo-44838: Refine the custom syntax errors for invalid 'if' expressions (GH-2...Pablo Galindo Salgado2021-08-051-553/+610
* bpo-44792: Improve syntax errors for if expressions (GH-27506)Miguel Brito2021-08-021-0/+33
* bpo-34013: Don't consider a grouped expression when reporting legacy print sy...Pablo Galindo Salgado2021-08-011-5/+7
* Divide the grammar into sections to improve readability (GH-27502)Pablo Galindo Salgado2021-07-311-6585/+6583
* Update URLs in comments and metadata to use HTTPS (GH-27458)Noah Kantrowitz2021-07-301-1/+1
* bpo-34013: Move the Python 2 hints from the exception constructor to the pars...Pablo Galindo Salgado2021-07-271-7/+7
* bpo-34013: Generalize the invalid legacy statement error message (GH-27389)Pablo Galindo Salgado2021-07-273-243/+322
* bpo-43950: Distinguish errors happening on character offset decoding (GH-27217)Batuhan Taskaya2021-07-201-5/+13
* Remove unnecessary 'invalid_primary' rule in the parser (GH-27186)Pablo Galindo Salgado2021-07-161-304/+237
* bpo-44317: Improve tokenizer errors with more informative locations (GH-26555)Pablo Galindo Salgado2021-07-101-18/+54
* bpo-43950: Print columns in tracebacks (PEP 657) (GH-26958)Ammar Askar2021-07-042-23/+24
* bpo-40528: fix is_simple(sum)s behavior for attributes (GH-26918)Batuhan Taskaya2021-06-271-6/+10
* bpo-44456: Improve the syntax error when mixing keyword and positional patter...Pablo Galindo2021-06-243-464/+638
* bpo-40528: move asdl identifier collection to the new metadata system (GH-26858)Batuhan Taskaya2021-06-241-49/+51
* bpo-40528: Implement a metadata system for ASDL Generator (GH-20193)Batuhan Taskaya2021-06-221-24/+75
* bpo-44409: Fix error location in tokenizer errors that happen during initiali...Pablo Galindo2021-06-141-0/+1
* Fix typos in multiple files (GH-26689)Binbin2021-06-131-3/+3
* bpo-44396: Update multi-line-start location when reallocating tokenizer buffe...Pablo Galindo2021-06-121-0/+5
* Add more const modifiers. (GH-26691)Serhiy Storchaka2021-06-123-15/+15
* bpo-44368: Improve syntax errors with invalid as pattern targets (GH-26632)Pablo Galindo2021-06-101-213/+313
* bpo-44385: Remove unused grammar rules (GH-26655)Lysandros Nikolaou2021-06-101-1256/+791
* bpo-44368: Ensure we don't raise incorrect custom syntax errors with soft key...Pablo Galindo2021-06-091-4/+11
* bpo-44345: Fix 'generated by' comment in parser.c (GH-26615)Akira Nonaka2021-06-091-1/+1
* bpo-44349: Fix edge case when displaying text from files with encoding in syn...Pablo Galindo2021-06-081-2/+5
* bpo-43833: Emit warnings for numeric literals followed by keyword (GH-25466)Serhiy Storchaka2021-06-081-0/+128
* bpo-44335: Ensure the tokenizer doesn't go into Python with the error set (GH...Pablo Galindo2021-06-081-3/+17
* bpo-44335: Fix a regression when identifying invalid characters in syntax err...Pablo Galindo2021-06-081-1/+3
* fix: use unambiguous punction in 'invalid escape sequence' message (GH-26582)Ned Batchelder2021-06-081-2/+2
* bpo-44305: Improve syntax error for try blocks without except or finally (GH-...Pablo Galindo2021-06-031-269/+358
* bpo-11105: Do not crash when compiling recursive ASTs (GH-20594)Batuhan Taskaya2021-06-031-4/+15
* bpo-44273: Improve syntax error message for assigning to "..." (GH-26477)Serhiy Storchaka2021-06-011-1/+1
* bpo-44201: Avoid side effects of "invalid_*" rules in the REPL (GH-26298)Pablo Galindo2021-05-223-0/+22
* bpo-44180: Fix edge cases in invalid assigment rules in the parser (GH-26283)Pablo Galindo2021-05-213-1172/+1403
* bpo-44180: Report generic syntax errors in the furthest position reached in t...Pablo Galindo2021-05-211-1/+6
* bpo-44168: Fix error message in the parser for keyword arguments for invalid ...Pablo Galindo2021-05-191-541/+584
* bpo-44143: Fix crash in the parser when raising tokenizer errors with an exce...Pablo Galindo2021-05-151-0/+1
* bpo-43149: Correct the syntax error message for multiple exception types (GH-...Pablo Galindo2021-05-081-1/+1
* bpo-43822: Prioritize tokenizer errors over custom syntax errors when raising...Pablo Galindo2021-05-041-0/+3
* bpo-43892: Validate the first term of complex literal value patterns (GH-25735)Brandt Bucher2021-04-303-397/+526