avian2 / unidecode

ASCII transliterations of Unicode text - GitHub mirror
https://pypi.python.org/pypi/Unidecode
GNU General Public License v2.0
516 stars 62 forks source link

Á → a, it should be Á → A #83

Open juanfal opened 1 year ago

juanfal commented 1 year ago

There is a problem with the case of accented char

Á →  a, it should be Á →  A
avian2 commented 1 year ago
>>> from unidecode import unidecode
>>> unidecode('Á')
'A'

I cannot reproduce your problem.

juanfal commented 1 year ago

You are right. Sorry