Florentino Bexiga

Results 6 issues of 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...

enhancement
complex

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)...

question
external

Any chance that support for DTLS (TLS over UDP) could be added?

new protocol
TLS

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...

Profiling