[issue45328] http.client.HTTPConnection doesn't work without TCP_NODELAY

2021-10-06 Thread Łukasz Langa
Łukasz Langa added the comment: Thanks, rtobar! ✨ 🍰 ✨ -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue45328] http.client.HTTPConnection doesn't work without TCP_NODELAY

2021-10-06 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 92018a08240308c5beef9ccc712bef5c2e582926 by Miss Islington (bot) in branch '3.9': bpo-45328: Avoid failure in OSs without TCP_NODELAY support (GH-28646) (GH-28770) https://github.com/python/cpython/commit/92018a08240308c5beef9ccc712bef5c2e582926

[issue45328] http.client.HTTPConnection doesn't work without TCP_NODELAY

2021-10-06 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 4c35a2aa80d7f55573d83651883d8733fac01e31 by Miss Islington (bot) in branch '3.10': bpo-45328: Avoid failure in OSs without TCP_NODELAY support (GH-28646) (GH-28771) https://github.com/python/cpython/commit/4c35a2aa80d7f55573d83651883d8733fac01e31

[issue45328] http.client.HTTPConnection doesn't work without TCP_NODELAY

2021-10-06 Thread miss-islington
Change by miss-islington : -- pull_requests: +27108 pull_request: https://github.com/python/cpython/pull/28771 ___ Python tracker ___ __

[issue45328] http.client.HTTPConnection doesn't work without TCP_NODELAY

2021-10-06 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 3.0 -> 4.0 pull_requests: +27107 pull_request: https://github.com/python/cpython/pull/28770 ___ Python tracker _

[issue45328] http.client.HTTPConnection doesn't work without TCP_NODELAY

2021-10-06 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 0571b934f5f9198c3461a7b631d7073ac0a5676f by rtobar in branch 'main': bpo-45328: Avoid failure in OSs without TCP_NODELAY support (GH-28646) https://github.com/python/cpython/commit/0571b934f5f9198c3461a7b631d7073ac0a5676f -- nosy: +lukasz

[issue45328] http.client.HTTPConnection doesn't work without TCP_NODELAY

2021-10-06 Thread Łukasz Langa
Change by Łukasz Langa : -- versions: +Python 3.11, Python 3.9 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue45328] http.client.HTTPConnection doesn't work without TCP_NODELAY

2021-09-30 Thread Rodrigo
Change by Rodrigo : -- nosy: +rtobar nosy_count: 1.0 -> 2.0 pull_requests: +27014 stage: -> patch review pull_request: https://github.com/python/cpython/pull/28646 ___ Python tracker

[issue45328] http.client.HTTPConnection doesn't work without TCP_NODELAY

2021-09-30 Thread R
New submission from R : I'm working on trying to run python under SerenityOS. At the moment, SerenityOS doesn't implement the TCP_NODELAY socket option. This makes the HTTPConnection.connect() method raise an OSError for an operation that is otherwise optional. Additionally, the connection ob