Lines Matching refs:dispatch_table
116 /* copy_reg.dispatch_table, {type_object: pickling_function} */
117 static PyObject *dispatch_table;
351 PyObject *dispatch_table;
2752 * copy_reg.dispatch_table, the object's __reduce_ex__ method,
2755 __reduce__ = PyDict_GetItem(dispatch_table, (PyObject *)type);
3066 self->dispatch_table = NULL;
3123 self->dispatch_table = PyObject_GetAttr(m, dispatch_table_str);
3125 if (self->dispatch_table == NULL)
3129 self->dispatch_table = dispatch_table;
3130 Py_INCREF(dispatch_table);
3178 Py_XDECREF(self->dispatch_table);
3193 Py_VISIT(self->dispatch_table);
3207 Py_CLEAR(self->dispatch_table);
5913 INIT_STR(dispatch_table);
5920 dispatch_table = PyObject_GetAttr(copyreg, dispatch_table_str);
5921 if (!dispatch_table) return -1;