avian2 / unidecode

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

Replace unnecessary _u() compat function with u prefix to string #36

Closed jdufresne closed 5 years ago

jdufresne commented 5 years ago

Both Python 2 & Python 3 support representing Unicode strings with a u prefix. Can drop the _u() compat shim and let the interpreter handle it.