diff options
Diffstat (limited to 'Doc/includes/custom.c')
-rw-r--r-- | Doc/includes/custom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/includes/custom.c b/Doc/includes/custom.c index f361baf..26ca754 100644 --- a/Doc/includes/custom.c +++ b/Doc/includes/custom.c @@ -9,7 +9,7 @@ typedef struct { static PyTypeObject CustomType = { PyVarObject_HEAD_INIT(NULL, 0) .tp_name = "custom.Custom", - .tp_doc = "Custom objects", + .tp_doc = PyDoc_STR("Custom objects"), .tp_basicsize = sizeof(CustomObject), .tp_itemsize = 0, .tp_flags = Py_TPFLAGS_DEFAULT, |