Lines Matching refs:parse_int
37 PyObject *parse_int;
47 {"parse_int", T_OBJECT, offsetof(PyScannerObject, parse_int), READONLY, "parse_int"},
659 Py_VISIT(self->parse_int);
671 Py_CLEAR(self->parse_int);
918 May return other types if parse_int or parse_float are set
989 else if (!is_float && s->parse_int != (PyObject *) &PyLong_Type)
990 custom_func = s->parse_int;
1202 s->parse_int = PyObject_GetAttrString(ctx, "parse_int");
1203 if (s->parse_int == NULL)