diff options
Diffstat (limited to 'Modules/symtablemodule.c')
-rw-r--r-- | Modules/symtablemodule.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Modules/symtablemodule.c b/Modules/symtablemodule.c index 9854a1cf6c..f605c2276c 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 */ }; |