X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/80500748a7b4246e2381ddce869a09a215a591ae..4a7da71069b4e3a8f7a16ae4e22507fa9eb39f34:/tests/data/expression.py diff --git a/tests/data/expression.py b/tests/data/expression.py index 71cf1d9..b889bfc 100644 --- a/tests/data/expression.py +++ b/tests/data/expression.py @@ -169,6 +169,8 @@ mapping = { def gen(): yield from outside_of_generator a = (yield) + b = ((yield)) + c = (((yield))) async def f(): await some.complicated[0].call(with_args=(True or (1 is not 1))) @@ -458,7 +460,9 @@ mapping = { def gen(): yield from outside_of_generator - a = (yield) + a = yield + b = yield + c = yield async def f():