8000 gh-134235: Import Autocomplete for Builtin Modules by tommix626 · Pull Request #134277 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-134235: Import Autocomplete for Builtin Modules #134277

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

Merged
merged 11 commits into from
May 19, 2025
Prev Previous commit
Next Next commit
fixbug: add \n on tests
  • Loading branch information
tommix626 committed May 19, 2025
commit 83a84571ed020f8eafb243722111362420e438fa
2 changes: 1 addition & 1 deletion Lib/test/test_pyrepl/test_pyrepl.py
Original file line number Diff line number Diff line change
Expand Up @@ -984,7 +984,7 @@ def test_builtin_completion_top_level(self):
("import math as m, sys\t\n", "import math as m, sys"),

# From-import with top level
("from mat\t", "from math"),
("from mat\t\n", "from math"),
("from ma\t\tt\t\n", "from math"),

# From-import for modules
Expand Down
0