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
Steps to reproduce:
import furl f = furl.furl('mailto:someone@somewhere.com') f.scheme f = furl.furl('mailto://someone@somewhere.com') f.scheme "mailto"
Forward slashes are not required for URIs with the "mailto" scheme. See RFC 6068 @ http://tools.ietf.org/html/rfc6068
The text was updated successfully, but these errors were encountered:
Wonderful find.
I'll fix this shortly. Pull requests welcome.
Sorry, something went wrong.
mailto: is now supported.
>>> f = furl('mailto:user:pass@arc.io') >>> f.scheme, f.netloc ('mailto', 'user:pass@arc.io') >>> f.url 'mailto:user:pass@arc.io'
This fix will ship in the next version of furl, v0.3.7. For now, update with git pull.
git pull
Thank you for bringing this issue to my attention Markbnj.
No branches or pull requests
Steps to reproduce:
Forward slashes are not required for URIs with the "mailto" scheme.
See RFC 6068 @ http://tools.ietf.org/html/rfc6068
The text was updated successfully, but these errors were encountered: