-
-
Notifications
You must be signed in to change notification settings - Fork 372
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Autocomplete using the wrong version of Python #267
Labels
Comments
|
|
You don't have Once we have implemented davidhalter/jedi#385, we might be able to give you Python 3 completions. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Basically, when I
import itertools
in a Python 3.2 virtualenv, jedi-vim will offer methods likeimap
,ifilter
etc. which are not part of the Py3 version ofitertools
. Is there any way to fix this? I have tried things likelet g:jedi#force_python = "python3"
andlet g:jedi#force_py_version = 3
but it doesn't fix the problem.The text was updated successfully, but these errors were encountered: