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 christian.heimes
Recipients Roman Akopov, SilentGhost, christian.heimes, ezio.melotti, vstinner
Date 2020-06-02.21:49:50
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1591134590.38.0.722075390837.issue40845@roundup.psfhosted.org>
In-reply-to
Content
There are two IDNA standard. Python's standard library only provides IDNA 2003 and does not support IDNA 2008.

# IDNA 2003
>>> '\u13e3\u13b3\u13a9'.encode('idna')
b'xn--tz9ata7l'
# idna package with IDNA 2008
>>> idna.encode('\u13e3\u13b3\u13a9')
b'xn--f9dt7l'

The bug report is a duplicate of #17305.
History
Date User Action Args
2020-06-02 21:49:50christian.heimessetrecipients: + christian.heimes, vstinner, ezio.melotti, SilentGhost, Roman Akopov
2020-06-02 21:49:50christian.heimessetmessageid: <1591134590.38.0.722075390837.issue40845@roundup.psfhosted.org>
2020-06-02 21:49:50christian.heimeslinkissue40845 messages
2020-06-02 21:49:50christian.heimescreate