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
1ef0c034
Kaydet (Commit)
1ef0c034
authored
Eki 19, 2011
tarafından
Senthil Kumaran
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
3.2 - Fix closes Issue12529 - cgi.parse_header failure on double quotes and
semicolons. Patch by Ben Darnell and Petri Lehtinen.
üst
e130a52d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
cgi.py
Lib/cgi.py
+1
-1
test_cgi.py
Lib/test/test_cgi.py
+4
-0
No files found.
Lib/cgi.py
Dosyayı görüntüle @
1ef0c034
...
...
@@ -291,7 +291,7 @@ def _parseparam(s):
while
s
[:
1
]
==
';'
:
s
=
s
[
1
:]
end
=
s
.
find
(
';'
)
while
end
>
0
and
s
.
count
(
'"'
,
0
,
end
)
%
2
:
while
end
>
0
and
(
s
.
count
(
'"'
,
0
,
end
)
-
s
.
count
(
'
\\
"'
,
0
,
end
)
)
%
2
:
end
=
s
.
find
(
';'
,
end
+
1
)
if
end
<
0
:
end
=
len
(
s
)
...
...
Lib/test/test_cgi.py
Dosyayı görüntüle @
1ef0c034
...
...
@@ -348,6 +348,10 @@ this is the content of the fake file
self
.
assertEqual
(
cgi
.
parse_header
(
'attachment; filename="strange;name";size=123;'
),
(
"attachment"
,
{
"filename"
:
"strange;name"
,
"size"
:
"123"
}))
self
.
assertEqual
(
cgi
.
parse_header
(
'form-data; name="files"; filename="fo
\\
"o;bar"'
),
(
"form-data"
,
{
"name"
:
"files"
,
"filename"
:
'fo"o;bar'
}))
BOUNDARY
=
"---------------------------721837373350705526688164684"
...
...
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