vote up 5 vote down star

If you invoke the cpython interpreter with the -i option, it will enter the interactive mode upon completing any commands or scripts it has been given to run. Is there a way, within a program to get the interpreter to do this even when it has not been given -i? The obvious use case is in debugging by interactively inspecting the state when an exceptional condition has occurred.

flag

80% accept rate

3 Answers

vote up 2 vote down check

Set the PYTHONINSPECT environment variable. This can also be done in the script itself:

import os
os.environ["PYTHONINSPECT"] = "1"

For debugging unexpected exceptions, you could also use this nice recipe http://code.activestate.com/recipes/65287/

link|flag
vote up 2 vote down

The recipe metioned in the other answer using sys.excepthook, sounds like what you want. Otherwise, you could run code.interact on program exit:

import code
import sys
sys.exitfunc = code.interact
link|flag
vote up 10 vote down

You want the code module.

#!/usr/bin/env python

import code    
code.interact("Enter Here")
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.