(text, start="", length=None)
| 55 | |
| 56 | |
| 57 | def wrap_indent(text, start="", length=None): |
| 58 | if length is None: |
| 59 | length = len(start) |
| 60 | indent = "\n" + " " * length |
| 61 | return start + indent.join(x for x in text.splitlines()) |
| 62 | |
| 63 | |
| 64 | def _get_indexer_at_least_n_items(shape, n_desired, from_end): |
no test coverage detected
searching dependent graphs…