Here is the program:
#! /usr/bin/env python
import numarray
arr1 = numarray.zeros([3,2,1])
arr2 = numarray.zeros([3,2,1])
arr2[0] = arr1
and here is the error message:
TypeError: _copyFromAndConvert: non-numarray input.
Should this program give this error message?