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
4e78de89
Kaydet (Commit)
4e78de89
authored
Şub 19, 2010
tarafından
Senthil Kumaran
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix for Issue7904. urlparse.urlsplit to handle schemes in the way defined by RFC3986
üst
cc43b569
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
2 deletions
+12
-2
test_urlparse.py
Lib/test/test_urlparse.py
+10
-1
urlparse.py
Lib/urlparse.py
+2
-1
No files found.
Lib/test/test_urlparse.py
Dosyayı görüntüle @
4e78de89
...
...
@@ -141,7 +141,7 @@ class UrlParseTestCase(unittest.TestCase):
(
base
,
relurl
,
expected
))
def
test_unparse_parse
(
self
):
for
u
in
[
'Python'
,
'./Python'
]:
for
u
in
[
'Python'
,
'./Python'
,
'x-newscheme://foo.com/stuff'
]:
self
.
assertEqual
(
urlparse
.
urlunsplit
(
urlparse
.
urlsplit
(
u
)),
u
)
self
.
assertEqual
(
urlparse
.
urlunparse
(
urlparse
.
urlparse
(
u
)),
u
)
...
...
@@ -353,6 +353,15 @@ class UrlParseTestCase(unittest.TestCase):
self
.
assertEqual
(
urlparse
.
urlparse
(
"http://example.com?blahblah=/foo"
),
(
'http'
,
'example.com'
,
''
,
''
,
'blahblah=/foo'
,
''
))
def
test_anyscheme
(
self
):
# Issue 7904: s3://foo.com/stuff has netloc "foo.com".
self
.
assertEqual
(
urlparse
.
urlparse
(
"s3://foo.com/stuff"
),
(
's3'
,
'foo.com'
,
'/stuff'
,
''
,
''
,
''
))
self
.
assertEqual
(
urlparse
.
urlparse
(
"x-newscheme://foo.com/stuff"
),
(
'x-newscheme'
,
'foo.com'
,
'/stuff'
,
''
,
''
,
''
))
def
test_main
():
test_support
.
run_unittest
(
UrlParseTestCase
)
...
...
Lib/urlparse.py
Dosyayı görüntüle @
4e78de89
...
...
@@ -163,7 +163,8 @@ def urlsplit(url, scheme='', allow_fragments=True):
break
else
:
scheme
,
url
=
url
[:
i
]
.
lower
(),
url
[
i
+
1
:]
if
scheme
in
uses_netloc
and
url
[:
2
]
==
'//'
:
if
url
[:
2
]
==
'//'
:
netloc
,
url
=
_splitnetloc
(
url
,
2
)
if
allow_fragments
and
scheme
in
uses_fragment
and
'#'
in
url
:
url
,
fragment
=
url
.
split
(
'#'
,
1
)
...
...
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