We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba3f942 commit 4aac649Copy full SHA for 4aac649
httpcore/_backends/anyio.py
@@ -120,7 +120,7 @@ async def connect_tcp(
120
local_host=local_address,
121
)
122
# By default TCP sockets opened in `asyncio` include TCP_NODELAY.
123
- for option in socket_options:
+ for option in socket_options: # pragma: nocover
124
stream._raw_socket.setsockopt(*option) # type: ignore[attr-defined] # pragma: no cover
125
return AnyIOStream(stream)
126
0 commit comments