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
2ef16328
Kaydet (Commit)
2ef16328
authored
Tem 11, 2010
tarafından
Senthil Kumaran
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Stricter verification for file based url scheme and reliance on ftp protocol.
üst
0d62f5bb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
test_urllib2.py
Lib/test/test_urllib2.py
+3
-0
request.py
Lib/urllib/request.py
+2
-1
No files found.
Lib/test/test_urllib2.py
Dosyayı görüntüle @
2ef16328
...
...
@@ -731,6 +731,8 @@ class HandlerTests(unittest.TestCase):
(
"file://ftp.example.com///foo.txt"
,
False
),
# XXXX bug: fails with OSError, should be URLError
(
"file://ftp.example.com/foo.txt"
,
False
),
(
"file://somehost//foo/something.txt"
,
True
),
(
"file://localhost//foo/something.txt"
,
False
),
]:
req
=
Request
(
url
)
try
:
...
...
@@ -741,6 +743,7 @@ class HandlerTests(unittest.TestCase):
else
:
self
.
assertTrue
(
o
.
req
is
req
)
self
.
assertEqual
(
req
.
type
,
"ftp"
)
self
.
assertEqual
(
req
.
type
is
"ftp"
,
ftp
)
def
test_http
(
self
):
...
...
Lib/urllib/request.py
Dosyayı görüntüle @
2ef16328
...
...
@@ -1188,7 +1188,8 @@ class FileHandler(BaseHandler):
# Use local file or FTP depending on form of URL
def
file_open
(
self
,
req
):
url
=
req
.
selector
if
url
[:
2
]
==
'//'
and
url
[
2
:
3
]
!=
'/'
:
if
url
[:
2
]
==
'//'
and
url
[
2
:
3
]
!=
'/'
and
(
req
.
host
and
req
.
host
!=
'localhost'
):
req
.
type
=
'ftp'
return
self
.
parent
.
open
(
req
)
else
:
...
...
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