On Dec 22, 2006, at 9:49 PM, Guido van Rossum wrote: > - Talin asked for values to be list-like ... I really don't want > them to be list-like since that implies an ordering Will iter(keys()) and iter(values()) have the same relative order, as they do today? Ie, d == dict(zip(d.keys(), d.values())) -Tony