add some example docstrings using PyDoc_STR
diff --git a/Modules/xxsubtype.c b/Modules/xxsubtype.c
index c826b6e..ffbc72b 100644
--- a/Modules/xxsubtype.c
+++ b/Modules/xxsubtype.c
@@ -65,17 +65,17 @@
 
 static PyMethodDef spamlist_methods[] = {
 	{"getstate", (PyCFunction)spamlist_getstate, METH_VARARGS,
-	 	"getstate() -> state"},
+	 	PyDoc_STR("getstate() -> state")},
 	{"setstate", (PyCFunction)spamlist_setstate, METH_VARARGS,
-	 	"setstate(state)"},
+	 	PyDoc_STR("setstate(state)")},
 	/* These entries differ only in the flags; they are used by the tests
 	   in test.test_descr. */
 	{"classmeth", (PyCFunction)spamlist_specialmeth,
 		METH_VARARGS | METH_KEYWORDS | METH_CLASS,
-	 	"classmeth(*args, **kw)"},
+	 	PyDoc_STR("classmeth(*args, **kw)")},
 	{"staticmeth", (PyCFunction)spamlist_specialmeth,
 		METH_VARARGS | METH_KEYWORDS | METH_STATIC,
-	 	"staticmeth(*args, **kw)"},
+	 	PyDoc_STR("staticmeth(*args, **kw)")},
 	{NULL,	NULL},
 };
 
@@ -98,7 +98,7 @@
 
 static PyGetSetDef spamlist_getsets[] = {
 	{"state", (getter)spamlist_state_get, NULL,
-	 "an int variable for demonstration purposes"},
+	 PyDoc_STR("an int variable for demonstration purposes")},
 	{0}
 };
 
@@ -173,9 +173,9 @@
 
 static PyMethodDef spamdict_methods[] = {
 	{"getstate", (PyCFunction)spamdict_getstate, METH_VARARGS,
-	 	"getstate() -> state"},
+	 	PyDoc_STR("getstate() -> state")},
 	{"setstate", (PyCFunction)spamdict_setstate, METH_VARARGS,
-	 	"setstate(state)"},
+	 	PyDoc_STR("setstate(state)")},
 	{NULL,	NULL},
 };
 
@@ -192,7 +192,7 @@
 
 static PyMemberDef spamdict_members[] = {
 	{"state", T_INT, offsetof(spamdictobject, state), READONLY,
-	 "an int variable for demonstration purposes"},
+	 PyDoc_STR("an int variable for demonstration purposes")},
 	{0}
 };