beliavsky at aol.com wrote:
> Goto is useful [...] when there is a clean-up section of a function
> that should be executed for various error conditions.
Like this?
def foo():
f = open('foo.txt')
try:
# do stuff with f
finally:
f.close()