-
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
Discuss the need for the prompt at the end of the execution of a program #239
Comments
Problem reported in #191
|
#249) - Fixes #25, #32, #35, #235, #242 (unable to run without debugging using CTRL+F5) - Fixes #191, #158, #24, #136 (error message displayed when debugged code terminates) - Fixes #157 (debugger crashes when python program does not launch) - Fixes #114, #149, #250 (use vscode infrastructure to launch debugger in integrated and external terminals) - Fixes #239 Remove prompt added to pause terminal upon program completion
Hi. All issues are closed. But #159 is reproduced in 1.19.2. configuration for running the python script:
python script: a loop with HTTP requests in Process(parallel requests) and output to the console for each HTTP request (print ("some information about the response")) |
@tav0x222 please could you create a separate issue with details and a sample to replicate the issue. |
@brettcannon
At the end of program execution (while debugging) we display the prompt
Press any key to continue...' I've only added this as PTVS does the same thing (i.e. wanted to be consistent). However I think PTVS does it because the terminal gets closed once you hit the
Enter` key, i.e. you can't see the output).Personally I don't see the need for this in VS Code.
Reason is when you execute a simple program such as
print("hello world")
, the program doesn't end until you hit the enter key (except when debugging using the standard vscode debug console). I.e. everytime you run a simple program, you have to hit theEnter
key (more key presses).Here's an example:
The text was updated successfully, but these errors were encountered: