Differences From Artifact [f221e2871e]:
- File gluon/contrib/simplejson/encoder.py — part of check-in [eba4a35a21] at 2011-08-08 04:53:38 on branch develop — Added web2py 1.98.2 (user: spiffy, size: 18239) [annotate] [blame] [check-ins using]
To Artifact [42e8d5e8d4]:
- File gluon/contrib/simplejson/encoder.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: 18240) [annotate] [blame] [check-ins using] [more...]
| ︙ | ︙ | |||
496 497 498 499 500 501 502 |
o = _default(o)
for chunk in _iterencode(o, _current_indent_level):
yield chunk
if markers is not None:
del markers[markerid]
return _iterencode
| > | 496 497 498 499 500 501 502 503 |
o = _default(o)
for chunk in _iterencode(o, _current_indent_level):
yield chunk
if markers is not None:
del markers[markerid]
return _iterencode
|