Michael Graczyk

Results 17 comments of Michael Graczyk

@KennethEnevoldsen Thanks! Just rebased

Yeah you may need to keep support for

@sigmavirus24 Thanks for the quick reply. I understand the concerns, but I don't fully agree. > we can only guess the encoding As I understand it, the problem is not...

> to get the correct encoding and what the server may be expecting, we have to guess at the correct length. requests always converts small `StringIO` inputs to utf-8 encoding...

A very concise demonstration of the problem: Would anyone expect these two requests to be different? ```python value = "💩" print("REQUEST 1") print("=" * 20) r = requests.post( "http://example.com", data=value,...

This happened just once during a test. In the test, I create and remove a collection fairly quickly (within 1 second), so that may have something to do with it....

I can't reproduce it myself so it's unlikely sharing the test would help, and it's tightly coupled to many other things and would take a while to convert to a...