Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/simplejson-3.20.1-py3.11-linux-x86_64.egg/simplejson/raw_json.py: 75%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

4 statements  

1"""Implementation of RawJSON 

2""" 

3 

4class RawJSON(object): 

5 """Wrap an encoded JSON document for direct embedding in the output 

6 

7 """ 

8 def __init__(self, encoded_json): 

9 self.encoded_json = encoded_json