We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am parsing some of my student's code and I get the error:
Untreated elements: 'ù_usata'
because the identifier contains accented letters. (in this case the identifier was from the following definition
def parola_più_usata(dizionario,lista_ordinata):
Could the tokenizer possibly be fixed to allow also accented letters?
The text was updated successfully, but these errors were encountered:
I have temporarily fixed it (badly, I am sure a better solution exists) by changing file baron/splitter.py at line 56 from
for section in (string.ascii_letters + "_" + "1234567890", " \t"):
to
for section in (string.ascii_letters + "àèìòùé_" + "1234567890", " \t"):
Sorry, something went wrong.
No branches or pull requests
I am parsing some of my student's code and I get the error:
because the identifier contains accented letters. (in this case the identifier was from the following definition
Could the tokenizer possibly be fixed to allow also accented letters?
The text was updated successfully, but these errors were encountered: