Ticket #603 (closed defect: fixed)
numpy 1.0.3.1, python crash when indexing an array with a int32 ndarray (see example)
| Reported by: | djkawa | Owned by: | jarrod.millman |
|---|---|---|---|
| Priority: | normal | Milestone: | 1.1.0 |
| Component: | numpy.core | Version: | none |
| Keywords: | Cc: |
Description
import numpy from numpy import array array = array([0.0], dtype = numpy.float64) index = array([0.0], dtype = numpy.int32) cum_var[index]
array([ 0.])
index = array(0., dtype = numpy.int32) cum_var[index]
Change History
Note: See
TracTickets for help on using
tickets.
