python - Autocomplete in Pydev / Eclipse is not showing all methods -


i've been using eclipse many years (for java , perl programming), i've installed pydev want use ide learning python.

my problem when press period sign after variable name, list of autocomplete suggestions not show methods type.

e.g. in screenshot below, want use isoformat() method in datetime module. if manually type variable.methodname i.e. end.isoformat(), code working fine. however, while typing if press period after variable end, autocomplete suggestions dropdown not contain isoformat anywhere. can see, datetime in list of forced builtins, not seem help.

i have looked @ other questions related autocompletion problems pydev here on site, none of solutions suggested in threads fixing problem. beginner in python, working autocomplete lot of me. can please help?

details setup:

  • eclipse version: luna release (4.4.0) build id: 20140612-0600
  • pydev eclipse 3.7.1.201409021729
  • python 2.7.3
  • windows 8.1

edit: bah, stackoverflow won't let me post screenshot image because new account , have less "10 reputation". preventing me communicating more using screenshots, have experience points? not cool on part.

anyway, i've pasted code below:

import  datetime   start = datetime.date(2014,7,7) end = start + datetime.timedelta(days=180) print(end.isoformat()) 

only thing can think of - make sure interpreter have same 1 you've got modules installed under.

if you've verified that, can rescan modules (takes bit build index)


Comments

Popular posts from this blog

php - Submit Form Data without Reloading page -

linux - Rails running on virtual machine in Windows -

php - $params->set Array between square bracket -