Re: [Tutor] question regarding python exception handling

2005-01-30 Thread Alan Gauld
> a Nutshell". In the chapter of exception handling, it says: Note that > the try/finally form is distinct from the try/except form: a try > statement cannot have both except and finally clauses, as execution > order might be ambiguous. > > I don't understand the reason why except and finally claus

Re: [Tutor] question regarding python exception handling

2005-01-30 Thread Danny Yoo
On Sat, 29 Jan 2005, Roy wrote: > I am learning about python exception handling. I am reading "Python in a > Nutshell". In the chapter of exception handling, it says: Note that the > try/finally form is distinct from the try/except form: a try statement > cannot have both except and finally clau

[Tutor] question regarding python exception handling

2005-01-29 Thread Roy
Hello, there: I am learning about python exception handling. I am reading "Python in a Nutshell". In the chapter of exception handling, it says: Note that the try/finally form is distinct from the try/except form: a try statement cannot have both except and finally clauses, as execution order migh