mirror of
https://github.com/python/cpython.git
synced 2025-12-15 21:44:50 +00:00
#3247: get rid of Py_FindMethod
Third step: unix-only modules. Really remove the function this time.
This commit is contained in:
parent
7c265a1943
commit
1f900f1f69
8 changed files with 105 additions and 96 deletions
|
|
@ -324,12 +324,6 @@ static PyMethodDef dbm_methods[] = {
|
|||
{NULL, NULL} /* sentinel */
|
||||
};
|
||||
|
||||
static PyObject *
|
||||
dbm_getattr(dbmobject *dp, char *name)
|
||||
{
|
||||
return Py_FindMethod(dbm_methods, (PyObject *)dp, name);
|
||||
}
|
||||
|
||||
static PyTypeObject Dbmtype = {
|
||||
PyVarObject_HEAD_INIT(NULL, 0)
|
||||
"_dbm.dbm",
|
||||
|
|
@ -337,7 +331,7 @@ static PyTypeObject Dbmtype = {
|
|||
0,
|
||||
(destructor)dbm_dealloc, /*tp_dealloc*/
|
||||
0, /*tp_print*/
|
||||
(getattrfunc)dbm_getattr, /*tp_getattr*/
|
||||
0, /*tp_getattr*/
|
||||
0, /*tp_setattr*/
|
||||
0, /*tp_compare*/
|
||||
0, /*tp_repr*/
|
||||
|
|
@ -350,7 +344,15 @@ static PyTypeObject Dbmtype = {
|
|||
0, /*tp_getattro*/
|
||||
0, /*tp_setattro*/
|
||||
0, /*tp_as_buffer*/
|
||||
Py_TPFLAGS_DEFAULT, /*tp_xxx4*/
|
||||
Py_TPFLAGS_DEFAULT, /*tp_flags*/
|
||||
0, /*tp_doc*/
|
||||
0, /*tp_traverse*/
|
||||
0, /*tp_clear*/
|
||||
0, /*tp_richcompare*/
|
||||
0, /*tp_weaklistoffset*/
|
||||
0, /*tp_iter*/
|
||||
0, /*tp_iternext*/
|
||||
dbm_methods, /*tp_methods*/
|
||||
};
|
||||
|
||||
/* ----------------------------------------------------------------- */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue