summaryrefslogtreecommitdiff
path: root/simplejson/raw_json.py
blob: 2071a70206b83bf55d6b6e2b8b37c4d051a79e9e (plain)
1
2
3
4
5
6
7
8
9
"""Implementation of RawJSON
"""

class RawJSON(object):
    """Wrap an encoded JSON document for direct embedding in the output

    """
    def __init__(self, encoded_json):
        self.encoded_json = encoded_json