summaryrefslogtreecommitdiff
path: root/docs/ref/unicode.txt
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2012-06-07 18:36:26 +0200
committerClaude Paroz <claude@2xlibre.net>2012-06-07 18:36:53 +0200
commit5e6ded2e58597fa324c550bad35a30ee630ce223 (patch)
treef3ca5fe9c7a811d0757b8849476f090f08a6359e /docs/ref/unicode.txt
parent87ff89d12d109066ff355ed267787d32a6b5aeb7 (diff)
Fixed #18363 -- Added Python 3 compatibility layer.
Thanks Vinay Sajip for the support of his django3 branch and Alex Gaynor, kezabelle, YorikSar for the review.
Diffstat (limited to 'docs/ref/unicode.txt')
-rw-r--r--docs/ref/unicode.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/ref/unicode.txt b/docs/ref/unicode.txt
index 85e48ae15d..b9253e70b3 100644
--- a/docs/ref/unicode.txt
+++ b/docs/ref/unicode.txt
@@ -65,7 +65,8 @@ Python 2 with unicode literals or Python 3::
my_string = b"This is a bytestring"
my_unicode = "This is an Unicode string"
-
+
+See also :doc:`Python 3 compatibility </topics/python3>`.
.. admonition:: Warning