If I construct a numpy matrix like this:
A = array([[1,2,3],[4,5,6]])
and then type A.shape
I get the result:
(2L, 3L)
Why am I getting a shape with the format long?
I can restart everything and I still have the same problem. And as far as I can see, it is only when I construct arrays I have this problem, otherwise I get short (regular) integers.