public class itertools extends Object implements ClassDictInit
Modifier and Type | Field and Description |
---|---|
static PyString |
__doc__ |
static PyString |
__doc__tee |
Constructor and Description |
---|
itertools() |
Modifier and Type | Method and Description |
---|---|
static void |
classDictInit(PyObject dict) |
static PyTuple |
tee(PyObject iterable)
Create a pair of iterators, each of which is effectively a copy of iterable.
|
static PyTuple |
tee(PyObject iterable,
int n)
Create a tuple of iterators, each of which is effectively a copy of iterable.
|
public static final PyString __doc__
public static PyString __doc__tee