I am using jedi-vim, and after typing the following, I get a "Pattern not found" error:
import numpy
numpy.
However, if I run the following python script, I get a long list of completions:
import jedi
print(jedi.Script('import numpy;numpy.').completions())
Since jedi-vim can successfully complete other packages, I'm not sure what is configured incorrectly, what gives?