summaryrefslogtreecommitdiffstats
path: root/Objects/iterobject.c
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2013-06-04 21:36:07 (GMT)
committerBrett Cannon <brett@python.org>2013-06-04 21:36:07 (GMT)
commitc97ec8fa6978657bfb8069db4128f785b29ea0aa (patch)
tree46aa19c3d8f30869ec71ad17a39bc4275b5c4cf6 /Objects/iterobject.c
parentaf38f5a5032e49d527adcb9c594abfeba5d9b9b2 (diff)
parent640c35ce135d71c6aafa13bb5985150f680416cc (diff)
downloadcpython-c97ec8fa6978657bfb8069db4128f785b29ea0aa.zip
cpython-c97ec8fa6978657bfb8069db4128f785b29ea0aa.tar.gz
cpython-c97ec8fa6978657bfb8069db4128f785b29ea0aa.tar.bz2
merge
Diffstat (limited to 'Objects/iterobject.c')
-rw-r--r--Objects/iterobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/iterobject.c b/Objects/iterobject.c
index 9acd1b7..77ff810 100644
--- a/Objects/iterobject.c
+++ b/Objects/iterobject.c
@@ -4,7 +4,7 @@
typedef struct {
PyObject_HEAD
- long it_index;
+ Py_ssize_t it_index;
PyObject *it_seq; /* Set to NULL when iterator is exhausted */
} seqiterobject;