exception problem

Chris Angelico rosuav at gmail.com
Sun Jun 24 18:36:11 EDT 2012


On Mon, Jun 25, 2012 at 8:26 AM, Charles Hixson
<charleshixsn at earthlink.net> wrote:
> The code:
>                finally:
>                    print ("at finally")
>                print ("chunks =")
> produces this result:
> path  3...

Can you state more clearly the problem, please? I'm seeing output that
can't have come from the code posted (for instance, immediately after
the "at finally", I'm expecting to see the "chunks =" line), and I'm
not seeing any exception information, so I can't even hazard a guess
as to what's throwing the exception.

Presumably these are two methods in the same class, since you're
calling it as "self.chunkLine", but beyond that, it's hard to know.
Take off the try/except and let your exception go to console, that's
usually the easiest thing to deal with.

Chris Angelico



More information about the Python-list mailing list