summaryrefslogtreecommitdiff
path: root/docs/topics/python3.txt
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2014-11-19 12:22:23 -0500
committerTim Graham <timograham@gmail.com>2015-01-17 08:40:23 -0500
commitc820892eed9ea10879270e64e8109dc44829756a (patch)
tree3edb914f3eeac75acb72bc60a94b991f9b211902 /docs/topics/python3.txt
parent41f0d3d3bc8b0a6831530e1176c6415f9ba45b0b (diff)
Removed django.utils.datastructures.SortedDict per deprecation timeline.
Diffstat (limited to 'docs/topics/python3.txt')
-rw-r--r--docs/topics/python3.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/python3.txt b/docs/topics/python3.txt
index 2f12809163..5dc2cf464c 100644
--- a/docs/topics/python3.txt
+++ b/docs/topics/python3.txt
@@ -181,7 +181,7 @@ versions of Python.
:meth:`dict.keys`, :meth:`dict.items` and :meth:`dict.values` return lists in
Python 2 and iterators in Python 3. :class:`~django.http.QueryDict` and the
-:class:`dict`-like classes defined in :mod:`django.utils.datastructures`
+:class:`dict`-like classes defined in ``django.utils.datastructures``
behave likewise in Python 3.
six_ provides compatibility functions to work around this change: