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
3e2ea79b
Kaydet (Commit)
3e2ea79b
authored
Nis 02, 2009
tarafından
Senthil Kumaran
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixing the issue4860. Escaping the embedded '"' in the js_output method of Morsel class.
üst
b868a66c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
cookies.py
Lib/http/cookies.py
+1
-1
test_http_cookies.py
Lib/test/test_http_cookies.py
+4
-4
No files found.
Lib/http/cookies.py
Dosyayı görüntüle @
3e2ea79b
...
...
@@ -392,7 +392,7 @@ class Morsel(dict):
document.cookie =
\"
%
s
\"
;
// end hiding -->
</script>
"""
%
(
self
.
OutputString
(
attrs
)
,
)
"""
%
(
self
.
OutputString
(
attrs
)
.
replace
(
'"'
,
r'\"'
)
)
# end js_output()
def
OutputString
(
self
,
attrs
=
None
):
...
...
Lib/test/test_http_cookies.py
Dosyayı görüntüle @
3e2ea79b
...
...
@@ -50,17 +50,17 @@ class CookieTests(unittest.TestCase):
self
.
assertEqual
(
C
.
output
([
'path'
]),
'Set-Cookie: Customer="WILE_E_COYOTE"; Path=/acme'
)
self
.
assertEqual
(
C
.
js_output
(),
"""
self
.
assertEqual
(
C
.
js_output
(),
r
"""
<script type="text/javascript">
<!-- begin hiding
document.cookie = "Customer=
"WILE_E_COYOTE
"; Path=/acme; Version=1";
document.cookie = "Customer=
\"WILE_E_COYOTE\
"; Path=/acme; Version=1";
// end hiding -->
</script>
"""
)
self
.
assertEqual
(
C
.
js_output
([
'path'
]),
"""
self
.
assertEqual
(
C
.
js_output
([
'path'
]),
r
"""
<script type="text/javascript">
<!-- begin hiding
document.cookie = "Customer=
"WILE_E_COYOTE
"; Path=/acme";
document.cookie = "Customer=
\"WILE_E_COYOTE\
"; Path=/acme";
// end hiding -->
</script>
"""
)
...
...
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