Allow more docstrings to be removed during compilation in some modules

This commit is contained in:
Neal Norwitz 2002-08-13 22:20:41 +00:00
parent 5dc2a37f0f
commit 200788ce45
4 changed files with 40 additions and 38 deletions

View file

@ -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 */
};