diff options
author | Guido van Rossum <guido@python.org> | 1996-07-21 02:22:56 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-07-21 02:22:56 (GMT) |
commit | 4f4ce68085242b71f08b8ced86a2fbf6a87da8a1 (patch) | |
tree | 5bf5a84dce6b0bd7a3a288884c7ae85fdf789b2f /Include/abstract.h | |
parent | 3317e63cbb5830764d8fc484c1c91d10fe93095a (diff) | |
download | cpython-4f4ce68085242b71f08b8ced86a2fbf6a87da8a1.zip cpython-4f4ce68085242b71f08b8ced86a2fbf6a87da8a1.tar.gz cpython-4f4ce68085242b71f08b8ced86a2fbf6a87da8a1.tar.bz2 |
Added prototype + doc for PySequence_Length()
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)); /* |