Repair apparent cut'n'pasteo in tuple() docstring.

This commit is contained in:
Tim Peters 2001-09-02 06:29:48 +00:00
parent b86677079d
commit 9577761337

View file

@ -522,7 +522,7 @@ tuple_subtype_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
}
static char tuple_doc[] =
"tuple(sequence) -> list\n\
"tuple(sequence) -> tuple\n\
\n\
Return a tuple whose items are the same as those of the argument sequence.\n\
If the argument is a tuple, the return value is the same object.";