| 233 | |
| 234 | |
| 235 | typedef 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 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…