You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
currently the following is allowed: string.ascii_letters + string.digits + '_.:/%&#=+\-@ ' per entity.py. However in the requests module (and httplib module I'm proposing based on it) it uses the url, which can include a ? character which yields a lot of warnings. Was the intention that everything after '?' would be stripped off? If so the requests module isn't doing this either. Could either do simple string clipping or use something like yarl
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
currently the following is allowed:
string.ascii_letters + string.digits + '_.:/%&#=+\-@ '
per entity.py. However in the requests module (and httplib module I'm proposing based on it) it uses the url, which can include a?
character which yields a lot of warnings. Was the intention that everything after '?' would be stripped off? If so the requests module isn't doing this either. Could either do simple string clipping or use something like yarlThe text was updated successfully, but these errors were encountered: