|
def | __new__ |
|
def | __init__ |
|
def | __deepcopy__ |
|
def | __setitem__ |
|
def | __delitem__ |
|
def | __iter__ |
|
def | pop |
|
def | popitem |
|
def | items |
|
def | iteritems |
|
def | keys |
|
def | iterkeys |
|
def | values |
|
def | itervalues |
|
def | update |
|
def | setdefault |
|
def | value_for_index |
|
def | insert |
|
def | copy |
|
def | __repr__ |
|
def | clear |
|
A dictionary that keeps its keys in the order in which they're inserted.
def google.appengine._internal.django.utils.datastructures.SortedDict.__repr__ |
( |
|
self | ) |
|
Replaces the normal dict.__repr__ with a version that returns the keys
in their sorted order.
def google.appengine._internal.django.utils.datastructures.SortedDict.copy |
( |
|
self | ) |
|
Returns a copy of this object.
def google.appengine._internal.django.utils.datastructures.SortedDict.insert |
( |
|
self, |
|
|
|
index, |
|
|
|
key, |
|
|
|
value |
|
) |
| |
Inserts the key, value pair before the item with the given index.
def google.appengine._internal.django.utils.datastructures.SortedDict.value_for_index |
( |
|
self, |
|
|
|
index |
|
) |
| |
Returns the value of the item at the given zero-based index.
The documentation for this class was generated from the following file:
- code/googleappengine-read-only/python/google/appengine/_internal/django/utils/datastructures.py