summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorMichael W. Hudson <mwh@python.net>2002-07-19 15:52:38 (GMT)
committerMichael W. Hudson <mwh@python.net>2002-07-19 15:52:38 (GMT)
commit206d8f818ff100caf0f959c746f2eaf6e9bebda0 (patch)
tree175ea00cd40a627c7fe777fc5ea42243a4f898cb /Objects
parent4da01ed9a8fa523b31b4b42f092571d41002e066 (diff)
downloadcpython-206d8f818ff100caf0f959c746f2eaf6e9bebda0.zip
cpython-206d8f818ff100caf0f959c746f2eaf6e9bebda0.tar.gz
cpython-206d8f818ff100caf0f959c746f2eaf6e9bebda0.tar.bz2
Silly typo. Not sure how that got in.
Diffstat (limited to 'Objects')
-rw-r--r--Objects/sliceobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/sliceobject.c b/Objects/sliceobject.c
index f2d84da..83af14f 100644
--- a/Objects/sliceobject.c
+++ b/Objects/sliceobject.c
@@ -249,7 +249,7 @@ S. Out of bounds indices are clipped in a manner consistent with the\n\
handling of normal slices.");
static PyMethodDef slice_methods[] = {
- {"indices", (PyCFuntion)slice_indices,
+ {"indices", (PyCFunction)slice_indices,
METH_O, slice_indices_doc},
{NULL, NULL}
};