Accept '=' in cookie keys.
authorCory Benfield <lukasaoz@gmail.com>
Tue, 21 Feb 2012 22:51:38 +0000 (22:51 +0000)
committerCory Benfield <lukasaoz@gmail.com>
Tue, 21 Feb 2012 22:51:38 +0000 (22:51 +0000)
requests/packages/oreos/monkeys.py

index 9f9a9c7..72ce68d 100644 (file)
@@ -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       = {