mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-08 06:44:46 +08:00
tuple for loop tests
This commit is contained in:
@@ -22,6 +22,22 @@ for a3, b3 in (1,""), (1,""), (1,""):
|
|||||||
#? ['upper']
|
#? ['upper']
|
||||||
b3.upper
|
b3.upper
|
||||||
|
|
||||||
|
for a4, (b4, c4) in (1,("", list)), (1,("", list)):
|
||||||
|
#? ['real']
|
||||||
|
a4.real
|
||||||
|
#? []
|
||||||
|
a4.upper
|
||||||
|
#? []
|
||||||
|
b4.real
|
||||||
|
#? ['upper']
|
||||||
|
b4.upper
|
||||||
|
#? []
|
||||||
|
c4.real
|
||||||
|
#? ['append']
|
||||||
|
c4.append
|
||||||
|
#? []
|
||||||
|
c4.upper
|
||||||
|
|
||||||
# -----------------
|
# -----------------
|
||||||
# with statements
|
# with statements
|
||||||
# -----------------
|
# -----------------
|
||||||
|
|||||||
Reference in New Issue
Block a user