From: Michael W. Hudson Date: Fri, 19 Jul 2002 15:52:38 +0000 (+0000) Subject: Silly typo. Not sure how that got in. X-Git-Tag: v2.3c1~4928 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=206d8f818ff100caf0f959c746f2eaf6e9bebda0;p=thirdparty%2FPython%2Fcpython.git Silly typo. Not sure how that got in. --- diff --git a/Objects/sliceobject.c b/Objects/sliceobject.c index f2d84dad65d0..83af14f37e61 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} };