Allow more docstrings to be removed during compilation in some modules
diff --git a/Modules/symtablemodule.c b/Modules/symtablemodule.c
index 9854a1c..f605c22 100644
--- a/Modules/symtablemodule.c
+++ b/Modules/symtablemodule.c
@@ -39,7 +39,8 @@
 
 static PyMethodDef symtable_methods[] = {
 	{"symtable",	symtable_symtable,	METH_VARARGS,
-	 "Return symbol and scope dictionaries used internally by compiler."},
+	 PyDoc_STR("Return symbol and scope dictionaries"
+	 	   " used internally by compiler.")},
 	{NULL,		NULL}		/* sentinel */
 };