diff options
author | Michael W. Hudson <mwh@python.net> | 2002-07-19 15:52:38 (GMT) |
---|---|---|
committer | Michael W. Hudson <mwh@python.net> | 2002-07-19 15:52:38 (GMT) |
commit | 206d8f818ff100caf0f959c746f2eaf6e9bebda0 (patch) | |
tree | 175ea00cd40a627c7fe777fc5ea42243a4f898cb /Objects/sliceobject.c | |
parent | 4da01ed9a8fa523b31b4b42f092571d41002e066 (diff) | |
download | cpython-206d8f818ff100caf0f959c746f2eaf6e9bebda0.zip cpython-206d8f818ff100caf0f959c746f2eaf6e9bebda0.tar.gz cpython-206d8f818ff100caf0f959c746f2eaf6e9bebda0.tar.bz2 |
Silly typo. Not sure how that got in.
Diffstat (limited to 'Objects/sliceobject.c')
-rw-r--r-- | Objects/sliceobject.c | 2 |
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} }; |