I'm using Komodo Edit for Python development, and I want to get the best out of the auto complete.
If I do this:
a = A()
a.
I can see a list of members of A.
But if I do this:
a = [A()]
b = a[0]
b.
It does not work. I want to be able to do this:
a = [A()]
b = a[0]
"""b
Type: A
"""
b.
So how can I tell the auto complete that b is of type A?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…