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
6057ba1f
Kaydet (Commit)
6057ba1f
authored
May 08, 2010
tarafından
Senthil Kumaran
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix Issue8656 - urllib2 mangles
file://-scheme
URLs
üst
badc7098
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
test_urllib2.py
Lib/test/test_urllib2.py
+2
-1
urllib2.py
Lib/urllib2.py
+1
-1
No files found.
Lib/test/test_urllib2.py
Dosyayı görüntüle @
6057ba1f
...
...
@@ -679,7 +679,7 @@ class HandlerTests(unittest.TestCase):
try
:
data
=
r
.
read
()
headers
=
r
.
info
()
new
url
=
r
.
geturl
()
resp
url
=
r
.
geturl
()
finally
:
r
.
close
()
stats
=
os
.
stat
(
TESTFN
)
...
...
@@ -690,6 +690,7 @@ class HandlerTests(unittest.TestCase):
self
.
assertEqual
(
headers
[
"Content-type"
],
"text/plain"
)
self
.
assertEqual
(
headers
[
"Content-length"
],
"13"
)
self
.
assertEqual
(
headers
[
"Last-modified"
],
modified
)
self
.
assertEqual
(
respurl
,
url
)
for
url
in
[
"file://localhost:80
%
s"
%
urlpath
,
...
...
Lib/urllib2.py
Dosyayı görüntüle @
6057ba1f
...
...
@@ -1291,7 +1291,7 @@ class FileHandler(BaseHandler):
if
not
host
or
\
(
not
port
and
socket
.
gethostbyname
(
host
)
in
self
.
get_names
()):
return
addinfourl
(
open
(
localfile
,
'rb'
),
headers
,
'file:
'
+
file
)
headers
,
'file:
//'
+
host
+
file
)
except
OSError
,
msg
:
# urllib2 users shouldn't expect OSErrors coming from urlopen()
raise
URLError
(
msg
)
...
...
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