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
ace0bcf6
Kaydet (Commit)
ace0bcf6
authored
Eyl 08, 2008
tarafından
Facundo Batista
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue 3801. Fixing a dumb error in the deprecated parse_qsl()
function. Tests added.
üst
e080cdf3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
1 deletion
+12
-1
cgi.py
Lib/cgi.py
+1
-1
test_cgi.py
Lib/test/test_cgi.py
+11
-0
No files found.
Lib/cgi.py
Dosyayı görüntüle @
ace0bcf6
...
...
@@ -189,7 +189,7 @@ def parse_qsl(qs, keep_blank_values=0, strict_parsing=0):
"""Parse a query given as a string argument."""
warn
(
"cgi.parse_qsl is deprecated, use urlparse.parse_qsl instead"
,
PendingDeprecationWarning
)
return
urlparse
.
parse_qs
(
qs
,
keep_blank_values
,
strict_parsing
)
return
urlparse
.
parse_qs
l
(
qs
,
keep_blank_values
,
strict_parsing
)
def
parse_multipart
(
fp
,
pdict
):
"""Parse multipart input.
...
...
Lib/test/test_cgi.py
Dosyayı görüntüle @
ace0bcf6
...
...
@@ -344,6 +344,17 @@ this is the content of the fake file
v
=
gen_result
(
data
,
environ
)
self
.
assertEqual
(
result
,
v
)
def
test_deprecated_parse_qs
(
self
):
# this func is moved to urlparse, this is just a sanity check
self
.
assertEqual
({
'a'
:
[
'A1'
],
'B'
:
[
'B3'
],
'b'
:
[
'B2'
]},
cgi
.
parse_qs
(
'a=A1&b=B2&B=B3'
))
def
test_deprecated_parse_qsl
(
self
):
# this func is moved to urlparse, this is just a sanity check
self
.
assertEqual
([(
'a'
,
'A1'
),
(
'b'
,
'B2'
),
(
'B'
,
'B3'
)],
cgi
.
parse_qsl
(
'a=A1&b=B2&B=B3'
))
def
test_main
():
run_unittest
(
CgiTests
)
...
...
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