This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author neologix
Recipients loewis, neologix, pitrou, vstinner
Date 2014-08-04.07:50:33
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <CAH_1eM0aiWH+wtsoNWzCK+orYM10re7zE8qtqBBon1fqASr5Hg@mail.gmail.com>
In-reply-to <1407119507.65.0.241251064448.issue22127@psf.upfronthosting.co.za>
Content
> Note that even the bytes version is still quite slow. UDP is used for light-weight protocols where you may send thousands or more messages per second. I'd be curious what the sendto() performance is in raw C.

Ah, I wouldn't rely on the absolyte values, my computer is *slow*.

On a more recent machine, I get this:
100000 loops, best of 3: 8.82 usec per loop

Whereas a C loop gives a 4usec per loop.

> "Abc" is a bytes string in Python 2 and an Unicode string in Python 3.

Sure, but why do getaddrinfo() and gethostbyname() return strings then?

This means that someone using:

addr = getaddrinfo(...)
sendto(DATA, addr)

Will pay the idna encoding upon every call to sendto().
History
Date User Action Args
2014-08-04 07:50:33neologixsetrecipients: + neologix, loewis, pitrou, vstinner
2014-08-04 07:50:33neologixlinkissue22127 messages
2014-08-04 07:50:33neologixcreate