[issue9526] 2 GB limit in array module

2010-08-10 Thread Mark Dickinson
Mark Dickinson added the comment: Thanks for confirming, Stefan. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue9526] 2 GB limit in array module

2010-08-08 Thread Benjamin Peterson
Changes by Benjamin Peterson : -- status: pending -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http

[issue9526] 2 GB limit in array module

2010-08-08 Thread Stefan Krah
Changes by Stefan Krah : -- status: open -> pending ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.

[issue9526] 2 GB limit in array module

2010-08-08 Thread Stefan Krah
Stefan Krah added the comment: Tested on an 8GB machine. This is fixed. -- nosy: +skrah status: pending -> open ___ Python tracker ___ ___

[issue9526] 2 GB limit in array module

2010-08-06 Thread Mark Dickinson
Mark Dickinson added the comment: Thanks for the report. Also applies to 3.1 and 3.2 (and 2.6, but it's too late to fix things there). I agree that those (int) casts look wrong---I suspect they're leftovers from the big int -> Py_ssize_t switch that happened for Python 2.5. I've removed th

[issue9526] 2 GB limit in array module

2010-08-05 Thread Martin Frith
New submission from Martin Frith : The array module does not seem to work for arrays > 2 GB. >>> import sys, array >>> sys.maxsize 9223372036854775807 >>> x = array.array('c', ('a' for i in xrange(3))) (seems to work OK) >>> x = array.array('c', ('a' for i in xrange(30))) (runs f