fix: move test to arrays.py

This commit is contained in:
Hoblovski
2025-11-13 21:12:15 +08:00
parent 3454ebb1de
commit 1b33f0d77c
2 changed files with 8 additions and 6 deletions

View File

@@ -527,3 +527,11 @@ lc = [x for a, *x in [(1, '', 1.0)]]
lc[0][0] lc[0][0]
#? #?
lc[0][1] lc[0][1]
xy = (1,)
x, y = *xy, None
# whatever it is should not crash
#?
x

View File

@@ -1,6 +0,0 @@
xy = (1,)
x, y = *xy, None
# whatever it is should not crash
#?
x