summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorKristjan Valur Jonsson <sweskman@gmail.com>2011-03-30 11:24:58 (GMT)
committerKristjan Valur Jonsson <sweskman@gmail.com>2011-03-30 11:24:58 (GMT)
commitfa3edbed251a06226ae77571dc9e16eb44bf902b (patch)
tree9fca14b17e2947d4c28fcb8b01404f0f45c52783 /Modules
parent6a2638b1637bd7f79f55def97df20cfccff02509 (diff)
parent35722a93768e942be31270fe60acff138d878b26 (diff)
downloadcpython-fa3edbed251a06226ae77571dc9e16eb44bf902b.zip
cpython-fa3edbed251a06226ae77571dc9e16eb44bf902b.tar.gz
cpython-fa3edbed251a06226ae77571dc9e16eb44bf902b.tar.bz2
Merge 3.1
Diffstat (limited to 'Modules')
-rw-r--r--Modules/itertoolsmodule.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/Modules/itertoolsmodule.c b/Modules/itertoolsmodule.c
index b202e52..71d5bb6 100644
--- a/Modules/itertoolsmodule.c
+++ b/Modules/itertoolsmodule.c
@@ -3050,6 +3050,7 @@ count_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
Py_ssize_t cnt = 0;
PyObject *long_cnt = NULL;
PyObject *long_step = NULL;
+ long step;
static char *kwlist[] = {"start", "step", 0};
if (!PyArg_ParseTupleAndKeywords(args, kwds, "|OO:count",
@@ -3087,9 +3088,11 @@ count_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
assert(long_cnt != NULL && long_step != NULL);
/* Fast mode only works when the step is 1 */
- if (!PyLong_Check(long_step) ||
- PyLong_AS_LONG(long_step) != 1) {
- slow_mode = 1;
+ step = PyLong_AsLong(long_step);
+ if (step != 1) {
+ slow_mode = 1;
+ if (step == -1 && PyErr_Occurred())
+ PyErr_Clear();
}
if (slow_mode)