summaryrefslogtreecommitdiffstats
path: root/Include/abstract.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-07-21 02:22:56 (GMT)
committerGuido van Rossum <guido@python.org>1996-07-21 02:22:56 (GMT)
commit4f4ce68085242b71f08b8ced86a2fbf6a87da8a1 (patch)
tree5bf5a84dce6b0bd7a3a288884c7ae85fdf789b2f /Include/abstract.h
parent3317e63cbb5830764d8fc484c1c91d10fe93095a (diff)
downloadcpython-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.h7
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));
/*