Hello everyone!
My question is probably stupid and I hope somebody has succeeded in solving this issue.
Sometimes I cannot see right suggestions in auto-completion box (Eclipse 3.5.2, PyDev 1.5.7). For example:
import email
fp = open('my.eml', 'rb')
msg = email.message_from_file(fp)
msg
now is a Message object. And functions like get_payload() works fine.
msg.get_payload()
But I don't get get_payload()
in auto-completion list.
I think PyDev has no idea of what msg
is, so it doesn't know what to show.
Maybe I should import something else, not only email
module?
Thanks in advance!