Open
Description
Describe the issue:
Calling issubdtype
on a complex64
does not produce the correct output.
Reproduce the code example:
import numpy as np
np.issubdtype(np.array([], dtype="F").dtype, complex)
np.issubdtype(np.array([], dtype="F").dtype, np.complex_)
False
False
Error message:
No response
NumPy/Python version information:
1.21 and current master (1046087)