Or sometimes even a python crash. Demo: ```python >>> class Foo(np.ndarray): ... def __array_wrap__(self, obj): pass >>> f = np.zeros(2).view(Foo) >>> f + 1 SystemError: <ufunc 'add'> returned NULL without setting an error # sometimes: nasal demons ```