Differences From Artifact [a551f0ccc4]:
- File gluon/contrib/simplejson/ordered_dict.py — part of check-in [eba4a35a21] at 2011-08-08 04:53:38 on branch develop — Added web2py 1.98.2 (user: spiffy, size: 3370) [annotate] [blame] [check-ins using]
To Artifact [8c94ff18c0]:
- File gluon/contrib/simplejson/ordered_dict.py — part of check-in [5e6e1e2c0a] at 2011-11-20 05:28:20 on branch feature/web2py_auth — Upgraded to web2py 1.99.2 (user: spiffy, size: 3371) [annotate] [blame] [check-ins using] [more...]
︙ | |||
113 114 115 116 117 118 119 | 113 114 115 116 117 118 119 120 | + | if isinstance(other, OrderedDict): return len(self)==len(other) and \ all(p==q for p, q in zip(self.items(), other.items())) return dict.__eq__(self, other) def __ne__(self, other): return not self == other |