mirror of
https://github.com/python/cpython.git
synced 2025-08-31 14:07:50 +00:00
Allow more docstrings to be removed during compilation in some modules
This commit is contained in:
parent
5dc2a37f0f
commit
200788ce45
4 changed files with 40 additions and 38 deletions
|
@ -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 */
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue