Israel Brewster

Results 28 comments of Israel Brewster

Looking at the source code a bit more, it looks like perhaps I could utilize the "on_finish" function to split the individual values? I'm assuming that will be called each...

Sure, I'll put together a minimal working example. It's a fairly common case, however: for example checkboxes in a HTML form where you could have one or more checked, and...

So using the example HTML from the link above, I get a very simple request body (as retrieved by calling `flask.request.stream.read()`: ``` favorite_pet=Cats&favorite_pet=Dogs&favorite_pet=Birds ``` Assuming I check all three boxes....

I realized just now that the body content is a bit different if using multipart/form-data encoding on the form (as will be the case if uploading any files), so I...

Agreed. The question is at what point to "collect" the individual values - presumably you can't do it at the "on_data_received" level, because a chunk may only be a partial...

Agreed. I can try to get around to writing such a test case in the next week or two, depending on how things go at work.

What *appears* to be happening here is that either the WebSocketMiddleware or perhaps the underlying uwsgi web socket implementation periodically pushes an empty string onto the receive queue, rather than...

Slight update to the above comment: in looking closer at the results, it looks like while doing nearest neighbor resampling does produce output without throwing an exception, the output is...

I was doing some more debugging on this this morning, and I think I found part of the problem. Specifically, in `kd_tree.py`, the `_get_valid_output_index()` function, line 462: ```python # Remove...

I managed to hack together a working solution. I could provide a pull request if desired, but I haven't really tested the solution, and kinda think it may not be...