On 7 Cze, 14:49, Fencer <[email protected]> wrote: > My question is how can I trap > errors encountered by the interpreter (if that is the right way to put > it) in order to keep the console window open so one has a chance to see > the error message? >
Interpreter errors are same beasts as exceptions, so you can try:...except: them. -- Tomasz Zieliński http://pyconsultant.eu -- http://mail.python.org/mailman/listinfo/python-list
