(self)
| 130 | ) |
| 131 | |
| 132 | def __init__(self): |
| 133 | self.encoding = "utf-8" |
| 134 | self.strict = True |
| 135 | self.object_hook = None |
| 136 | self.object_pairs_hook = None |
| 137 | self.array_hook = None |
| 138 | self.parse_float = float |
| 139 | self.parse_int = int |
| 140 | self.parse_constant = float |
| 141 | self.memo = {} |
| 142 | |
| 143 | |
| 144 | def _make_shared_scanner(): |
nothing calls this directly
no outgoing calls
no test coverage detected