(x, name)
| 896 | recurser = None |
| 897 | |
| 898 | def _none_or_positive_arg(x, name): |
| 899 | if x is None: |
| 900 | return -1 |
| 901 | if x < 0: |
| 902 | raise ValueError("{} must be >= 0".format(name)) |
| 903 | return x |
| 904 | |
| 905 | class FloatingFormat: |
| 906 | """ Formatter for subtypes of np.floating """ |
no outgoing calls
no test coverage detected