Tagged Questions
2
votes
2answers
316 views
Python3.0 - tokenize and untokenize
I am using something similar to the following simplified script to parse snippets of python from a larger file:
import io
import tokenize
src = 'foo="bar"'
src = bytes(src.encode())
src = ...