Home | History | Annotate | Download | only in Modules

Lines Matching defs:dispatch_table

116 /* copy_reg.dispatch_table, {type_object: pickling_function} */

117 static PyObject *dispatch_table;
353 PyObject *dispatch_table;
2706 * copy_reg.dispatch_table, the object's __reduce_ex__ method,
2709 __reduce__ = PyDict_GetItem(dispatch_table, (PyObject *)type);
3015 self->dispatch_table = NULL;
3072 self->dispatch_table = PyObject_GetAttr(m, dispatch_table_str);
3074 if (self->dispatch_table == NULL)
3078 self->dispatch_table = dispatch_table;
3079 Py_INCREF(dispatch_table);
3127 Py_XDECREF(self->dispatch_table);
3142 Py_VISIT(self->dispatch_table);
3156 Py_CLEAR(self->dispatch_table);
5851 INIT_STR(dispatch_table);
5858 dispatch_table = PyObject_GetAttr(copyreg, dispatch_table_str);
5859 if (!dispatch_table) return -1;