Let's say I make a module called mylib.py. In eclipse I type
import mylib
Then I type mylib.
and hit CTRL+SPACE. This should suggest functions/variables in mylib, but it doesn't do anything. If I do something like import os
and type os.
, suggestions immediately pop up, so I know code completion works in general, just not for my modules. Any reason why?