File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -6187,6 +6187,8 @@ static PyTypeObject MethInstance_Type = {
6187
6187
.tp_new = PyType_GenericNew ,
6188
6188
.tp_flags = Py_TPFLAGS_DEFAULT ,
6189
6189
.tp_methods = meth_instance_methods ,
6190
+ .tp_doc = PyDoc_STR (
6191
+ "Class with normal (instance) methods to test calling conventions" ),
6190
6192
};
6191
6193
6192
6194
static PyMethodDef meth_class_methods [] = {
@@ -6207,6 +6209,8 @@ static PyTypeObject MethClass_Type = {
6207
6209
.tp_new = PyType_GenericNew ,
6208
6210
.tp_flags = Py_TPFLAGS_DEFAULT ,
6209
6211
.tp_methods = meth_class_methods ,
6212
+ .tp_doc = PyDoc_STR (
6213
+ "Class with class methods to test calling conventions" ),
6210
6214
};
6211
6215
6212
6216
static PyMethodDef meth_static_methods [] = {
@@ -6227,6 +6231,8 @@ static PyTypeObject MethStatic_Type = {
6227
6231
.tp_new = PyType_GenericNew ,
6228
6232
.tp_flags = Py_TPFLAGS_DEFAULT ,
6229
6233
.tp_methods = meth_static_methods ,
6234
+ .tp_doc = PyDoc_STR (
6235
+ "Class with static methods to test calling conventions" ),
6230
6236
};
6231
6237
6232
6238
You can’t perform that action at this time.
0 commit comments