remove needless tp_getattro entries

This commit is contained in:
Nico von Geyso
2013-03-12 15:29:22 +01:00
parent 511b760a56
commit cd07b9edac
3 changed files with 3 additions and 3 deletions

View File

@@ -542,7 +542,7 @@ PyTypeObject IndexIterType = {
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
PyObject_GenericGetAttr, /* tp_getattro */
0, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /* tp_flags */

View File

@@ -446,7 +446,7 @@ PyTypeObject RefLogEntryType = {
0, /* tp_iternext */
0, /* tp_methods */
RefLogEntry_members, /* tp_members */
0, /* tp_getset */
RefLogEntry_getseters, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */

View File

@@ -462,7 +462,7 @@ PyTypeObject TreeIterType = {
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
PyObject_GenericGetAttr, /* tp_getattro */
0, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /* tp_flags */