mirror of
https://github.com/kennethreitz/requests.git
synced 2026-06-05 22:50:18 +00:00
Accept '=' in cookie keys.
This commit is contained in:
@@ -253,7 +253,7 @@ class CookieError(Exception):
|
||||
# _LegalChars is the list of chars which don't require "'s
|
||||
# _Translator hash-table for fast quoting
|
||||
#
|
||||
_RFC2965Forbidden = "[]:{}"
|
||||
_RFC2965Forbidden = "[]:{}="
|
||||
_LegalChars = ( string.ascii_letters + string.digits +
|
||||
"!#$%&'*+-.^_`|~_" + _RFC2965Forbidden )
|
||||
_Translator = {
|
||||
|
||||
Reference in New Issue
Block a user