Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
d5a2377c
Unverified
Kaydet (Commit)
d5a2377c
authored
Nis 22, 2018
tarafından
Berker Peksag
Kaydeden (comit)
GitHub
Nis 22, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-991266: Fix quoting of Comment attribute of SimpleCookie (GH-6555)
üst
b81ca28b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
0 deletions
+13
-0
cookies.py
Lib/http/cookies.py
+2
-0
test_http_cookies.py
Lib/test/test_http_cookies.py
+10
-0
2018-04-21-00-24-08.bpo-991266.h93TP_.rst
....d/next/Library/2018-04-21-00-24-08.bpo-991266.h93TP_.rst
+1
-0
No files found.
Lib/http/cookies.py
Dosyayı görüntüle @
d5a2377c
...
...
@@ -408,6 +408,8 @@ class Morsel(dict):
append
(
"
%
s=
%
s"
%
(
self
.
_reserved
[
key
],
_getdate
(
value
)))
elif
key
==
"max-age"
and
isinstance
(
value
,
int
):
append
(
"
%
s=
%
d"
%
(
self
.
_reserved
[
key
],
value
))
elif
key
==
"comment"
and
isinstance
(
value
,
str
):
append
(
"
%
s=
%
s"
%
(
self
.
_reserved
[
key
],
_quote
(
value
)))
elif
key
in
self
.
_flags
:
if
value
:
append
(
str
(
self
.
_reserved
[
key
]))
...
...
Lib/test/test_http_cookies.py
Dosyayı görüntüle @
d5a2377c
...
...
@@ -220,6 +220,16 @@ class CookieTests(unittest.TestCase):
with
self
.
assertRaises
(
cookies
.
CookieError
):
C
.
load
(
rawdata
)
def
test_comment_quoting
(
self
):
c
=
cookies
.
SimpleCookie
()
c
[
'foo'
]
=
'
\N{COPYRIGHT SIGN}
'
self
.
assertEqual
(
str
(
c
[
'foo'
]),
'Set-Cookie: foo="
\\
251"'
)
c
[
'foo'
][
'comment'
]
=
'comment
\N{COPYRIGHT SIGN}
'
self
.
assertEqual
(
str
(
c
[
'foo'
]),
'Set-Cookie: foo="
\\
251"; Comment="comment
\\
251"'
)
class
MorselTests
(
unittest
.
TestCase
):
"""Tests for the Morsel object."""
...
...
Misc/NEWS.d/next/Library/2018-04-21-00-24-08.bpo-991266.h93TP_.rst
0 → 100644
Dosyayı görüntüle @
d5a2377c
Fix quoting of the ``Comment`` attribute of :class:`http.cookies.SimpleCookie`.
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