Changes between Initial Version and Version 1 of SortedDict


Ignore:
Timestamp:
Oct 14, 2007, 12:58:32 PM (17 years ago)
Author:
James Wheare
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SortedDict

    v1 v1  
     1http://code.djangoproject.com/browser/django/trunk/django/utils/datastructures.py
     2
     3A dictionary that keeps its keys in the order in which they're inserted.
     4
     5insert(index, key, value)
     6Inserts the key, value pair before the item with the given index."
     7
     8value_for_index(index)
     9Returns the value of the item at the given zero-based index.
Back to Top