What about try:except:finally

Jon McLin jon_mclin at attglobal.net
Fri Jul 7 19:28:15 EDT 2000


try:
    try:
        # some code
    except:
        # catch exception
finally:
    #clean up


Thomas Weholt wrote:

> Hi,
>
> Does python support, or if not, would it be cool to have support for :
>
> try:
>         # some code
> except :
>         # catch exception
> finally:
>         # clean up whatever
>
> Thomas




More information about the Python-list mailing list