diff options
Diffstat (limited to 'Objects/tupleobject.c')
-rw-r--r-- | Objects/tupleobject.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Objects/tupleobject.c b/Objects/tupleobject.c index 203801e..a207102 100644 --- a/Objects/tupleobject.c +++ b/Objects/tupleobject.c @@ -524,11 +524,11 @@ tuple_subtype_new(PyTypeObject *type, PyObject *args, PyObject *kwds) return new; } -static char tuple_doc[] = +PyDoc_STRVAR(tuple_doc, "tuple() -> an empty tuple\n" "tuple(sequence) -> tuple initialized from sequence's items\n" "\n" -"If the argument is a tuple, the return value is the same object."; +"If the argument is a tuple, the return value is the same object."); static PySequenceMethods tuple_as_sequence = { (inquiry)tuplelength, /* sq_length */ |