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
2bdec7bf
Kaydet (Commit)
2bdec7bf
authored
Eyl 10, 2005
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Revert 1.170. Add tests.
üst
803ce801
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
3 deletions
+12
-3
test_urllib.py
Lib/test/test_urllib.py
+6
-0
urllib.py
Lib/urllib.py
+6
-3
No files found.
Lib/test/test_urllib.py
Dosyayı görüntüle @
2bdec7bf
...
...
@@ -353,6 +353,12 @@ class QuotingTests(unittest.TestCase):
self
.
assertEqual
(
expect
,
result
,
"using quote_plus():
%
s !=
%
s"
%
(
expect
,
result
))
def
test_quoting_plus
(
self
):
self
.
assertEqual
(
urllib
.
quote_plus
(
'alpha+beta gamma'
),
'alpha
%2
Bbeta+gamma'
)
self
.
assertEqual
(
urllib
.
quote_plus
(
'alpha+beta gamma'
,
'+'
),
'alpha+beta+gamma'
)
class
UnquotingTests
(
unittest
.
TestCase
):
"""Tests for unquote() and unquote_plus()
...
...
Lib/urllib.py
Dosyayı görüntüle @
2bdec7bf
...
...
@@ -1110,9 +1110,12 @@ def quote(s, safe = '/'):
def
quote_plus
(
s
,
safe
=
''
):
"""Quote the query fragment of a URL; replacing ' ' with '+'"""
if
' '
in
s
:
s
=
s
.
replace
(
' '
,
'+'
)
safe
+=
'+'
return
quote
(
s
,
safe
)
l
=
s
.
split
(
' '
)
for
i
in
range
(
len
(
l
)):
l
[
i
]
=
quote
(
l
[
i
],
safe
)
return
'+'
.
join
(
l
)
else
:
return
quote
(
s
,
safe
)
def
urlencode
(
query
,
doseq
=
0
):
"""Encode a sequence of two-element tuples or dictionary into a URL query string.
...
...
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