index
:
cpython
3.10
3.11
3.12
3.13
3.14
3.9
main
The Python programming language
Aslak Raanes
about
summary
refs
log
tree
commit
diff
stats
homepage
log msg
author
committer
range
path:
root
/
Lib
/
test
/
test_syntax.py
Commit message (
Expand
)
Author
Age
*
gh-101400: Fix incorrect lineno in exception message on continue/break which ...
Dong-hee Na
2023-01-30
*
gh-100050: Fix an assertion error when raising unclosed parenthesis errors in...
Pablo Galindo Salgado
2022-12-06
*
gh-90994: Improve error messages upon call arguments syntax errors (GH-96893)
Lysandros Nikolaou
2022-11-21
*
gh-99211: Point to except/except* on syntax errors when mixing them (GH-99215)
Lysandros Nikolaou
2022-11-20
*
gh-99153: set location on SyntaxError for try with both except and except* (G...
Irit Katriel
2022-11-06
*
gh-98931: Improve error message when the user types 'import x from y' instead...
Pablo Galindo Salgado
2022-11-01
*
gh-91210: Improve error message when non-default param follows default (GH-95...
Lysandros Nikolaou
2022-09-17
*
GH-95150: Use position and exception tables for code hashing and equality (GH...
Brandt Bucher
2022-08-01
*
gh-94192: Fix error for dictionary literals with invalid expression as value....
wookie184
2022-06-26
*
gh-92858: Improve error message for some suites with syntax error before ':' ...
wookie184
2022-06-23
*
bpo-47212: Improve error messages for un-parenthesized generator expressions ...
Matthieu Dartiailh
2022-04-05
*
bpo-43224: Implement PEP 646 grammar changes (GH-31018)
Matthew Rahtz
2022-03-26
*
bpo-46838: Syntax error improvements for function definitions (GH-31590)
Pablo Galindo Salgado
2022-03-22
*
Remove trailing spaces (GH-31695)
Serhiy Storchaka
2022-03-05
*
bpo-46707: Avoid potential exponential backtracking in some syntax errors (GH...
Pablo Galindo Salgado
2022-02-10
*
bpo-46091: Correctly calculate indentation levels for whitespace lines with c...
Pablo Galindo Salgado
2022-01-25
*
bpo-46240: Correct the error for unclosed parentheses when the tokenizer is n...
Pablo Galindo Salgado
2022-01-04
*
bpo-46110: Restore commit e9898bf153d26059261ffef11f7643ae991e2a4c
Pablo Galindo Salgado
2022-01-03
*
Revert "bpo-46110: Add a recursion check to avoid stack overflow in the PEG p...
Pablo Galindo Salgado
2022-01-03
*
bpo-46110: Add a recursion check to avoid stack overflow in the PEG parser (G...
Pablo Galindo Salgado
2021-12-20
*
bpo-45292: [PEP-654] add except* (GH-29581)
Irit Katriel
2021-12-14
*
bpo-45811: Improve error message when source code contains invisible control ...
Pablo Galindo Salgado
2021-11-20
*
bpo-45450: Improve syntax error for parenthesized arguments (GH-28906)
Pablo Galindo Salgado
2021-11-20
*
bpo-45738: Fix computation of error location for invalid continuation (GH-29550)
Pablo Galindo Salgado
2021-11-14
*
bpo-45764: improve error message when missing '(' after 'def' (GH-29484)
Carl Friedrich Bolz-Tereick
2021-11-09
*
bpo-45716: Improve the error message when using True/False/None as keywords i...
Pablo Galindo Salgado
2021-11-05
*
Remove trailing spaces. (GH-28706)
Serhiy Storchaka
2021-10-03
*
bpo-43914: Correctly highlight SyntaxError exceptions for invalid generator e...
Pablo Galindo Salgado
2021-09-27
*
bpo-45229: Use doctest.DocTestSuite instead of run_doctest (GH-28468)
Serhiy Storchaka
2021-09-20
*
bpo-25130: Make unit-test about restricting the maximum number of nested bloc...
Carl Friedrich Bolz-Tereick
2021-08-28
*
bpo-45000: Raise SyntaxError when try to delete __debug__ (GH-27947)
Dong-hee Na
2021-08-25
*
bpo-44947: Refine the syntax error for trailing commas in import statements (...
Pablo Galindo Salgado
2021-08-18
*
bpo-44838: Refine the custom syntax errors for invalid 'if' expressions (GH-2...
Pablo Galindo Salgado
2021-08-05
*
bpo-44792: Improve syntax errors for if expressions (GH-27506)
Miguel Brito
2021-08-02
*
Remove unnecessary 'invalid_primary' rule in the parser (GH-27186)
Pablo Galindo Salgado
2021-07-16
*
bpo-44456: Improve the syntax error when mixing keyword and positional patter...
Pablo Galindo
2021-06-24
*
bpo-44368: Improve syntax errors with invalid as pattern targets (GH-26632)
Pablo Galindo
2021-06-10
*
bpo-44368: Ensure we don't raise incorrect custom syntax errors with soft key...
Pablo Galindo
2021-06-09
*
bpo-44305: Improve syntax error for try blocks without except or finally (GH-...
Pablo Galindo
2021-06-03
*
bpo-44273: Improve syntax error message for assigning to "..." (GH-26477)
Serhiy Storchaka
2021-06-01
*
bpo-44180: Fix edge cases in invalid assigment rules in the parser (GH-26283)
Pablo Galindo
2021-05-21
*
bpo-44168: Fix error message in the parser for keyword arguments for invalid ...
Pablo Galindo
2021-05-19
*
bpo-43149: Correct the syntax error message for multiple exception types (GH-...
Pablo Galindo
2021-05-08
*
bpo-44063: set the missing end locations on the compiler (GH-25956)
Batuhan Taskaya
2021-05-07
*
bpo-43914: Highlight invalid ranges in SyntaxErrors (#25525)
Pablo Galindo
2021-04-23
*
bpo-43859: Improve the error message for IndentationError exceptions (GH-25431)
Pablo Galindo
2021-04-21
*
bpo-38605: Revert making 'from __future__ import annotations' the default (GH...
Pablo Galindo
2021-04-21
*
bpo-43822: Improve syntax errors for missing commas (GH-25377)
Pablo Galindo
2021-04-15
*
bpo-43823: Improve syntax errors for invalid dictionary literals (GH-25378)
Pablo Galindo
2021-04-15
*
bpo-43797: Handle correctly invalid assignments inside function calls and gen...
Pablo Galindo
2021-04-13
[next]