(x, name)
| 976 | recurser = None |
| 977 | |
| 978 | def _none_or_positive_arg(x, name): |
| 979 | if x is None: |
| 980 | return -1 |
| 981 | if x < 0: |
| 982 | raise ValueError(f"{name} must be >= 0") |
| 983 | return x |
| 984 | |
| 985 | class FloatingFormat: |
| 986 | """ Formatter for subtypes of np.floating """ |
no outgoing calls
no test coverage detected
searching dependent graphs…