Message6621

Author alex
Recipients alex, gmseed
Date 2011-08-29.13:59:37
SpamBayes Score 1.8578936e-07
Marked as misclassified No
Message-id <1314626377.63.0.485507986841.issue1756@psf.upfronthosting.co.za>
In-reply-to
Content
The confusion seems to stem from the fact that jarray and array are different modules. Both are working.

>>> from array import zeros
>>> zeros('i',10)
array('i', [0, 0, 0, 0, 0, 0, 0, 0, 0, 0])

>>> from jarray import zeros
>>> zeros(10, 'i')
array('i', [0, 0, 0, 0, 0, 0, 0, 0, 0, 0])
History
Date User Action Args
2011-08-29 13:59:37alexsetmessageid: <1314626377.63.0.485507986841.issue1756@psf.upfronthosting.co.za>
2011-08-29 13:59:37alexsetrecipients: + alex, gmseed
2011-08-29 13:59:37alexlinkissue1756 messages
2011-08-29 13:59:37alexcreate