Stores the suffix to append when generating functions names.
| 34 | pass |
| 35 | |
| 36 | class FuncNameSuffix: |
| 37 | """Stores the suffix to append when generating functions names. |
| 38 | """ |
| 39 | def __init__(self, suffix): |
| 40 | self.suffix = suffix |
| 41 | |
| 42 | class TypeDescription: |
| 43 | """Type signature for a ufunc. |
no outgoing calls
no test coverage detected
searching dependent graphs…