(doc)
| 116 | |
| 117 | |
| 118 | def _dedent(doc): |
| 119 | if not isinstance(doc, str): |
| 120 | return doc |
| 121 | |
| 122 | return textwrap.dedent(doc) |
| 123 | |
| 124 | |
| 125 | # These can be auto-generated from the public numpy ufuncs: |
no outgoing calls
no test coverage detected
searching dependent graphs…