Serhiy Storchaka added the comment:

Perhaps it is time to add support of ipaddress objects in socket functions. 
Then we could avoid address parsing in tight loop not only for Unicode strings, 
but for bytes strings too.

s = socket.socket(...)
addr = ipaddress.ip_address(ipaddress.getaddrinfo(...))
for ...:
    s.sendto(DATA, (addr, port))

----------
nosy: +serhiy.storchaka

_______________________________________
Python tracker <[email protected]>
<http://bugs.python.org/issue22127>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to