What is the best way to use requests and iopipe on gzipped JSON file

Steven Schveighoffer schveiguy at yahoo.com
Fri Oct 13 22:07:44 UTC 2017


On 10/13/17 4:30 PM, Andrew Edwards wrote:
> On Friday, 13 October 2017 at 20:17:50 UTC, Steven Schveighoffer wrote:
>> On 10/13/17 3:17 PM, Steven Schveighoffer wrote:
>>
>>> this should work (something like this really should be in iopipe):
>>>
>>> while(input.extend(0) != 0) {} // get data until EOF
>>
>> This should work today, actually. Didn't think about it before.
>>
>> input.ensureElems(size_t.max);
>>
> 
> No, it errored out:
> std.json.JSONException at std/json.d(1400): Unexpected end of data. (Line 
> 1:8192)


I reproduced, and it comes down to some sort of bug when size_t.max is 
passed to ensureElems.

I will find and eradicate it.

-Steve


More information about the Digitalmars-d-learn mailing list