Docstring.
(array)
| 22 | # need to define this at the top level to test pickling |
| 23 | @array_function_dispatch(lambda array: (array,)) |
| 24 | def dispatched_one_arg(array): |
| 25 | """Docstring.""" |
| 26 | return 'original' |
| 27 | |
| 28 | |
| 29 | @array_function_dispatch(lambda array1, array2: (array1, array2)) |
no outgoing calls
no test coverage detected