summaryrefslogtreecommitdiffstats
path: root/Modules/symtablemodule.c
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2002-08-13 22:20:41 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2002-08-13 22:20:41 (GMT)
commit200788ce4594bb4ddf47b319f45d99c8206dc0ec (patch)
tree5898dd92de09d73df8baa03e54053fe726057619 /Modules/symtablemodule.c
parent5dc2a37f0f42db96b30c35d273e1ea09e479e478 (diff)
downloadcpython-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.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 */
};