Join GitHub today
GitHub is home to over 20 million developers working together to host and review code, manage projects, and build software together.
2 spaces between from and module name makes tab complete loses state on valid imports #10635
Comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
mpacer commentedJun 1, 2017
•
edited
Attempting to tab complete to:
from IPython.display import SVGat the point offrom IPython.display import SVall that it offered as a possible completion was%%SVG.The problem seems to be that the two spaces between
fromandIPython.displayare causing it to not realise that its still in an import statement.Note if
jediis installed on the command line there is a related but slightly different problem.jediseems to know that the completion should be (uniquely)SVGbut it is also populating the options with%%SVG.