mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Patch #568124: Add doc string macros.
This commit is contained in:
parent
654c11ee3a
commit
14f8b4cfcb
63 changed files with 1509 additions and 1625 deletions
|
@ -90,8 +90,8 @@ static PyMethodDef enum_methods[] = {
|
|||
{NULL, NULL} /* sentinel */
|
||||
};
|
||||
|
||||
static char enum_doc[] =
|
||||
"enumerate(iterable) -> create an enumerating-iterator";
|
||||
PyDoc_STRVAR(enum_doc,
|
||||
"enumerate(iterable) -> create an enumerating-iterator");
|
||||
|
||||
PyTypeObject PyEnum_Type = {
|
||||
PyObject_HEAD_INIT(&PyType_Type)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue