mirror of
https://github.com/davidhalter/parso.git
synced 2025-12-07 21:34:32 +08:00
Add yield issues when outside function.
This commit is contained in:
@@ -71,6 +71,7 @@ def test_indentation_errors(code, positions):
|
||||
'continue',
|
||||
'break',
|
||||
'return',
|
||||
'yield',
|
||||
'try: pass\nexcept: pass\nexcept X: pass',
|
||||
|
||||
# IndentationError
|
||||
@@ -95,6 +96,7 @@ def test_python_exception_matches(code):
|
||||
('code', 'version'), [
|
||||
# SyntaxError
|
||||
('async def bla():\n def x(): await bla()', '3.5'),
|
||||
('yield from', '3.5'),
|
||||
|
||||
]
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user