GitWeb
Get Gentoo!
gentoo.org sites
gentoo.org
Wiki
Bugs
Forums
Packages
Planet
Archives
Sources
Infra Status
Home
Gentoo Repository
Repositories
Projects
Developer Overlays
User Overlays
Data
Websites
index
:
fork/cpython.git
3.6
3.7
3.8
3.9
backport-e35ca41-3.11
gentoo
gentoo-2.7-vanilla
main
master
Gentoo fork of Python
Python project <python@gentoo.org>
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
Lib
/
test
/
test_syntax.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-42997: Improve error message for missing : before suites (GH-24292)
Pablo Galindo
2021-02-02
1
-3
/
+104
*
bpo-43017: Improve error message for unparenthesised tuples in comprehensions...
Pablo Galindo
2021-01-31
1
-0
/
+15
*
bpo-42864: Improve error messages regarding unclosed parentheses (GH-24161)
Pablo Galindo
2021-01-19
1
-0
/
+8
*
bpo-30858: Improve error location for expressions with assignments (GH-23753)
Pablo Galindo
2020-12-13
1
-0
/
+7
*
bpo-42218: Correctly handle errors in left-recursive rules (GH-23065)
Lysandros Nikolaou
2020-10-31
1
-0
/
+8
*
bpo-42214: Fix check for NOTEQUAL token in the PEG parser for the barry_as_fl...
Pablo Galindo
2020-10-30
1
-0
/
+17
*
bpo-41659: Disallow curly brace directly after primary (GH-22996)
Lysandros Nikolaou
2020-10-27
1
-0
/
+3
*
bpo-38605: Make 'from __future__ import annotations' the default (GH-20434)
Batuhan Taskaya
2020-10-06
1
-8
/
+0
*
bpo-39934: Account for control blocks in 'except' in compiler. (GH-22395)
Mark Shannon
2020-09-25
1
-0
/
+9
*
bpo-40769: Allow extra surrounding parentheses for invalid annotated assignme...
Batuhan Taskaya
2020-06-27
1
-0
/
+13
*
bpo-41060: Avoid SEGFAULT when calling GET_INVALID_TARGET in the grammar (GH-...
Lysandros Nikolaou
2020-06-21
1
-0
/
+8
*
bpo-40334: Produce better error messages on invalid targets (GH-20106)
Lysandros Nikolaou
2020-06-19
1
-1
/
+60
*
bpo-40939: Remove the old parser (GH-20768)
Pablo Galindo
2020-06-11
1
-1
/
+0
*
bpo-40847: Consider a line with only a LINECONT a blank line (GH-20769)
Lysandros Nikolaou
2020-06-11
1
-0
/
+14
*
bpo-40903: Handle multiple '=' in invalid assignment rules in the PEG parser ...
Pablo Galindo
2020-06-07
1
-1
/
+20
*
bpo-40334: Produce better error messages for non-parenthesized genexps (GH-20...
Lysandros Nikolaou
2020-05-22
1
-5
/
+3
*
bpo-40176: Improve error messages for trailing comma on from import (GH-20294)
Batuhan Taskaya
2020-05-21
1
-0
/
+8
*
bpo-40334: Reproduce error message for type comments on bare '*' in the new p...
Lysandros Nikolaou
2020-05-18
1
-0
/
+10
*
bpo-40661: Fix segfault when parsing invalid input (GH-20165)
Lysandros Nikolaou
2020-05-18
1
-0
/
+3
*
bpo-40334: Correctly identify invalid target in assignment errors (GH-20076)
Pablo Galindo
2020-05-15
1
-19
/
+27
*
bpo-40618: Disallow invalid targets in augassign and except clauses (GH-20083)
Lysandros Nikolaou
2020-05-14
1
-0
/
+12
*
bpo-40334: produce specialized errors for invalid del targets (GH-19911)
Shantanu
2020-05-11
1
-8
/
+33
*
bpo-40334: Spacialized error message for invalid args after bare '*' (GH-19865)
Lysandros Nikolaou
2020-05-04
1
-3
/
+3
*
bpo-40443: Remove unused imports in tests (GH-19805)
Victor Stinner
2020-04-30
1
-1
/
+0
*
bpo-40334: Rename PyConfig.use_peg to _use_peg_parser (GH-19670)
Victor Stinner
2020-04-23
1
-2
/
+2
*
bpo-40334: PEP 617 implementation: New PEG parser for CPython (GH-19503)
Pablo Galindo
2020-04-22
1
-39
/
+49
*
bpo-40147: Move the check for duplicate keywords to the compiler (GH-19289)
Pablo Galindo
2020-04-03
1
-1
/
+1
*
bpo-39176: Improve error message for 'named assignment' (GH-17777)
Ned Batchelder
2019-12-31
1
-1
/
+1
*
bpo-37500: Make sure dead code does not generate bytecode but also detect syn...
Pablo Galindo
2019-07-15
1
-6
/
+35
*
bpo-1875: Raise SyntaxError in invalid blocks that will be optimised away (GH...
Pablo Galindo
2019-05-17
1
-0
/
+14
*
bpo-36187: Remove NamedStore. (GH-12167)
Serhiy Storchaka
2019-03-05
1
-0
/
+4
*
bpo-36052: Raise a SyntaxError when assigning a value to __debug__ with := (G...
Stéphane Wirtel
2019-02-21
1
-0
/
+4
*
bpo-35169: Improve error messages for forbidden assignments. (GH-10342)
Serhiy Storchaka
2018-11-20
1
-30
/
+87
*
closes bpo-34641: Further restrict the LHS of keyword argument function call ...
Benjamin Peterson
2018-09-12
1
-0
/
+3
*
bpo-32489: Allow 'continue' in 'finally' clause. (GH-5822)
Serhiy Storchaka
2018-03-18
1
-45
/
+23
*
bpo-32482: Fix suspicious code in tests for syntax and grammar. (#5086)
Serhiy Storchaka
2018-01-04
1
-2
/
+2
*
bpo-32023: Disallow genexprs without parenthesis in class definitions. (#4400)
Serhiy Storchaka
2017-11-15
1
-0
/
+4
*
bpo-32012: Disallow trailing comma after genexpr without parenthesis. (#4382)
Serhiy Storchaka
2017-11-15
1
-3
/
+18
*
bpo-28936: Detect lexically first syntax error first (#4097)
Ivan Levkivskyi
2017-10-27
1
-9
/
+27
*
bpo-31847: Fix commented out tests in test_syntax. (#4084)
Serhiy Storchaka
2017-10-24
1
-18
/
+10
*
Issue #26110: Add LOAD_METHOD/CALL_METHOD opcodes.
Yury Selivanov
2016-12-13
1
-0
/
+27
*
Issue #28512: Fixed setting the offset attribute of SyntaxError by
Serhiy Storchaka
2016-12-11
1
-2
/
+7
|
\
|
*
Issue #28512: Fixed setting the offset attribute of SyntaxError by
Serhiy Storchaka
2016-12-11
1
-2
/
+7
|
|
\
|
|
*
Issue #28512: Fixed setting the offset attribute of SyntaxError by
Serhiy Storchaka
2016-12-11
1
-3
/
+8
*
|
|
Issue #12844: More than 255 arguments can now be passed to a function.
Serhiy Storchaka
2016-11-28
1
-63
/
+67
|
/
/
*
|
Issue #27999: Make "global after use" a SyntaxError, and ditto for nonlocal.
Guido van Rossum
2016-09-09
1
-1
/
+17
*
|
merge 3.5 (#27514)
Benjamin Peterson
2016-07-14
1
-2
/
+4
|
\
|
|
*
make too many nested blocks be a SyntaxError instead of a SystemError (closes...
Benjamin Peterson
2016-07-14
1
-2
/
+4
*
|
Issue #23275: Allow () = iterable assignment syntax
Berker Peksag
2016-05-18
1
-12
/
+0
|
/
*
make recording and reporting errors and nonlocal and global directives more r...
Benjamin Peterson
2015-12-29
1
-0
/
+8
[next]