diff options
author | eofs <tomi@madlab.fi> | 2016-03-11 11:15:02 +0200 |
---|---|---|
committer | eofs <tomi@madlab.fi> | 2016-03-11 11:15:02 +0200 |
commit | 028720698e17a61b975acced53fad31e569fe41c (patch) | |
tree | 20608920352c06b05147819b78bf1c9c31f898f2 /oauthlib/common.py | |
parent | cc3b3abfcd3a2509031b9f8bf92e8bfe6367a9aa (diff) | |
download | oauthlib-028720698e17a61b975acced53fad31e569fe41c.tar.gz |
Allow `/` and `?` characters per RFC 3986 section 3.4 specification.
Fixes #404
Diffstat (limited to 'oauthlib/common.py')
-rw-r--r-- | oauthlib/common.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/oauthlib/common.py b/oauthlib/common.py index db07f08..e0e80c8 100644 --- a/oauthlib/common.py +++ b/oauthlib/common.py @@ -109,7 +109,7 @@ def decode_params_utf8(params): return decoded -urlencoded = set(always_safe) | set('=&;%+~,*@!()') +urlencoded = set(always_safe) | set('=&;%+~,*@!()/?') def urldecode(query): |