slow code completion without alias import
Brought to you by:
fabioz
When doing a code completion request on an imported module without an alias as:
from x import mod
and typing:
mod.
in the file, code completion freezes Eclipse for about 5 secs before popping the completion box.
However, if importing with an alias as:
from x import mod as mod
code completion box appears really fast.
Using PyDev for Eclipse 1.6.3.2010100513 org.python.pydev.feature.feature.group
(Files are on a network share) network usage is heavy during the request.
Running on Windows 7 Pro 32 bits
Looks like it reads all the python files and folders under x everytime. (verified with sysinternals procmon.exe)
Same for me. Using the following code
"""
from scipy import linalg
linalg.cholesky
"""
Makes eclipse freeze for a long time after the second line linalg.