MCPcopy Create free account
hub / github.com/simplejson/simplejson / _ScanCtx

Class _ScanCtx

tsan_stress_simplejson.py:126–141  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

124
125
126class _ScanCtx:
127 __slots__ = (
128 "encoding", "strict", "object_hook", "object_pairs_hook",
129 "array_hook", "parse_float", "parse_int", "parse_constant", "memo",
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
144def _make_shared_scanner():

Callers 1

_make_shared_scannerFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…