diff options
Diffstat (limited to 'Include/abstract.h')
-rw-r--r-- | Include/abstract.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Include/abstract.h b/Include/abstract.h index be654c9..fcb5fe6 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)); /* |