summaryrefslogtreecommitdiff
path: root/Lib/http/cookies.py
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2012-05-20 16:58:59 +0800
committerSenthil Kumaran <senthil@uthcode.com>2012-05-20 16:58:59 +0800
commit854ec036c2900f2e41f84d4245d336c0dfe8477e (patch)
treedaa5358fefdc383d6ce5975858ffc61846da4d37 /Lib/http/cookies.py
parent2e36c06ea0d2c34018e3f80f0a7c192aaef0c5e6 (diff)
parent249c4c3cb7ef14ac145ac575740839b900bc784e (diff)
downloadcpython-854ec036c2900f2e41f84d4245d336c0dfe8477e.tar.gz
merge - Fix for issue14426 - buildbots here I come
Diffstat (limited to 'Lib/http/cookies.py')
-rw-r--r--Lib/http/cookies.py2
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',