From 9577761337af6f3d052ea793b25656bcea2c92c9 Mon Sep 17 00:00:00 2001 From: Tim Peters Date: Sun, 2 Sep 2001 06:29:48 +0000 Subject: [PATCH] Repair apparent cut'n'pasteo in tuple() docstring. --- Objects/tupleobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objects/tupleobject.c b/Objects/tupleobject.c index 6401dcafa2..78b80e3b48 100644 --- a/Objects/tupleobject.c +++ b/Objects/tupleobject.c @@ -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."; -- 2.40.0