Differences From Artifact [c0be9ced86]:
- File gluon/contrib/simplejson/decoder.py — part of check-in [eba4a35a21] at 2011-08-08 04:53:38 on branch develop — Added web2py 1.98.2 (user: spiffy, size: 15200) [annotate] [blame] [check-ins using]
To Artifact [40f329f3c5]:
- File gluon/contrib/simplejson/decoder.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: 15201) [annotate] [blame] [check-ins using] [more...]
| ︙ | ︙ | |||
416 417 418 419 420 421 422 |
"""
try:
obj, end = self.scan_once(s, idx)
except StopIteration:
raise JSONDecodeError("No JSON object could be decoded", s, idx)
return obj, end
| > | 416 417 418 419 420 421 422 423 |
"""
try:
obj, end = self.scan_once(s, idx)
except StopIteration:
raise JSONDecodeError("No JSON object could be decoded", s, idx)
return obj, end
|