diff options
author | Tomaz Solc <tomaz.solc@tablix.org> | 2021-02-05 14:13:14 +0100 |
---|---|---|
committer | Tomaz Solc <tomaz.solc@tablix.org> | 2021-02-05 14:13:14 +0100 |
commit | d639c08b209ef839e205d31dafcc7c4ec46c71f4 (patch) | |
tree | 82eab1b82a20b4e61206c087ca6c16b7cf18c7cc | |
parent | 93e2f88e7fb2908f4c5c21ea9a735a4958b959a2 (diff) | |
download | unidecode-d639c08b209ef839e205d31dafcc7c4ec46c71f4.tar.gz |
Add missing backslashes.
-rw-r--r-- | README.rst | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -188,7 +188,7 @@ Unidecode produces completely wrong results (e.g. "u" with diaeresis translitera ``repr()`` and consult the `Unicode HOWTO <https://docs.python.org/3/howto/unicode.html>`_. -Why does Unidecode not replace \u and \U backslash escapes in my strings? +Why does Unidecode not replace \\u and \\U backslash escapes in my strings? Unidecode knows nothing about escape sequences. Interpreting these sequences and replacing them with actual Unicode characters in string literals is the task of the Python interpreter. If you are asking this question you are |