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
4b0f20de
Kaydet (Commit)
4b0f20de
authored
Eki 15, 2005
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Teach unquote() to handle unicode inputs
üst
239322b9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
test_urllib.py
Lib/test/test_urllib.py
+4
-0
urllib.py
Lib/urllib.py
+2
-0
No files found.
Lib/test/test_urllib.py
Dosyayı görüntüle @
4b0f20de
...
...
@@ -415,6 +415,10 @@ class UnquotingTests(unittest.TestCase):
self
.
assertEqual
(
expect
,
result
,
"using unquote_plus():
%
s !=
%
s"
%
(
expect
,
result
))
def
test_unquote_with_unicode
(
self
):
r
=
urllib
.
unquote
(
u'br
%
C3
%
BCckner_sapporo_20050930.doc'
)
self
.
assertEqual
(
r
,
u'br
\xc3\xbc
ckner_sapporo_20050930.doc'
)
class
urlencode_Tests
(
unittest
.
TestCase
):
"""Tests for urlencode()"""
...
...
Lib/urllib.py
Dosyayı görüntüle @
4b0f20de
...
...
@@ -1061,6 +1061,8 @@ def unquote(s):
res
[
i
]
=
_hextochr
[
item
[:
2
]]
+
item
[
2
:]
except
KeyError
:
res
[
i
]
=
'
%
'
+
item
except
UnicodeDecodeError
:
res
[
i
]
=
unichr
(
int
(
item
[:
2
],
16
))
+
item
[
2
:]
return
""
.
join
(
res
)
def
unquote_plus
(
s
):
...
...
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