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 c4f93fe commit c879bc6Copy full SHA for c879bc6
1 file changed
bpython/importcompletion.py
@@ -120,6 +120,9 @@ def find_modules(path):
120
# which ends with a python extension, so work around.
121
continue
122
name = os.path.splitext(name)[0]
123
+ if py3 and name == "badsyntax_pep3120":
124
+ # Workaround for issue #166
125
+ continue
126
try:
127
with catch_warnings():
128
warnings.simplefilter("ignore", ImportWarning)
0 commit comments