summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2002-04-26 19:40:56 (GMT)
committerGuido van Rossum <guido@python.org>2002-04-26 19:40:56 (GMT)
commit7dab2426ca0bae36fde565407ddb4b2d2cbf2575 (patch)
tree58cab4dd199cdf49860d97d6ccd52fd58a4b9f03 /Python
parent17afa13a9fce3cf0c4a0b474d344c0471088849a (diff)
downloadcpython-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 'Python')
-rw-r--r--Python/bltinmodule.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c
index 680152d..06d8616 100644
--- a/Python/bltinmodule.c
+++ b/Python/bltinmodule.c
@@ -1864,6 +1864,7 @@ _PyBuiltin_Init(void)
SETBUILTIN("complex", &PyComplex_Type);
#endif
SETBUILTIN("dict", &PyDict_Type);
+ SETBUILTIN("enumerate", &PyEnum_Type);
SETBUILTIN("float", &PyFloat_Type);
SETBUILTIN("property", &PyProperty_Type);
SETBUILTIN("int", &PyInt_Type);