We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
to_iri
URL
from hyperlink import URL url1 = URL.from_text(u"http://example.test./,") url2 = URL.from_text(u"http://example.test./%2c") assert url1 != url2 assert url1.to_iri() == url2.to_iri()
It seems surprising to me that to_iri() provides a level of normalization that is not available via .normalize()
to_iri()
.normalize()
This seems related to #18 and #164.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It seems surprising to me that
to_iri()
provides a level of normalization that is not available via.normalize()
This seems related to #18 and #164.
The text was updated successfully, but these errors were encountered: