Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/simplejson-3.18.4-py3.8-linux-x86_64.egg/simplejson/raw_json.py: 67%
3 statements
« prev ^ index » next coverage.py v7.2.2, created at 2023-03-26 06:04 +0000
« prev ^ index » next coverage.py v7.2.2, created at 2023-03-26 06:04 +0000
1"""Implementation of RawJSON
2"""
4class RawJSON(object):
5 """Wrap an encoded JSON document for direct embedding in the output
7 """
8 def __init__(self, encoded_json):
9 self.encoded_json = encoded_json