mirror of
https://github.com/python/cpython.git
synced 2025-09-25 01:43:11 +00:00
Add more comments
This commit is contained in:
parent
a73fbe791d
commit
532316dfa6
1 changed files with 4 additions and 4 deletions
|
@ -1746,10 +1746,10 @@ static PyTypeObject chain_type = {
|
||||||
typedef struct {
|
typedef struct {
|
||||||
PyObject_HEAD
|
PyObject_HEAD
|
||||||
PyObject *pools; /* tuple of pool tuples */
|
PyObject *pools; /* tuple of pool tuples */
|
||||||
Py_ssize_t *maxvec;
|
Py_ssize_t *maxvec; /* size of each pool */
|
||||||
Py_ssize_t *indices;
|
Py_ssize_t *indices; /* one index per pool */
|
||||||
PyObject *result;
|
PyObject *result; /* most recently returned result tuple */
|
||||||
int stopped;
|
int stopped; /* set to 1 when the product iterator is exhausted */
|
||||||
} productobject;
|
} productobject;
|
||||||
|
|
||||||
static PyTypeObject product_type;
|
static PyTypeObject product_type;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue