diff options
author | Guido van Rossum <guido@python.org> | 2002-04-26 19:40:56 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2002-04-26 19:40:56 (GMT) |
commit | 7dab2426ca0bae36fde565407ddb4b2d2cbf2575 (patch) | |
tree | 58cab4dd199cdf49860d97d6ccd52fd58a4b9f03 /Include | |
parent | 17afa13a9fce3cf0c4a0b474d344c0471088849a (diff) | |
download | cpython-7dab2426ca0bae36fde565407ddb4b2d2cbf2575.zip cpython-7dab2426ca0bae36fde565407ddb4b2d2cbf2575.tar.gz cpython-7dab2426ca0bae36fde565407ddb4b2d2cbf2575.tar.bz2 |
- New builtin function enumerate(x), from PEP 279. Example:
enumerate("abc") is an iterator returning (0,"a"), (1,"b"), (2,"c").
The argument can be an arbitrary iterable object.
Diffstat (limited to 'Include')
-rw-r--r-- | Include/Python.h | 1 | ||||
-rw-r--r-- | Include/enumobject.h | 16 |
2 files changed, 17 insertions, 0 deletions
diff --git a/Include/Python.h b/Include/Python.h index f440a3a..e3addc7 100644 --- a/Include/Python.h +++ b/Include/Python.h @@ -91,6 +91,7 @@ #include "tupleobject.h" #include "listobject.h" #include "dictobject.h" +#include "enumobject.h" #include "methodobject.h" #include "moduleobject.h" #include "funcobject.h" diff --git a/Include/enumobject.h b/Include/enumobject.h new file mode 100644 index 0000000..df20fb0 --- /dev/null +++ b/Include/enumobject.h @@ -0,0 +1,16 @@ +#ifndef Py_ENUMOBJECT_H +#define Py_ENUMOBJECT_H + +/* Enumerate Object */ + +#ifdef __cplusplus +extern "C" { +#endif + +extern DL_IMPORT(PyTypeObject) PyEnum_Type; + +#ifdef __cplusplus +} +#endif + +#endif /* !Py_ENUMOBJECT_H */ |