mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-06 14:04:26 +08:00
fix: move test to arrays.py
This commit is contained in:
@@ -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
|
||||||
|
|||||||
@@ -1,6 +0,0 @@
|
|||||||
xy = (1,)
|
|
||||||
x, y = *xy, None
|
|
||||||
|
|
||||||
# whatever it is should not crash
|
|
||||||
#?
|
|
||||||
x
|
|
||||||
Reference in New Issue
Block a user