Serhiy Storchaka added the comment:

_send_bytes() now looks a little complicated.

There are no need in separate branches for n==0. header + buf where buf is b'' 
is fast (it is not slower than additional check n > 0). So this 
microoptimization is not needed.

The chunks list is not needed, we can just call self._send(). This will get rid 
of small overhead of creating and iterating a list.

----------
keywords: +patch
nosy: +serhiy.storchaka
Added file: http://bugs.python.org/file34007/multi_nagle_simplify.patch

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue20540>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to