On Mon, 06 Dec 2010 09:54:46 -0800, Dennis Lee Bieber wrote:

> On Mon, 06 Dec 2010 00:14:11 -0800, Paul Rubin <no.em...@nospam.invalid>
> declaimed the following in gmane.comp.python.general:
> 
> 
>> exceptions that fixed the issue.  Are there any languages out there
>> with resumable exceptions?  Escaping to a debugger doesn't really count
>> as
> 
>       Visual BASIC 6
> 
> -=-=-=-=-
> On Error GoTo line
>
9999 REM Actions to sort out the error
     RESUME

>               Enables the error-handling routine that starts at line
> specified in the required line argument. The line argument is any line
> label or line number. If a run-time error occurs, control branches to
> line, making the error handler active. The specified line must be in the
> same procedure as the On Error statement; otherwise, a compile-time
> error occurs.
> 
Any BASIC that implements ON ERROR (i.e. just about all of them) will do 
this, not just VB.


-- 
martin@   | Martin Gregorie
gregorie. | Essex, UK
org       |
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to