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
clean_str
wikienv
I am finding certain strings can break clean_str:
p = "This is a test string with unicode escape: \\u00e9"
This will break clean_str:
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xe9 in position 43: unexpected end of data
Why do we need to convert string to be UTF-8? And if it's required, why not just ignore conversion errors?
ignore
The text was updated successfully, but these errors were encountered:
does it actually break things when you run? if so happy to accept pr!
Sorry, something went wrong.
No branches or pull requests
I am finding certain strings can break
clean_str
:This will break
clean_str
:Why do we need to convert string to be UTF-8? And if it's required, why not just
ignore
conversion errors?The text was updated successfully, but these errors were encountered: