* David Rock <[EMAIL PROTECTED]> [2005-04-07 15:00]:
> * Kent Johnson <[EMAIL PROTECTED]> [2005-04-07 15:28]:
> > David Rock wrote:
> > >I am trying to catch an exception from the csv module but it doesn't
> > >seem to be generating a proper exception because I don't seem to be able
> > >to catch i
* Kent Johnson <[EMAIL PROTECTED]> [2005-04-07 15:28]:
> David Rock wrote:
> >I am trying to catch an exception from the csv module but it doesn't
> >seem to be generating a proper exception because I don't seem to be able
> >to catch it. Here is what I am doing:
> >
> >
> >for inputline in fileinp
David Rock wrote:
I am trying to catch an exception from the csv module but it doesn't
seem to be generating a proper exception because I don't seem to be able
to catch it. Here is what I am doing:
for inputline in fileinput.input(args):
try:
input = csv.reader([inputline],
I am trying to catch an exception from the csv module but it doesn't
seem to be generating a proper exception because I don't seem to be able
to catch it. Here is what I am doing:
for inputline in fileinput.input(args):
try:
input = csv.reader([inputline], escapechar='\\')