On Thu, 24 Jun 2010 11:06:24 pm Hugo Arts wrote:
> If you need to do some cleanup, putting it in a finally block is the
> only way to *guarantee* it will run.


To be pedantic, the finally clause will always run, *provided* the code 
in the try block itself exits (either by finishing or by raising an 
exception). If the try block never exits, the finally block never runs.

# Don't try this at home.
try:
    sys.setcheckinterval(sys.maxint)
    print "Can't stop this!"
    while 1:
        pass
finally:
    print "This never prints"


The only way to exit the loop is to hit it with a hammer (kill it from 
outside Python), in which case the finally block never gets to run.




-- 
Steven D'Aprano
_______________________________________________
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor

Reply via email to