From: Guido van Rossum Date: Thu, 8 Aug 1996 18:43:10 +0000 (+0000) Subject: Typo: PySequence_Lenth -> PySequence_Length. X-Git-Tag: v1.4b2~9 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=578cedde3516a7b5496f0253be0ade8bad51db6a;p=thirdparty%2FPython%2Fcpython.git Typo: PySequence_Lenth -> PySequence_Length. --- diff --git a/Include/abstract.h b/Include/abstract.h index fcb5fe6ea54a..53b419320ee4 100644 --- a/Include/abstract.h +++ b/Include/abstract.h @@ -621,7 +621,7 @@ xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/ */ - int PySequence_Lenth Py_PROTO((PyObject *o)); + int PySequence_Length Py_PROTO((PyObject *o)); /* Return the length of sequence object o, or -1 on failure.