We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a403b1c commit 58f4da0Copy full SHA for 58f4da0
1 file changed
Lib/_pyrepl/_module_completer.py
@@ -33,11 +33,12 @@
33
AUTO_IMPORT_BLACKLIST = {
34
# Standard library modules/submodules that have import side effects
35
# and must not be automatically imported to complete attributes
36
- re.compile(r"antigravity"),
37
- re.compile(r"this"),
38
- re.compile(r"idlelib\..+"),
39
- re.compile(r"test\..+"),
40
- re.compile(r".+\.__main__"),
+ re.compile(r"antigravity"), # Calls webbrowser.open
+ re.compile(r"idlelib\..+"), # May open IDLE GUI
+ re.compile(r"test\..+"), # Various side-effects
+ re.compile(r"this"), # Prints to stdout
+ re.compile(r"_ios_support"), # Spawns a subprocess
41
+ re.compile(r".+\.__main__"), # Should not be imported
42
}
43
44
0 commit comments