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
The encoding of strings is inconsistent, which leads to malformed output:
>>> from spanishconjugator import Conjugator as c >>> verb = c().conjugate('pasar', 'preterite', 'indicative', 'yo') >>> verb 'pasé'
See also StackOverflow "Python – How do I convert an ASCII string into UTF-8?"
It appears the source code is actually UTF-8 encoded but wrongfully declared as iso-8859-15. In this specific case, the source code contains the bytes \xc3\xa9 which is é in UTF-8 but é in iso-8859-15.
iso-8859-15
\xc3\xa9
é
é
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The encoding of strings is inconsistent, which leads to malformed output:
See also StackOverflow "Python – How do I convert an ASCII string into UTF-8?"
It appears the source code is actually UTF-8 encoded but wrongfully declared as
iso-8859-15
. In this specific case, the source code contains the bytes\xc3\xa9
which isé
in UTF-8 buté
in iso-8859-15.The text was updated successfully, but these errors were encountered: