-
Notifications
You must be signed in to change notification settings - Fork 152
New issue
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
add support for encoding unicode strings #32
Comments
Great find. I'll fix this shortly. |
furl v0.3.8 supports unicode query keys and values. >>> f = furl('http://site4dads.ru/')
>>> f.args[u'testö'] = u'testä'
>>> f.url
'http://site4dads.ru/?test%C3%B6=test%C3%A4' Update to v0.3.8 with
Thank you for bringing this issue to my attention @jdelic. |
thanks for fixing this so fast! :) |
doismellburning
added a commit
to doismellburning/furl
that referenced
this issue
Jan 13, 2015
This implements the test from the comments of gruns#32 and demonstrates a regression (bug was reported in 0.3.mumble, fixed in 0.3.8, and is now broken in 0.4.1 and 0.4.2)
#46 shows a regression of this behaviour |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently the following "doesn't work":
The documentation explicitly states "Encoding is handled for you" and, of course, means urlencoding, however
urllib.urlencode
does not automatically handleunicode
."works".
The text was updated successfully, but these errors were encountered: