Andreas Beyer wrote:
> I came up with the following code:
>inp = file(file_name)
>for n, line in enumerate(inp):
>try:
># parse line ...
>except Exception, e:
>inp.close() # Is this necessary for 'r' files?
>args = list(e.args)
>
Hi,
If an exception gets raised while I am parsing an input file I would
like to know where (in which line) the error occured. I do not want to
create my own exception class for that purpose and I also do not want to
deal with all possible kinds of exceptions that might occur.
I came up with t