diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2002-08-13 22:20:41 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2002-08-13 22:20:41 (GMT) |
commit | 200788ce4594bb4ddf47b319f45d99c8206dc0ec (patch) | |
tree | 5898dd92de09d73df8baa03e54053fe726057619 /Modules/symtablemodule.c | |
parent | 5dc2a37f0f42db96b30c35d273e1ea09e479e478 (diff) | |
download | cpython-200788ce4594bb4ddf47b319f45d99c8206dc0ec.zip cpython-200788ce4594bb4ddf47b319f45d99c8206dc0ec.tar.gz cpython-200788ce4594bb4ddf47b319f45d99c8206dc0ec.tar.bz2 |
Allow more docstrings to be removed during compilation in some modules
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 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 */ }; |