forked from DonJayamanne/pythonVSCode
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Language server opens Output panel on its own during certain syntax errors #2262
Labels
area-intellisense
LSP-related functionality: auto-complete, docstrings, navigation, refactoring, etc.
bug
Issue identified by VS Code Team member as probable bug
important
Issue identified as high-priority
Milestone
Comments
brettcannon
added
bug
Issue identified by VS Code Team member as probable bug
area-intellisense
LSP-related functionality: auto-complete, docstrings, navigation, refactoring, etc.
needs verification
labels
Jul 27, 2018
Possibly related: #2017 (although it's for Python 2.7) |
Duplicate of #2263 |
Reopening as this contains instructions to replicate the issue. |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This was referenced Aug 9, 2018
When will this be released? |
I still have this problem is it supposed to be fixed? |
@rickstaa fixed in the latest release that went out 2 hours ago. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
area-intellisense
LSP-related functionality: auto-complete, docstrings, navigation, refactoring, etc.
bug
Issue identified by VS Code Team member as probable bug
important
Issue identified as high-priority
Environment data
Actual behavior
The Output panel (
ctrl+K
ctrl+H
) opens automatically when typing as it detects certain syntax errors.Expected behavior
For the panel not to butt in uninvited 😛
Steps to reproduce
This has happened organically in a lot of different places where I haven't paid attention to the output, but here's a reproducible case:
.py
extension in VSCode.e
, type a dot (.
).Error
in theexcept ...
line, nor does it occur when Error doesn't inherit (directly or not) from BaseException.Logs
Output for
Python
in theOutput
panel (View
→Output
, change the drop-down the upper-right of theOutput
panel toPython
):The below text is duplicated (with a different timestamp, of course) for every character typed after the dot.
Output from
Console
under theDeveloper Tools
panel (toggle Developer Tools on underHelp
):No identifiable console output results from the steps above. There is the following, but it appears immediately before typing the colon in
except Exception as e:
and not on the line causing the main error's problem.The text was updated successfully, but these errors were encountered: