diff options
| author | Georg Brandl <georg@python.org> | 2013-10-28 08:08:09 +0100 |
|---|---|---|
| committer | Georg Brandl <georg@python.org> | 2013-10-28 08:08:09 +0100 |
| commit | 03b9c293da396efd6df7fb0d980db0faa8bb4b49 (patch) | |
| tree | 9d1da9bb4648df90b7f435bc5eadc38c26da011e /Modules/itertoolsmodule.c | |
| parent | bc3101edfd79f9d63af2f7503c94e1c5390f9074 (diff) | |
| parent | 8d7b2d90166762520cd2f911bb3bcaf71c41c98c (diff) | |
| download | cpython-03b9c293da396efd6df7fb0d980db0faa8bb4b49.tar.gz | |
null merge with 3.3
Diffstat (limited to 'Modules/itertoolsmodule.c')
| -rw-r--r-- | Modules/itertoolsmodule.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/itertoolsmodule.c b/Modules/itertoolsmodule.c index 0123181612..8be62ce94c 100644 --- a/Modules/itertoolsmodule.c +++ b/Modules/itertoolsmodule.c @@ -401,7 +401,7 @@ static PyTypeObject _grouper_type = { typedef struct { PyObject_HEAD PyObject *it; - int numread; + int numread; /* 0 <= numread <= LINKCELLS */ PyObject *nextlink; PyObject *(values[LINKCELLS]); } teedataobject; @@ -409,7 +409,7 @@ typedef struct { typedef struct { PyObject_HEAD teedataobject *dataobj; - int index; + int index; /* 0 <= index <= LINKCELLS */ PyObject *weakreflist; } teeobject; |
