From 4f4ce68085242b71f08b8ced86a2fbf6a87da8a1 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Sun, 21 Jul 1996 02:22:56 +0000 Subject: [PATCH] Added prototype + doc for PySequence_Length() --- Include/abstract.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Include/abstract.h b/Include/abstract.h index be654c979ed..fcb5fe6ea54 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)); /*