On Thu, Feb 8, 2018 at 11:00 PM Eric Wieser <wieser.eric+nu...@gmail.com> wrote:
> Presumably you would extend that to all (str, np.number), or even (str, > np.generic_)? > Yes, I'm currently doing (np.character, np.number) and (np.character, np.bool_). But only in direct consultation with the diagram of NumPy's type hierarchy :). > I suppose there’s the argument that with python-3-only support around the > corner, even (str, bytes) should go to object. > Yes, that's also pretty bad. The current behavior (str, bytes) -> str relies on bytes being valid ASCII: >>> np.array([b'\xFF', u'cd']) UnicodeDecodeError: 'ascii' codec can't decode byte 0xff in position 0: ordinal not in range(128) It exactly matches Python 2's str/unicode behavior, but doesn't make sense at all in a Python 3 world.
_______________________________________________ NumPy-Discussion mailing list NumPy-Discussion@python.org https://mail.python.org/mailman/listinfo/numpy-discussion