summaryrefslogtreecommitdiff
path: root/docs/faq/troubleshooting.txt
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2014-06-23 09:28:42 +0200
committerClaude Paroz <claude@2xlibre.net>2014-06-24 09:03:06 +0200
commit198ce3073c763ab17cb5e8d012d64d8ea756282d (patch)
treed14aa367472c48f41493496a0ea4971804f1efe7 /docs/faq/troubleshooting.txt
parent48a2e027bf5eeca75b7694ea0b3c271dc46ae094 (diff)
[1.7.x] Fixed #22880 -- Added FAQ entry about UnicodeDecodeError
Thanks Víðir Valberg Guðmundsson for the report and Tim Graham for the review. Backport of 460ec09d2e from master.
Diffstat (limited to 'docs/faq/troubleshooting.txt')
-rw-r--r--docs/faq/troubleshooting.txt35
1 files changed, 35 insertions, 0 deletions
diff --git a/docs/faq/troubleshooting.txt b/docs/faq/troubleshooting.txt
index da286cf4e2..d851a0546a 100644
--- a/docs/faq/troubleshooting.txt
+++ b/docs/faq/troubleshooting.txt
@@ -49,3 +49,38 @@ use the full path to the file, like so:
``python C:\pythonXY\Scripts\django-admin.py``.
.. _virtualenv: http://www.virtualenv.org/
+
+Miscellaneous
+=============
+
+I'm getting a ``UnicodeDecodeError``. What am I doing wrong?
+------------------------------------------------------------
+
+This class of errors happen when a bytestring containing non-ASCII sequences is
+transformed into a Unicode string and the specified encoding is incorrect. The
+output generally looks like this::
+
+ UnicodeDecodeError: 'ascii' codec can't decode byte 0x?? in position ?:
+ ordinal not in range(128)
+
+The resolution mostly depends on the context, however here are two common
+pitfalls producing this error:
+
+* Your system locale may be a default ASCII locale, like the "C" locale on
+ UNIX-like systems (can be checked by the ``locale`` command). If it's the
+ case, please refer to your system documentation to learn how you can change
+ this to a UTF-8 locale.
+
+* You created raw bytestrings, which is easy to do on Python 2::
+
+ my_string = 'café'
+
+ Either use the ``u''`` prefix or even better, add the
+ ``from __future__ import unicode_literals`` line at the top of your file
+ so that your code will be compatible with Python 3.2 which doesn't support
+ the ``u''`` prefix.
+
+Related resources:
+
+* :doc:`Unicode in Django </ref/unicode>`
+* https://wiki.python.org/moin/UnicodeDecodeError