CARVIEW |
The web framework for perfectionists with deadlines.
Issues
SortedDict
SortedDict is deprecated as of Django 1.7 and will be removed in Django 1.9. Use collections.OrderedDict instead. Available in Python 2.7 and 3.1+.
One of Django's custom data structure classes
source: https://github.com/django/django/blob/1.8/django/utils/datastructures.py#L124
A dictionary that keeps its keys in the order in which they're inserted.
Creating new SortedDict
If you create new SortedDict using basic Python dict, SortedDict will not preserve key order. The reason is that SortedDict will receive (basic Python) unordered dictionary and therefore doesn't know about key order.
This does NOT work.
d = SortedDict({ 'b': 1, 'a': 2, 'c': 3 })
This works. SortedDict got keys in right order.
from django.utils.datastructures import SortedDict d2 = SortedDict() d2['b'] = 1 d2['a'] = 2 d2['c'] = 3
This also works.
d = SortedDict([ ('b', 1), ('a', 2), ('c', 3), ])
Download in other formats:
Django Links
Learn More
Get Involved
Follow Us
- Hosting by In-kind donors
- Design by Threespot &
© 2005-2025 Django SoftwareFoundation unless otherwise noted. Django is a registered trademark of the Django Software Foundation.