# coding: utf-8 # AUTO-GENERATED FILE -- DO NOT EDIT """ json speedups """ __doc__ = """json speedups """ __name__ = '_json' __package__ = None def encode_basestring_ascii(basestring): """ encode_basestring_ascii(basestring) -> str Return an ASCII-only JSON representation of a Python string """ return "" class make_encoder(object): """ _iterencode(obj, _current_indent_level) -> iterable """ default = None encoder = None indent = None item_separator = None key_separator = None markers = None skipkeys = None sort_keys = None class make_scanner(object): """ JSON scanner object """ encoding = None object_hook = None object_pairs_hook = None parse_constant = None parse_float = None parse_int = None strict = None def scanstring(basestring, end, encoding, strict=True): """ scanstring(basestring, end, encoding, strict=True) -> (str, end) Scan the string s for a JSON string. End is the index of the character in s after the quote that started the JSON string. Unescapes all valid JSON string escape sequences and raises ValueError on attempt to decode an invalid string. If strict is False then literal control characters are allowed in the string. Returns a tuple of the decoded string and the index of the character in s after the end quote. """ return ("", None)