-
Notifications
You must be signed in to change notification settings - Fork 110
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
quoted urls UnicodeDecodeError #83
Comments
I think it's more a problem in WebOb / WSGI PEP. Every url should be latin1 encoded and the real url encoding is lost during the process (see hard coded latin-1 encoding in the traceback...). Not sure that we'll be able to fix that one day... |
Also, looks like it's related to #1 |
i had this problem today |
@gawel - bump? We are going to pull WebTest out of one of our projects over this for now, which makes me sad. This URL really should be useable through this test framework: |
@rjsparks as you noticed the "problem" is in webob, not webtest. |
Why the quotes around @bertjwregeer - I don't see a relevant issue at webob on a quick read. Are you already aware of this behavior? |
I’m unsubscribing from this 10 years old thread because I moved from Python to JS/TS and Elm a loooong time ago. 🦕 |
I use quoted URLs such as /fr/livres/cr%C3%A9ation/ (for /fr/livres/création/).
get()
is working fine with these urls but once I have the response if I try to useclick()
orsubmit()
on it I get the following error:I'm using Ubuntu 13.04 64 bit and Python 3.3.1 with the last commit of Webtest.
The text was updated successfully, but these errors were encountered: