1
dreamersdw Nov 12, 2011
INSERT INTO Persons (last_name, first_name) VALUES ('Tom', 'Wilson')
|
2
iiduce Nov 12, 2011
The dict is a sorteddict,which presents the items in the order they are added.
https://code.djangoproject.com/wiki/SortedDict |
3
kaiix Nov 12, 2011
sorteddict python的dict是不保序的 所以django用了一个list来保存顺序 见django.utils.datastructure
|