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

Class _PyScannerObject

simplejson/_speedups.c:235–248  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

233
234
235typedef struct _PyScannerObject {
236 PyObject_HEAD
237 PyObject *module_ref;
238 PyObject *encoding;
239 PyObject *strict_bool;
240 int strict;
241 PyObject *object_hook;
242 PyObject *pairs_hook;
243 PyObject *array_hook;
244 PyObject *parse_float;
245 PyObject *parse_int;
246 PyObject *parse_constant;
247 PyObject *memo;
248} PyScannerObject;
249
250/* X-macro listing every PyObject* field in PyScannerObject that must
251 * be visited by tp_traverse and released by tp_clear. Keep in sync with

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…