(iterable, r=None)
| 745 | yield tuple(slice(0,1,0) for _ in range(ndim)) |
| 746 | |
| 747 | def rpermutation(iterable, r=None): |
| 748 | pool = tuple(iterable) |
| 749 | r = len(pool) if r is None else r |
| 750 | yield tuple(sample(pool, r)) |
| 751 | |
| 752 | def ndarray_print(nd): |
| 753 | """Print ndarray for debugging.""" |
nothing calls this directly
no test coverage detected
searching dependent graphs…