Stores the suffix to append when generating functions names.
| 36 | pass |
| 37 | |
| 38 | class FuncNameSuffix: |
| 39 | """Stores the suffix to append when generating functions names. |
| 40 | """ |
| 41 | def __init__(self, suffix): |
| 42 | self.suffix = suffix |
| 43 | |
| 44 | class TypeDescription: |
| 45 | """Type signature for a ufunc. |