Files
web2py/gluon/contrib/simplejson.py
Leonel Câmara a9ee9a6b58 remove simplejson
2016-05-11 00:47:23 +01:00

10 lines
227 B
Python

# -*- 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