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 pitrou
Recipients Arfrever, christian.heimes, pitrou
Date 2013-05-18.14:10:29
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1368886230.16.0.416855841781.issue17997@psf.upfronthosting.co.za>
In-reply-to
Content
Actually, I don't this is a bug: match_hostname() expects str data, and therefore IDNA-decoded domain names:

>>> b"xn--gtter-jua.example.de".decode("idna")
'götter.example.de'

Doing the matching on the decoded domain name should be safe.
Then it very much depends on whether the data you've got was IDNA-decoded, or naïvely ASCII-decoded, and I don't think the Python stdlib is very consistent here. Looking at the socket module, gethostbyaddr and getnameinfo seem to use ASCII decoding...
History
Date User Action Args
2013-05-18 14:10:30pitrousetrecipients: + pitrou, christian.heimes, Arfrever
2013-05-18 14:10:30pitrousetmessageid: <1368886230.16.0.416855841781.issue17997@psf.upfronthosting.co.za>
2013-05-18 14:10:30pitroulinkissue17997 messages
2013-05-18 14:10:29pitroucreate