App Engine Python SDK  v1.6.9 rev.445
The Python runtime is available as an experimental Preview feature.
Public Member Functions | Public Attributes | List of all members
google.appengine._internal.django.utils.datastructures.SortedDict Class Reference
Inheritance diagram for google.appengine._internal.django.utils.datastructures.SortedDict:

Public Member Functions

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
 

Public Attributes

 keyOrder
 

Detailed Description

A dictionary that keeps its keys in the order in which they're inserted.

Member Function Documentation

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: