id	summary	reporter	owner	description	type	status	priority	milestone	component	resolution	keywords	cc	work_issues	upstream	reviewer	author	merged	dependencies	stopgaps
10928	numpy matrices indexed by sage integers are wrong	flawrence	tbd	"When using numpy matrices, indexing behaves differently depending on whether sage integers or python integers are used to do the indexing
{{{
sage: mymat = numpy.matrix(numpy.arange(6).reshape(3,2))
sage: mymat[:,0]
matrix([[0, 2, 4]])
sage: mymat[:,int(0)]
matrix([[0],
        [2],
        [4]])
}}}

The second behaviour is correct, i.e. int(0) gives the correct answer."	defect	new	critical	sage-5.10	packages: standard			jason		Reported upstream. No feedback yet.					
