Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/simplejson/raw_json.py: 67%
3 statements
« prev ^ index » next coverage.py v7.2.7, created at 2023-06-07 06:20 +0000
« prev ^ index » next coverage.py v7.2.7, created at 2023-06-07 06:20 +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