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
cf6b6326
Kaydet (Commit)
cf6b6326
authored
Eyl 10, 2005
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Corrected version of 1.170
üst
2bdec7bf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
6 deletions
+3
-6
urllib.py
Lib/urllib.py
+3
-6
No files found.
Lib/urllib.py
Dosyayı görüntüle @
cf6b6326
...
...
@@ -1110,12 +1110,9 @@ def quote(s, safe = '/'):
def
quote_plus
(
s
,
safe
=
''
):
"""Quote the query fragment of a URL; replacing ' ' with '+'"""
if
' '
in
s
:
l
=
s
.
split
(
' '
)
for
i
in
range
(
len
(
l
)):
l
[
i
]
=
quote
(
l
[
i
],
safe
)
return
'+'
.
join
(
l
)
else
:
return
quote
(
s
,
safe
)
s
=
quote
(
s
,
safe
+
' '
)
return
s
.
replace
(
' '
,
'+'
)
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