After merging gh-14794 this emits a DeprecationWarning ``` $ python3 -Werror >>> import numpy as np >>> arr = np.array(["a", "b"], dtype=object) >>> objs = [arr, "foo", arr] >>> np.sum(objs, axis=0) ``` xref gh-15041