Lines Matching refs:dispatch_table
117 static PyObject *dispatch_table; variable
351 PyObject *dispatch_table; member
2771 __reduce__ = PyDict_GetItem(dispatch_table, (PyObject *)type); in save()
3082 self->dispatch_table = NULL; in newPicklerobject()
3139 self->dispatch_table = PyObject_GetAttr(m, dispatch_table_str); in newPicklerobject()
3141 if (self->dispatch_table == NULL) in newPicklerobject()
3145 self->dispatch_table = dispatch_table; in newPicklerobject()
3146 Py_INCREF(dispatch_table); in newPicklerobject()
3194 Py_XDECREF(self->dispatch_table); in Pickler_dealloc()
3209 Py_VISIT(self->dispatch_table); in Pickler_traverse()
3223 Py_CLEAR(self->dispatch_table); in Pickler_clear()
5899 INIT_STR(dispatch_table); in init_stuff()
5906 dispatch_table = PyObject_GetAttr(copyreg, dispatch_table_str); in init_stuff()
5907 if (!dispatch_table) return -1; in init_stuff()