10 lines
227 B
Python
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 |