Iterate through supported mode/char combinations.
(n, obj='ndarray')
| 234 | return fmt, items, item |
| 235 | |
| 236 | def iter_mode(n, obj='ndarray'): |
| 237 | """Iterate through supported mode/char combinations.""" |
| 238 | for mode in cap[obj][MODE]: |
| 239 | for char in fmtdict[mode]: |
| 240 | yield randitems(n, obj, mode, char) |
| 241 | |
| 242 | def iter_format(nitems, testobj='ndarray'): |
| 243 | """Yield (format, items, item) for all possible modes and format |
no test coverage detected
searching dependent graphs…