summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorRamiro Morales <cramm0@gmail.com>2013-06-28 22:38:13 -0300
committerRamiro Morales <cramm0@gmail.com>2013-06-28 22:38:13 -0300
commit7379d9aceab01e007966b5fe1f47ba7590deb887 (patch)
treea03857630a0074139af9a8c5311e6c6008fd461d /docs
parent8eadbc5a03d06f5bfedfa3fad35ad0801d2ab6ff (diff)
Removed insert(), value_for_insert() SortedDict methods deprecated in Django 1.5.
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/utils.txt14
1 files changed, 0 insertions, 14 deletions
diff --git a/docs/ref/utils.txt b/docs/ref/utils.txt
index 8d722829fb..6fa829ef22 100644
--- a/docs/ref/utils.txt
+++ b/docs/ref/utils.txt
@@ -107,20 +107,6 @@ to distinguish caches by the ``Accept-language`` header.
The :class:`django.utils.datastructures.SortedDict` class is a dictionary
that keeps its keys in the order in which they're inserted.
- ``SortedDict`` adds two additional methods to the standard Python ``dict``
- class:
-
- .. method:: insert(index, key, value)
-
- .. deprecated:: 1.5
-
- Inserts the key, value pair before the item with the given index.
-
- .. method:: value_for_index(index)
-
- .. deprecated:: 1.5
-
- Returns the value of the item at the given zero-based index.
Creating a new SortedDict
-------------------------