In python when running scripts is there a way to stop the console window from closing after spitting out the traceback?
|
If you doing this on a Windows OS, you can prefix the target of your shortcut with:
This will prevent the window from closing when the command exits. |
|||
|
|
|
|||
|
|
|
You could have a second script, which imports/runs your main code. This script would catch all exceptions, and print a traceback (then wait for user input before ending) Assuming your code is structured using the
..and the file is named "myscriptname.py" (obviously that can be changed), the following will work
If you don't have a
A better solution, one that requires no extra wrapper-scripts, is to run the script either from IDLE, or the command line.. On Windows, go to Start > Run, enter
(If you installed Python into On Linux/Mac OS X it's a bit easier, you just run The easiest way would be to use IDLE, launch IDLE, open the script and click the run button ( Also, as Chris Thornhill suggested, on Windows, you can create a shortcut to your script, and in it's Properties prefix the target with..
From http://www.computerhope.com/cmd.htm:
|
||||
|
|
|
You can register a top-level exception handler that keeps the application alive when an unhandled exception occurs:
This is especially useful if you have exceptions occuring inside event handlers that are called from C code, which often do not propagate the errors. |
|||
|
|
|
On UNIX systems (Windows has already been covered above...) you can change the interpreter argument to include the -i flag: #!/usr/bin/python -i From the man page:
|
|||
|
|
|
Your question is not very clear, but I assume that the python interpreter exits (and therefore the calling console window closes) when an exception happens. You need to modify your python application to catch the exception and print it without exiting the interpreter. One way to do that is to print "press ENTER to exit" and then read some input from the console window, effectively waiting for the user to press Enter. |
|||
|
|
|
In windows instead of double clicking the py file you can drag it into an already open CMD window, and then hit enter. It stays open after an exception. Dan |
|||
|
|