hyperlink icon indicating copy to clipboard operation
hyperlink copied to clipboard

๐Ÿ”— Immutable, Pythonic, correct URLs.

Results 33 hyperlink issues
Sort by recently updated
recently updated
newest added

This isn't supposed to work: ```python3 import hyperlink hyperlink.URL.from_text("http://example.com:-80") ``` This patch ensures that only valid port strings are accepted. (The root cause of this is that port numbers are...

The port number in the following URL is clearly malformed, but Hyperlink does this: ```python3 >>> hyperlink.URL.from_text("http://example.com: -เป‘_1\v").port -11 ``` This comes from the fact that ports are parsed with...

I noticed that the tests are being installed into site-packages, but I normally expect it to be available in the source for pytest-ing them. Should it be removed? This can...