Please find below the piece of code that I use to tokenize a string.

strList = list(token[STRING] for token in generate_tokens(StringIO(line).readline) if token[STRING])

I get an error that reads like:-

    raise TokenError, ("EOF in multi-line statement", (lnum, 0))
tokenize.TokenError: ('EOF in multi-line statement', (2, 0))

I wish to ignore such errors and be able to complete the tokenization process. I have a lot of data, so I am okay with loosing a part of the data to these errors. However, I am not sure how to write the piece of code that would enable be to implement the desired functionality. Could some one help me out with the code please?

Thank you.

Edit1:-

on trying the

except tokenize.TokenError:
    pass

I get the following error message

    except tokenize.TokenError:
 NameError: name 'tokenize' is not defined
link|improve this question

70% accept rate
feedback

1 Answer

up vote 2 down vote accepted

Notice that your error message says tokenize.TokenError. That is the type of Exception your code is raising. To catch the error, you use a try...except block. To skip the error you simply put pass in the except block.

import tokenize
try:
    strList = list(token[STRING] for token in tokenize.generate_tokens(StringIO(line).readline) if token[STRING])
except tokenize.TokenError:
    pass
link|improve this answer
I tried it. It did not work. – rookie Aug 3 '10 at 18:11
Sorry it worked. I hadn't imported the tokenize module. Thanks for your help. – rookie Aug 3 '10 at 18:19
1  
Ah right. I missed that you were using generate_tokens rather than tokenize.generate_tokens. I try to avoid barenames because of this: stackoverflow.com/questions/1744258/… – unutbu Aug 3 '10 at 18:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.