2 years ago
Automated merge with ssh://team@pocoo.org/sandbox
1.1 --- a/odict.py Wed Jun 17 08:44:12 2009 +0200 1.2 +++ b/odict.py Fri Aug 07 17:50:32 2009 +0200 1.3 @@ -102,6 +102,9 @@ 1.4 >>> l.insert(1, ('x', 0)) 1.5 >>> odict(l) 1.6 odict.odict([('a', 42), ('x', 0), ('b', 23), ('c', 19)]) 1.7 + 1.8 + :copyright: (c) 2008 by Armin Ronacher and PEP 273 authors. 1.9 + :license: modified BSD license. 1.10 """ 1.11 from itertools import izip, imap 1.12 from copy import deepcopy