Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upUsing Python3, bpython only autocompletes packages, not modules #847
Comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
A simple example...
If I create a directory hierarchy like this:
Running bpython using python2.7.16 will successfully autocomplete "foo" and "bar", e.g. "from xyzzy.plugh." will show "foo" and "bar" in the autocomplete box. However, running bpython using python3.7.3 it will only autocomplete "xyzzy" or "xyzzy.plugh" (which are packages/directories), while "foo" and "bar" are modules/files.