Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
b1188704
Commit
b1188704
authored
Feb 24, 2016
by
Jason R. Coombs
Browse files
Options
Browse Files
Download
Plain Diff
Issue #26302: merge from 3.5
parents
d10aa2e3
102d813b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
1 deletion
+10
-1
Lib/http/cookies.py
Lib/http/cookies.py
+1
-1
Lib/test/test_http_cookies.py
Lib/test/test_http_cookies.py
+6
-0
Misc/NEWS
Misc/NEWS
+3
-0
No files found.
Lib/http/cookies.py
View file @
b1188704
...
@@ -174,7 +174,7 @@ _Translator.update({
...
@@ -174,7 +174,7 @@ _Translator.update({
ord
(
'
\
\
'
):
'
\
\
\
\
'
,
ord
(
'
\
\
'
):
'
\
\
\
\
'
,
})
})
_is_legal_key
=
re
.
compile
(
'[%s]+'
%
_LegalChars
).
fullmatch
_is_legal_key
=
re
.
compile
(
'[%s]+'
%
re
.
escape
(
_LegalChars
)
).
fullmatch
def
_quote
(
str
):
def
_quote
(
str
):
r"""Quote a string for use in a cookie header.
r"""Quote a string for use in a cookie header.
...
...
Lib/test/test_http_cookies.py
View file @
b1188704
...
@@ -210,6 +210,12 @@ class CookieTests(unittest.TestCase):
...
@@ -210,6 +210,12 @@ class CookieTests(unittest.TestCase):
C1
=
pickle
.
loads
(
pickle
.
dumps
(
C
,
protocol
=
proto
))
C1
=
pickle
.
loads
(
pickle
.
dumps
(
C
,
protocol
=
proto
))
self
.
assertEqual
(
C1
.
output
(),
expected_output
)
self
.
assertEqual
(
C1
.
output
(),
expected_output
)
def
test_illegal_chars
(
self
):
rawdata
=
"a=b; c,d=e"
C
=
cookies
.
SimpleCookie
()
with
self
.
assertRaises
(
cookies
.
CookieError
):
C
.
load
(
rawdata
)
class
MorselTests
(
unittest
.
TestCase
):
class
MorselTests
(
unittest
.
TestCase
):
"""Tests for the Morsel object."""
"""Tests for the Morsel object."""
...
...
Misc/NEWS
View file @
b1188704
...
@@ -10,6 +10,9 @@ Release date: tba
...
@@ -10,6 +10,9 @@ Release date: tba
Core and Builtins
Core and Builtins
-----------------
-----------------
- Issue #26302: Correct behavior to reject comma as a legal character for
cookie names.
- Issue #26136: Upgrade the warning when a generator raises StopIteration
- Issue #26136: Upgrade the warning when a generator raises StopIteration
from PendingDeprecationWarning to DeprecationWarning. Patch by Anish
from PendingDeprecationWarning to DeprecationWarning. Patch by Anish
Shah.
Shah.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment