Part of cleaning up `numerictypes.py`. The following looks wrong to me: ```python >>> np.sctypeNA['i8'] # any integer type <type 'numpy.int64'> >>> np.sctypeNA['f8'] # any non-integer type 'Float64' ``` Surely these should both return `type` objects, rather than sometimes returning strings?