Changes between Version 7 and Version 8 of SortedDict


Ignore:
Timestamp:
Oct 2, 2011, 8:08:08 AM (13 years ago)
Author:
Juarez Bochi
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SortedDict

    v7 v8  
    3434d2['c'] = 3
    3535}}}
     36
     37This also works.
     38{{{
     39d = SortedDict([
     40        ('b', 1),
     41        ('a', 2),
     42        ('c', 3),
     43])
     44}}}
Back to Top