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
2ac5de2a
Kaydet (Commit)
2ac5de2a
authored
Tem 07, 2008
tarafından
Facundo Batista
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue 3314. The sys module is used in an error case.
üst
9f2f8333
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
test_urlparse.py
Lib/test/test_urlparse.py
+4
-0
parse.py
Lib/urllib/parse.py
+2
-1
No files found.
Lib/test/test_urlparse.py
Dosyayı görüntüle @
2ac5de2a
...
...
@@ -310,6 +310,10 @@ class UrlParseTestCase(unittest.TestCase):
self
.
assertEqual
(
urllib
.
parse
.
urlparse
(
"http://example.com?blahblah=/foo"
),
(
'http'
,
'example.com'
,
''
,
''
,
'blahblah=/foo'
,
''
))
def
test_usingsys
(
self
):
# Issue 3314: sys module is used in the error
self
.
assertRaises
(
TypeError
,
urllib
.
parse
.
urlencode
,
"foo"
)
def
test_main
():
support
.
run_unittest
(
UrlParseTestCase
)
...
...
Lib/urllib/parse.py
Dosyayı görüntüle @
2ac5de2a
...
...
@@ -4,6 +4,8 @@ See RFC 1808: "Relative Uniform Resource Locators", by R. Fielding,
UC Irvine, June 1995.
"""
import
sys
__all__
=
[
"urlparse"
,
"urlunparse"
,
"urljoin"
,
"urldefrag"
,
"urlsplit"
,
"urlunsplit"
]
...
...
@@ -599,7 +601,6 @@ test_input = """
"""
def
test
():
import
sys
base
=
''
if
sys
.
argv
[
1
:]:
fn
=
sys
.
argv
[
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