PyParsing: What does Combine() do?

Posted by Rosarch on Stack Overflow See other posts from Stack Overflow or by Rosarch
Published on 2010-05-30T21:51:04Z Indexed on 2010/05/30 21:52 UTC
Read the original article Hit count: 268

Filed under:
|
|
|

What is the difference between:

foo = TOKEN1 + TOKEN2

and

foo = Combine(TOKEN1 + TOKEN2)

Thanks.

© Stack Overflow or respective owner

Related posts about python

Related posts about parsing