Florentino Bexiga
Florentino Bexiga
Any chance that support to DTLS (TLS over UDP) will be added at some point? It would be very interesting to get the certificates and everything else from those types...
Considering for example this snippet of code ``` def run_sync(url): with httpx.Client(verify=False) as client: response = client.get(url) print(response) async def run_async(url): async with httpx.AsyncClient(verify=False) as client: response = await client.get(url)...
Considering for example this snippet of code ``` def run(target): conn = h11.Connection(our_role=h11.CLIENT) sock = socket.create_connection((target, 80)) request = h11.Request(method="GET", target="/", headers=[("Host", target)]) data = conn.send(request) sock.sendall(data) data = sock.recv(2048)...
In the cases where the strings have accentuated characters, each one of those is counted twice. For example "ä" would be two chars, which is not correct. Changing the encoding...
### Summary of problem When trying to start a Flask API using gunicorn + gevent + ddtrace + Python 3.11.9, the application crashes. However, if I use Python 3.11.8 instead...