Tagged Questions

11
votes
10answers
2k views

How do you split a list into evenly sized chunks in Python?

I have a list of arbitrary length, and I need to split it up into equal size chunks and operate on it. There are some obvious ways to do this, like keeping a counter and two lists, …
10
votes
10answers
762 views

What is the most “pythonic” way to iterate over a list in chunks?

I have a Python script which takes as input a list of integers, which I need to work with four integers at a time. Unfortunately, I don't have control of the input, or I'd have it …
2
votes
2answers
103 views

Writing memory to socket in chunks in C

Hi, I'm attempting to write memory contents to a socket in chunks. I can write files that are smaller than my buffer, but anything else and I'm in deep water. /* allocate memory f …
0
votes
1answer
211 views

cancel stream request from WCF server to client

Hi, I posted about stream request here [wcf-chunk-data-with-stream]:http://stackoverflow.com/questions/853448/wcf-chunk-data-with-stream I solved that task but now when i close re …