X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/80500748a7b4246e2381ddce869a09a215a591ae..189520bff13d6fb70f59d1d663ba69c967a48ce4:/tests/data/expression.py?ds=sidebyside diff --git a/tests/data/expression.py b/tests/data/expression.py index 71cf1d9e..b889bfc7 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():