From 1b33f0d77cd5c4111a56d0f279653ba49d289acc Mon Sep 17 00:00:00 2001 From: Hoblovski Date: Thu, 13 Nov 2025 21:12:15 +0800 Subject: [PATCH] fix: move test to arrays.py --- test/completion/arrays.py | 8 ++++++++ test/completion/wtf.py | 6 ------ 2 files changed, 8 insertions(+), 6 deletions(-) delete mode 100644 test/completion/wtf.py diff --git a/test/completion/arrays.py b/test/completion/arrays.py index 21437bce..bb397f40 100644 --- a/test/completion/arrays.py +++ b/test/completion/arrays.py @@ -527,3 +527,11 @@ lc = [x for a, *x in [(1, '', 1.0)]] lc[0][0] #? lc[0][1] + + +xy = (1,) +x, y = *xy, None + +# whatever it is should not crash +#? +x diff --git a/test/completion/wtf.py b/test/completion/wtf.py deleted file mode 100644 index c5d54dbf..00000000 --- a/test/completion/wtf.py +++ /dev/null @@ -1,6 +0,0 @@ -xy = (1,) -x, y = *xy, None - -# whatever it is should not crash -#? -x