We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
from subprocess import check_output command = r'dir' output = check_output(command, shell=True) print(output)
This hangs in the debugger in 2024.12.0. However, it runs as expected from the command line outside of vscode.
Works fine in 2024.10.0.
The text was updated successfully, but these errors were encountered:
Hi! Can you include the config you use from launch.json to run this in the debugger? Do you know which line it hangs on in the debugger?
Sorry, something went wrong.
{ "version": "0.2.0", "configurations": [ { "name": "Py", "type": "debugpy", "request": "launch", "program": "${file}", "console": "integratedTerminal", }, { "name": "Py redirect", "type": "debugpy", "request": "launch", "program": "${file}", "console": "integratedTerminal", "args": [">", "${relativeFileDirname}/output.txt"] }, ] }
Windows 10 Pro 64-bit Python 3.12.2 64-bit VS Code 1.95.2
As stated, debugger hangs attempting to execute this command:
output = check_output(command, shell=True)
Regression. Runs without issue using version 2024.10.0. Consistently hangs using version 2024.12.0.
eleanorjboyd
No branches or pull requests
This hangs in the debugger in 2024.12.0. However, it runs as expected from the command line outside of vscode.
Works fine in 2024.10.0.
The text was updated successfully, but these errors were encountered: