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 ablack
Recipients ablack, ned.deily
Date 2018-03-02.21:46:33
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1520027193.92.0.467229070634.issue32958@psf.upfronthosting.co.za>
In-reply-to
Content
Just to be clear, I don't know if the socket needs to support 64 character long host name sections, so here's an example url that is at the root of my problem that I'm pretty sure it should support:

>>> import socket
>>> h = "username:long_api_key0123456789012345678901234567890123456789@www.example.com"
>>> socket.gethostbyname(h)
Traceback (most recent call last):
  File "/Users/ablack/miniconda3/lib/python3.6/encodings/idna.py", line 165, in encode
    raise UnicodeError("label empty or too long")
UnicodeError: label empty or too long

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
UnicodeError: encoding with 'idna' codec failed (UnicodeError: label empty or too long)
History
Date User Action Args
2018-03-02 21:46:33ablacksetrecipients: + ablack, ned.deily
2018-03-02 21:46:33ablacksetmessageid: <1520027193.92.0.467229070634.issue32958@psf.upfronthosting.co.za>
2018-03-02 21:46:33ablacklinkissue32958 messages
2018-03-02 21:46:33ablackcreate