MINI MINI MANI MO

Path : /usr/lib64/python3.6/json/__pycache__/
File Upload :
Current File : //usr/lib64/python3.6/json/__pycache__/encoder.cpython-36.opt-1.pyc

3


 \>"@sBdZddlZyddlmZWnek
r4dZYnXyddlmZWnek
r^dZYnXyddlmZ	Wnek
rdZ	YnXej
dZej
dZej
dZ
d	d
ddd
dddZx&edD]ZejeedjeqWedZddZepeZddZepeZGdddeZeeeeeeee e!ej"f
ddZ#dS)zImplementation of JSONEncoder
N)encode_basestring_ascii)encode_basestring)make_encoderz[\x00-\x1f\\"\b\f\n\r\t]z([\\"]|[^\ -~])s[-]z\\z\"z\bz\fz\nz\rz\t)\"

	 z	\u{0:04x}infcCsdd}dtj||dS)z5Return a JSON representation of a Python string

    cSst|jdS)Nr)
ESCAPE_DCTgroup)matchr$/usr/lib64/python3.6/json/encoder.pyreplace(sz%py_encode_basestring.<locals>.replacer)ESCAPEsub)srrrrpy_encode_basestring$srcCsdd}dtj||dS)zAReturn an ASCII-only JSON representation of a Python string

    cSsv|jd}yt|Stk
rpt|}|dkr<dj|S|d8}d|d?d@B}d|d@B}dj||SYnXdS)	Nriz	\u{0:04x}i
iiz\u{0:04x}\u{1:04x})rrKeyErrorordformat)rrns1s2rrrr4s

z+py_encode_basestring_ascii.<locals>.replacer)ESCAPE_ASCIIr)rrrrrpy_encode_basestring_ascii0sr c	@sNeZdZdZdZdZddddddddddd	Zd
dZdd
ZdddZ	dS)JSONEncoderaZExtensible JSON <http://json.org> encoder for Python data structures.

    Supports the following objects and types by default:

    +-------------------+---------------+
    | Python            | JSON          |
    +===================+===============+
    | dict              | object        |
    +-------------------+---------------+
    | list, tuple       | array         |
    +-------------------+---------------+
    | str               | string        |
    +-------------------+---------------+
    | int, float        | number        |
    +-------------------+---------------+
    | True              | true          |
    +-------------------+---------------+
    | False             | false         |
    +-------------------+---------------+
    | None              | null          |
    +-------------------+---------------+

    To extend this to recognize other objects, subclass and implement a
    ``.default()`` method with another method that returns a serializable
    object for ``o`` if possible, otherwise it should call the superclass
    implementation (to raise ``TypeError``).

    z, z: FTN)skipkeysensure_asciicheck_circular	allow_nan	sort_keysindent
separatorsdefaultc	CsZ||_||_||_||_||_||_|dk	r:|\|_|_n|dk	rHd|_|dk	rV||_dS)aConstructor for JSONEncoder, with sensible defaults.

        If skipkeys is false, then it is a TypeError to attempt
        encoding of keys that are not str, int, float or None.  If
        skipkeys is True, such items are simply skipped.

        If ensure_ascii is true, the output is guaranteed to be str
        objects with all incoming non-ASCII characters escaped.  If
        ensure_ascii is false, the output can contain non-ASCII characters.

        If check_circular is true, then lists, dicts, and custom encoded
        objects will be checked for circular references during encoding to
        prevent an infinite recursion (which would cause an OverflowError).
        Otherwise, no such check takes place.

        If allow_nan is true, then NaN, Infinity, and -Infinity will be
        encoded as such.  This behavior is not JSON specification compliant,
        but is consistent with most JavaScript based encoders and decoders.
        Otherwise, it will be a ValueError to encode such floats.

        If sort_keys is true, then the output of dictionaries will be
        sorted by key; this is useful for regression tests to ensure
        that JSON serializations can be compared on a day-to-day basis.

        If indent is a non-negative integer, then JSON array
        elements and object members will be pretty-printed with that
        indent level.  An indent level of 0 will only insert newlines.
        None is the most compact representation.

        If specified, separators should be an (item_separator, key_separator)
        tuple.  The default is (', ', ': ') if *indent* is ``None`` and
        (',', ': ') otherwise.  To get the most compact JSON representation,
        you should specify (',', ':') to eliminate whitespace.

        If specified, default is a function that gets called for objects
        that can't otherwise be serialized.  It should return a JSON encodable
        version of the object or raise a ``TypeError``.

        N,)	r"r#r$r%r&r'item_separator
key_separatorr))	selfr"r#r$r%r&r'r(r)rrr__init__hs+zJSONEncoder.__init__cCstd|jjdS)alImplement this method in a subclass such that it returns
        a serializable object for ``o``, or calls the base implementation
        (to raise a ``TypeError``).

        For example, to support arbitrary iterators, you could
        implement default like this::

            def default(self, o):
                try:
                    iterable = iter(o)
                except TypeError:
                    pass
                else:
                    return list(iterable)
                # Let the base class default method raise the TypeError
                return JSONEncoder.default(self, o)

        z,Object of type '%s' is not JSON serializableN)	TypeError	__class____name__)r-orrrr)szJSONEncoder.defaultcCsNt|tr |jrt|St|S|j|dd}t|ttfsDt|}dj|S)zReturn a JSON string representation of a Python data structure.

        >>> from json.encoder import JSONEncoder
        >>> JSONEncoder().encode({"foo": ["bar", "baz"]})
        '{"foo": ["bar", "baz"]}'

        T)	_one_shot)	
isinstancestrr#rr
iterencodelisttuplejoin)r-r2chunksrrrencodes	
zJSONEncoder.encodecCs|jri}nd}|jrt}nt}|jtjttfdd}|rvtdk	rv|j	dkrvt||j
||j	|j|j|j
|j|j	}n&t||j
||j	||j|j|j
|j|
}||dS)zEncode the given object and yield each string
        representation as available.

        For example::

            for chunk in JSONEncoder().iterencode(bigobject):
                mysocket.write(chunk)

        NcSsJ||krd}n$||krd}n||kr*d}n||S|sFtdt||S)NZNaNZInfinityz	-Infinityz2Out of range float values are not JSON compliant: )
ValueErrorrepr)r2r%Z_reprZ_infZ_neginftextrrrfloatstrsz(JSONEncoder.iterencode.<locals>.floatstrr)r$r#rrr%float__repr__INFINITYc_make_encoderr'r)r,r+r&r"_make_iterencode)r-r2r3markers_encoderr@_iterencoderrrr7s&


zJSONEncoder.iterencode)F)
r1
__module____qualname____doc__r+r,r.r)r<r7rrrrr!Is6r!csdk	rrd	
fdd		

fdd	
fddS)N c	3s|sdVdSdk	r6|}|kr.d||<d}dk	rh|d7}d|}|}||7}nd}}d}x|D]}|rd}n|}
|r||Vqz|dkr|dVqz|dkr|d	Vqz|dkr|d
Vqz
|r||Vqz
|
r||Vqz|V
|fr:||}n"
|	rR||}n
||}|EdHqzW|dk	r|d8}d|VdVdk	r|=dS)Nz[]zCircular reference detected[r	TFnulltruefalse]r)	Zlst_current_indent_levelmarkeridZbufnewline_indentZ	separatorfirstvaluer;)r=rG	_floatstr_indent_intstr_item_separatorrH_iterencode_dict_iterencode_listdictrAidintr5r8rFr6r9rrr]s\






z*_make_iterencode.<locals>._iterencode_listc
3sL|sdVdSdk	r6|}|kr.d||<dVdk	rh|d7}d|}|}|Vnd}}d}rt|jddd	}n|j}xx|D]n\}}|rnr|
rȈ|}n^|dkrd
}nP|dkrd}nB|dkrd
}n4|r|}n
rqntdt|d|r2d}n|V|V	V|r`|Vq|dkrrd
Vq|dkrd
Vq|dkrdVq|r|Vq|
rƈ|Vq|fr||}	n"|r||}	n
||}	|	EdHqW|dk	r2|d8}d|VdVdk	rH|=dS)Nz{}zCircular reference detected{rNr	TcSs|dS)Nrr)Zkvrrr<lambda>asz<_make_iterencode.<locals>._iterencode_dict.<locals>.<lambda>)keyrPFrQrOzkey z is not a string})sorteditemsr/r>)
ZdctrSrTrUr+rVrfrcrWr;)r=rGrXrYrZr[rHr\r]_key_separator	_skipkeys
_sort_keysr^rAr_r`r5r8rFr6r9rrr\Ms










z*_make_iterencode.<locals>._iterencode_dictc3s|r|Vn|dkr&dVn|dkr6dVn|dkrFdVn|r\|Vn|	rr|Vn|
fr||EdHnj|r||EdHnNdk	rֈ
|}|krΈd||<|}||EdHdk	r|=dS)NrOTrPFrQzCircular reference detectedr)r2rSrT)r=_defaultrGrXrZrHr\r]r^rAr_r`r5r8rFr6r9rrrHs2



z%_make_iterencode.<locals>._iterencoder)rFrjrGrYrXrgr[rirhr3r=r^rAr_r`r5r8r6r9rZr)r=rjrGrXrYrZr[rHr\r]rgrhrir^rAr_r`r5r8rFr6r9rrEs.84O,rE)$rKreZ_jsonrZc_encode_basestring_asciiImportErrorrZc_encode_basestringrrDcompilerrZHAS_UTF8rrangei
setdefaultchrrrArCrr objectr!r=r^r_r`r5r8r6r9__str__rErrrr<module>sT





	
>

OHA YOOOO