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 a62541a commit 10c54d4Copy full SHA for 10c54d4
uvloop/handles/stream.pyx
@@ -362,7 +362,8 @@ cdef class UVStream(UVBaseTransport):
362
# (and thus allocating more memory).
363
# On the other hand, uvloop would behave differently from
364
# asyncio: where asyncio does one send op, uvloop would do
365
- # many send ops. If the program uses TCP_NODELAY sock opt,
+ # many send ops. If the program doesn't use the TCP_NODELAY
366
+ # sock opt (and by default asyncio programs do not set it),
367
# this different behavior may result in uvloop being slower
368
# than asyncio.
369
self.write(b''.join(bufs))
0 commit comments