SP/web2py/gluon/contrib/simplejson.py

10 lines
227 B
Python
Raw Normal View History

2018-10-25 15:33:07 +00:00
# -*- coding: utf-8 -*-
"""
Dummy simplejson module for backwards compatibility with applications that import simplejson from gluon.contrib
TODO: Remove this.
"""
from json import *
class JSONDecodeError(ValueError):
pass