I know it doesn't make sense, but I executed the command:
numpy.arange(0, 5, 1, numpy.bool_)
And it returned an error ValueError: no fill-function for data-type.
. All data types seems to be working except boolean which return this error.
I was expecting False, True, True, True, True
, what causes that error?