diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-09-02 06:29:48 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-09-02 06:29:48 (GMT) |
commit | 9577761337af6f3d052ea793b25656bcea2c92c9 (patch) | |
tree | 16234f83c445a5c84e838ab1535113b0934f64f5 | |
parent | b86677079d95a8296dbc0b5a21311cb68a3c7f40 (diff) | |
download | cpython-9577761337af6f3d052ea793b25656bcea2c92c9.zip cpython-9577761337af6f3d052ea793b25656bcea2c92c9.tar.gz cpython-9577761337af6f3d052ea793b25656bcea2c92c9.tar.bz2 |
Repair apparent cut'n'pasteo in tuple() docstring.
-rw-r--r-- | Objects/tupleobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/tupleobject.c b/Objects/tupleobject.c index 6401dca..78b80e3 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."; |