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
f66263c2
Kaydet (Commit)
f66263c2
authored
Tem 20, 2007
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix test_cookie.py.
üst
99603b0c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
Cookie.py
Lib/Cookie.py
+5
-5
No files found.
Lib/Cookie.py
Dosyayı görüntüle @
f66263c2
...
...
@@ -161,8 +161,8 @@ strange-looking cookie values, however.)
7
>>> C["string"].value
'seven'
>>> C.output()
.replace('p0', 'p1') # Hack for pickling differences
'Set-Cookie: number="
I7\\012."\r\nSet-Cookie: string="Vseven\\012p1
\\012."'
>>> C.output()
'Set-Cookie: number="
L7\\012."\r\nSet-Cookie: string="Vseven\\012p0
\\012."'
Be warned, however, if SerialCookie cannot de-serialize a value (because
it isn't a valid pickle'd object), IT WILL RAISE AN EXCEPTION.
...
...
@@ -186,7 +186,7 @@ as a string.
>>> C["string"].value
'seven'
>>> C.output()
'Set-Cookie: number="
I
7\\012."\r\nSet-Cookie: string=seven'
'Set-Cookie: number="
L
7\\012."\r\nSet-Cookie: string=seven'
Backwards Compatibility
...
...
@@ -676,7 +676,7 @@ class SerialCookie(BaseCookie):
# This could raise an exception!
return
loads
(
_unquote
(
val
)
.
encode
(
'latin-1'
)
),
val
def
value_encode
(
self
,
val
):
return
val
,
_quote
(
dumps
(
val
)
.
decode
(
'latin-1'
)
)
return
val
,
_quote
(
dumps
(
val
,
0
)
.
decode
(
'latin-1'
)
)
# end SerialCookie
class
SmartCookie
(
BaseCookie
):
...
...
@@ -707,7 +707,7 @@ class SmartCookie(BaseCookie):
if
isinstance
(
val
,
str
):
return
val
,
_quote
(
val
)
else
:
return
val
,
_quote
(
dumps
(
val
)
.
decode
(
'latin-1'
)
)
return
val
,
_quote
(
dumps
(
val
,
0
)
.
decode
(
'latin-1'
)
)
# end SmartCookie
...
...
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