summaryrefslogtreecommitdiffstats
path: root/Modules/symtablemodule.c
diff options
context:
space:
mode:
Diffstat (limited to 'Modules/symtablemodule.c')
-rw-r--r--Modules/symtablemodule.c3
1 files changed, 2 insertions, 1 deletions
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 @@ symtable_symtable(PyObject *self, PyObject *args)
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 */
};