diff options
Diffstat (limited to 'Lib/http/cookies.py')
| -rw-r--r-- | Lib/http/cookies.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/http/cookies.py b/Lib/http/cookies.py index ddbcbf877b..d2916786f2 100644 --- a/Lib/http/cookies.py +++ b/Lib/http/cookies.py @@ -159,7 +159,7 @@ class CookieError(Exception):  #       _LegalChars       is the list of chars which don't require "'s  #       _Translator       hash-table for fast quoting  # -_LegalChars       = string.ascii_letters + string.digits + "!#$%&'*+-.^_`|~" +_LegalChars       = string.ascii_letters + string.digits + "!#$%&'*+-.^_`|~:"  _Translator       = {      '\000' : '\\000',  '\001' : '\\001',  '\002' : '\\002',      '\003' : '\\003',  '\004' : '\\004',  '\005' : '\\005',  | 
