projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b866770
)
Repair apparent cut'n'pasteo in tuple() docstring.
author
Tim Peters
<tim.peters@gmail.com>
Sun, 2 Sep 2001 06:29:48 +0000
(06:29 +0000)
committer
Tim Peters
<tim.peters@gmail.com>
Sun, 2 Sep 2001 06:29:48 +0000
(06:29 +0000)
Objects/tupleobject.c
patch
|
blob
|
history
diff --git
a/Objects/tupleobject.c
b/Objects/tupleobject.c
index 6401dcafa218a377a48d49090b4c29b902e7a3bc..78b80e3b4803a167e39879e970232f7cfb949516 100644
(file)
--- 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.";