lukeparser / pybison

Use Bison directly from Python
https://pypi.org/project/pybison
GNU General Public License v2.0
26 stars 6 forks source link

Reentrant Parser (for Multithreaded Parsing without side-effects) #11

Closed da-h closed 5 years ago

da-h commented 5 years ago

Adding %option reentrant results in same errors as in this thread: https://stackoverflow.com/questions/2634998/writing-re-entrant-lexer-with-flex

However, it would be nice to make the parser thread-safe.

sbrodehl commented 5 years ago

Interesting!

sbrodehl commented 5 years ago

What needs to be done besides 5ded6f5ffc9a9037878dda5cbd4ed14eef68b50f?

da-h commented 5 years ago

Indeed, it IS done!