Missed one use of new PyDoc_STRVAR macro
This commit is contained in:
parent
6c123efe3d
commit
2c2e827029
|
@ -1675,9 +1675,9 @@ static PySequenceMethods list_as_sequence = {
|
|||
(intargfunc)list_inplace_repeat, /* sq_inplace_repeat */
|
||||
};
|
||||
|
||||
static char list_doc[] =
|
||||
PyDoc_STRVAR(list_doc,
|
||||
"list() -> new list\n"
|
||||
"list(sequence) -> new list initialized from sequence's items";
|
||||
"list(sequence) -> new list initialized from sequence's items");
|
||||
|
||||
staticforward PyObject * list_iter(PyObject *seq);
|
||||
|
||||
|
|
Loading…
Reference in New Issue