My question is probably stupid, and I hope someone managed to solve this problem.
Sometimes I donβt see the right sentences in the autocomplete window (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 a Message object. And functions like get_payload () work fine.
msg.get_payload()
But I do not get get_payload() in the autocomplete list.
I think PyDev does not know what msg , so it does not know what to show.
Perhaps I need to import something else, not just the email module?
Thanks in advance!
python eclipse autocomplete pydev
kishkin
source share