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
revert test changes
  • Loading branch information
tommix626 committed May 19, 2025
commit 035d8dca1e92e1337a88ebc1589cb3279d15580d
1 change: 0 additions & 1 deletion Lib/test/test_pyrepl/test_pyrepl.py
Original file line number Diff line number Diff line change
Expand Up @@ -1004,7 +1004,6 @@ def test_get_path_and_prefix(self):
('foo.bar', ('foo', 'bar')),
('foo.bar.', ('foo.bar', '')),
('foo.bar.baz', ('foo.bar', 'baz')),
('sys', ('', 'sys')),
)
completer = ModuleCompleter()
for name, expected in cases:
Expand Down
0