Files
jedi/test/completion/arrays.py
David Halter b06b4e2dd8 tuple tests
2012-04-24 13:55:45 +02:00

24 lines
226 B
Python

#? ['imag']
[1,2][0].imag
a = list()
#? ['append']
[a][0].append
#? ['append']
[[a]][0][100].append
a1, b1 = (1, "")
#? ['real']
a1.real
#? ['lower']
b1.lower
(a2, b2) = (1, "")
#? ['imag']
a2.imag
#? ['upper']
b2.upper