From: Tim Peters Date: Sun, 2 Sep 2001 06:29:48 +0000 (+0000) Subject: Repair apparent cut'n'pasteo in tuple() docstring. X-Git-Tag: v2.2a3~156 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9577761337af6f3d052ea793b25656bcea2c92c9;p=thirdparty%2FPython%2Fcpython.git Repair apparent cut'n'pasteo in tuple() docstring. --- diff --git a/Objects/tupleobject.c b/Objects/tupleobject.c index 6401dcafa218..78b80e3b4803 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.";