zeros() in object arrays are actually Nones.

Issue #31 new
Andreas Kloeckner created an issue

With Pypy 2.6 and current numpypy:

import numpy as np
>>>> np.zeros((3,), dtype=object)
array([None, None, None], dtype=object)

In numpy, those are zeros.

Comments (0)

  1. Log in to comment