Re: [Numpy-discussion] Bug in numarray<->numpy interaction

2006-12-25 Thread Francesc Altet
A Diumenge 24 Desembre 2006 13:57, Norbert Nemec escrigué: > The following snippet demonstrates a problem in the interaction of > numarray 1.5.2 with numpy 1.0.1 (and older versions): > > --- > #!/usr/bin/env python > > import numarray, numpy > > na = numarray.array(0.) > np = numpy

Re: [Numpy-discussion] Bug in numarray<->numpy interaction

2006-12-24 Thread Charles R Harris
On 12/24/06, Norbert Nemec <[EMAIL PROTECTED]> wrote: The following snippet demonstrates a problem in the interaction of numarray 1.5.2 with numpy 1.0.1 (and older versions): --- #!/usr/bin/env python import numarray, numpy na = numarray.array(0.) np = numpy.array(0.) na[...]

Re: [Numpy-discussion] Bug in numarray<->numpy interaction

2006-12-24 Thread Charles R Harris
On 12/24/06, Norbert Nemec <[EMAIL PROTECTED]> wrote: The following snippet demonstrates a problem in the interaction of numarray 1.5.2 with numpy 1.0.1 (and older versions): --- #!/usr/bin/env python import numarray, numpy na = numarray.array(0.) np = numpy.array(0.) na[...]

[Numpy-discussion] Bug in numarray<->numpy interaction

2006-12-24 Thread Norbert Nemec
The following snippet demonstrates a problem in the interaction of numarray 1.5.2 with numpy 1.0.1 (and older versions): --- #!/usr/bin/env python import numarray, numpy na = numarray.array(0.) np = numpy.array(0.) na[...] = np --- the last linec causes the erro