summaryrefslogtreecommitdiff
path: root/unidecode/__init__.py
Commit message (Collapse)AuthorAgeFilesLines
* Remove __init__.pyiTomaz Solc2021-02-051-4/+4
|
* More Python 2 compatibility code clean up.Tomaz Solc2021-02-051-1/+0
|
* Move Py3.5-compatible type annotations inline.Tomaz Solc2021-02-051-3/+4
|
* Drop support for Python 2 and 3.4.Tomaz Solc2021-02-051-17/+7
|
* Avoid exception chaining on Python 3.Tomaz Solc2021-01-081-4/+7
| | | | | | This avoids exceptions raised by errors='strict' from displaying as "During handling of the above exception ..." in the backtrace which can be confusing.
* Rename argument replace_char -> replace_strTomaz Solc2020-12-201-9/+9
|
* Add errors parameter to unidecode()Tomaz Solc2020-12-201-34/+76
| | | | This implements the idea in https://github.com/avian2/unidecode/pull/53
* Fix syntax error in an exampleJakub Wilk2018-02-191-1/+1
|
* Fix typosJakub Wilk2015-12-101-1/+1
|
* Fix docstringsTomaz Solc2015-11-171-9/+15
|
* Rename unidecode_fast to unidecode_expect_asciiTomaz Solc2015-11-171-4/+8
| | | | | Also, add unidecode_expect_nonascii. "unidecode" is now an alias for "unidecode_expect_ascii"
* Add unidecode_fast function to speedup mostly-ASCII transliterations.dukebody2015-11-141-6/+30
|
* Issue a warning if a surrogate char is encounteredTomaz Solc2014-12-071-0/+5
| | | | Also, improved the section in README regarding "narrow" Python builds.
* fix of importing definitionsKarol Sikora2014-11-251-1/+1
|
* Add vim modeline.Tomaz Solc2013-12-241-0/+1
|
* Make the warning refer to unidecode()'s caller.Tomaz Solc2013-01-261-1/+2
|
* Warn if argument is not a subclass of unicodeTomaz Solc2013-01-161-0/+8
|
* Always return a string object on Python 2.xTomaz Solc2011-09-221-1/+1
| | | | Before this patch, unidecode() returned a unicode object on Python 2.x if the input was a unicode object that contained ASCII characters. Behaviour on Python 3.x remains unchanged.
* Support for characters beyond BMP and below PUATomaz Solc2010-10-121-4/+4
|
* Handle tables that have less than 256 entries.Thomas Kluyver2010-10-121-1/+1
|
* Simplify code, and make a Python 3 version of the tests.Thomas Kluyver2010-10-051-45/+51
|
* DocumentationTomaz Solc2009-01-211-0/+8
|
* Initial import.Tomaz Solc2008-09-051-0/+40