From: Guido van Rossum Date: Sun, 21 Jul 1996 02:22:56 +0000 (+0000) Subject: Added prototype + doc for PySequence_Length() X-Git-Tag: v1.4b2~206 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4f4ce68085242b71f08b8ced86a2fbf6a87da8a1;p=python Added prototype + doc for PySequence_Length() --- diff --git a/Include/abstract.h b/Include/abstract.h index be654c979e..fcb5fe6ea5 100644 --- a/Include/abstract.h +++ b/Include/abstract.h @@ -621,6 +621,13 @@ xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/ */ + int PySequence_Lenth Py_PROTO((PyObject *o)); + + /* + Return the length of sequence object o, or -1 on failure. + + */ + PyObject *PySequence_Concat Py_PROTO((PyObject *o1, PyObject *o2)); /*