Re: Continuing after error

2006-09-28 Thread Georg Brandl
Sheldon wrote: > Hi, > > Does anyone know if it is possible to resume the execution of a program > after it stops at an error in the code and the error was corrected? try: do something except SomeException: correct the error do something else i.e. you handle the error in the except cl

Continuing after error

2006-09-28 Thread Sheldon
Hi, Does anyone know if it is possible to resume the execution of a program after it stops at an error in the code and the error was corrected? Sincerely, Sheldon -- http://mail.python.org/mailman/listinfo/python-list