Add yield issues when outside function.

This commit is contained in:
Dave Halter
2017-07-20 09:51:35 +02:00
parent fc1c16b966
commit 26c71a9586
2 changed files with 4 additions and 2 deletions

View File

@@ -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'),
]
)