You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a problem about the completions of numpy and matplotlib in windows 7, whatever ide i use such as emacs and Eclipse, which is:
import matplotlib.pyplot as plt
import numpy as np
arr = np.array([1, 2])
plt.plot(arr) #jedi gives completion to the np and plt.
fig, ax = plt.subplots()
ax.plot(plt)
arr.#jedi never gives completion to ax and arr object
So can you give me some hint to solve this problem?
The text was updated successfully, but these errors were encountered:
Well see the problem is that with certain complexity there's not always a solution. There will never be. Python is very very hard to understand - sometimes - especially if it also involves compiled c libraries. If you don't know what I mean, try to look up all the types that arr is an instance of. It's not that easy.
However, I do agree that Jedi should really understand this, that's why #372 is labeled as a bug.
Hi davidhalter,
I have a problem about the completions of numpy and matplotlib in windows 7, whatever ide i use such as emacs and Eclipse, which is:
So can you give me some hint to solve this problem?
The text was updated successfully, but these errors were encountered: