This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author xdegaye
Recipients Alex.Willmer, benjamin.peterson, serhiy.storchaka, stutzbach, xdegaye
Date 2016-05-04.10:00:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1462356009.05.0.799165829877.issue26926@psf.upfronthosting.co.za>
In-reply-to
Content
On android x86:

>>> import resource
>>> resource.setrlimit(resource.RLIMIT_FSIZE, (2**31, 2**31))
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
OverflowError: Python int too large to convert to C long
>>> resource.setrlimit(resource.RLIMIT_FSIZE, (2**31-1, 2**31-1))
>>> resource.getrlimit(resource.RLIMIT_FSIZE)
(2147483647, 2147483647)
>>> 


The test_io tests that fail may be skipped by trying first to set this resource limit (if existing) to the max file size tested, in a spawned interpreter.
History
Date User Action Args
2016-05-04 10:00:09xdegayesetrecipients: + xdegaye, benjamin.peterson, stutzbach, serhiy.storchaka, Alex.Willmer
2016-05-04 10:00:09xdegayesetmessageid: <1462356009.05.0.799165829877.issue26926@psf.upfronthosting.co.za>
2016-05-04 10:00:09xdegayelinkissue26926 messages
2016-05-04 10:00:08xdegayecreate