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
Currently, equality testing does not work as expected unless parsed URLs are cast to strings:
whatwg(parse_url("http://www.com/") != whatwg(parse_url("http://www.com:80/") str(whatwg(parse_url("http://www.com/")) == str(whatwg(parse_url("http://www.com:80/"))
The proposal is that @anjackson will implement __eq__ and __ne__ so that URLs can be compared for equality directly.
__eq__
__ne__
The text was updated successfully, but these errors were encountered:
anjackson
No branches or pull requests
Currently, equality testing does not work as expected unless parsed URLs are cast to strings:
The proposal is that @anjackson will implement
__eq__
and__ne__
so that URLs can be compared for equality directly.The text was updated successfully, but these errors were encountered: