Changes between Initial Version and Version 1 of SortedDict
- Timestamp:
- Oct 14, 2007, 12:58:32 PM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SortedDict
v1 v1 1 http://code.djangoproject.com/browser/django/trunk/django/utils/datastructures.py 2 3 A dictionary that keeps its keys in the order in which they're inserted. 4 5 insert(index, key, value) 6 Inserts the key, value pair before the item with the given index." 7 8 value_for_index(index) 9 Returns the value of the item at the given zero-based index.