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
833a8d86
Kaydet (Commit)
833a8d86
authored
Agu 24, 2001
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
SF patch #454553 by Walter Dörwald: add content-type to FTP URLs, like
for urllib.
üst
845fc48b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
4 deletions
+7
-4
urllib2.py
Lib/urllib2.py
+7
-4
No files found.
Lib/urllib2.py
Dosyayı görüntüle @
833a8d86
...
...
@@ -956,11 +956,14 @@ class FTPHandler(BaseHandler):
value
in
(
'a'
,
'A'
,
'i'
,
'I'
,
'd'
,
'D'
):
type
=
value
.
upper
()
fp
,
retrlen
=
fw
.
retrfile
(
file
,
type
)
headers
=
""
mtype
=
mimetypes
.
guess_type
(
req
.
get_full_url
())[
0
]
if
mtype
:
headers
+=
"Content-Type:
%
s
\n
"
%
mtype
if
retrlen
is
not
None
and
retrlen
>=
0
:
sf
=
StringIO
(
'Content-Length:
%
d
\n
'
%
retrlen
)
headers
=
mimetools
.
Message
(
sf
)
else
:
headers
=
noheaders
()
headers
+=
"Content-Length:
%
d
\n
"
%
retrlen
sf
=
StringIO
(
headers
)
headers
=
mimetools
.
Message
(
sf
)
return
addinfourl
(
fp
,
headers
,
req
.
get_full_url
())
except
ftplib
.
all_errors
,
msg
:
raise
IOError
,
(
'ftp error'
,
msg
),
sys
.
exc_info
()[
2
]
...
...
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