X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/a20a3eeb0f738d3434efe3be8932db11722757a4..cb5aadad74c0a1c9c514a633c632c99b668c70ed:/tests/expression.diff?ds=sidebyside diff --git a/tests/expression.diff b/tests/expression.diff index 4cdf803..965aa00 100644 --- a/tests/expression.diff +++ b/tests/expression.diff @@ -103,7 +103,7 @@ ] slice[0] slice[0:1] -@@ -114,71 +123,90 @@ +@@ -114,78 +123,104 @@ numpy[-(c + 1):, d] numpy[:, l[-2]] numpy[:, ::-1] @@ -142,8 +142,10 @@ +).order_by( + models.Customer.id.asc() +).all() -+ + Ø = set() + authors.łukasz.say_thanks() ++ def gen(): yield from outside_of_generator + @@ -152,7 +154,12 @@ async def f(): await some.complicated[0].call(with_args=(True or (1 is not 1))) - +-for x, in (1,), (2,), (3,): ... +-for y in (): ... +-for z in (i for i in (1, 2, 3)): ... +-for i in (call()): ... +-for j in (1 + (2 + 3)): ... +-while(this and that): ... -if ( - threading.current_thread() != threading.main_thread() and - threading.current_thread() != threading.main_thread() or @@ -190,6 +197,19 @@ -): - return True + ++ ++for (x,) in (1,), (2,), (3,): ++ ... ++for y in (): ++ ... ++for z in (i for i in (1, 2, 3)): ++ ... ++for i in call(): ++ ... ++for j in 1 + (2 + 3): ++ ... ++while this and that: ++ ... +if ( + threading.current_thread() != threading.main_thread() + and threading.current_thread() != threading.main_thread() @@ -235,4 +255,3 @@ + last_call() # standalone comment at ENDMARKER -