diff options
Diffstat (limited to 'Doc/includes/custom2.c')
-rw-r--r-- | Doc/includes/custom2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/includes/custom2.c b/Doc/includes/custom2.c index 5bacab7..2a3c59f 100644 --- a/Doc/includes/custom2.c +++ b/Doc/includes/custom2.c @@ -98,7 +98,7 @@ static PyMethodDef Custom_methods[] = { static PyTypeObject CustomType = { PyVarObject_HEAD_INIT(NULL, 0) .tp_name = "custom2.Custom", - .tp_doc = "Custom objects", + .tp_doc = PyDoc_STR("Custom objects"), .tp_basicsize = sizeof(CustomObject), .tp_itemsize = 0, .tp_flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, |