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
36cbc08f
Kaydet (Commit)
36cbc08f
authored
Kas 12, 2006
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Patch #1359217: Ignore 2xx response before 150 response.
Will backport to 2.5.
üst
056dac1b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
0 deletions
+14
-0
ftplib.py
Lib/ftplib.py
+11
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/ftplib.py
Dosyayı görüntüle @
36cbc08f
...
...
@@ -325,6 +325,14 @@ class FTP:
if
rest
is
not
None
:
self
.
sendcmd
(
"REST
%
s"
%
rest
)
resp
=
self
.
sendcmd
(
cmd
)
# Some servers apparently send a 200 reply to
# a LIST or STOR command, before the 150 reply
# (and way before the 226 reply). This seems to
# be in violation of the protocol (which only allows
# 1xx or error messages for LIST), so we just discard
# this response.
if
resp
[
0
]
==
'2'
:
resp
=
self
.
getresp
()
if
resp
[
0
]
!=
'1'
:
raise
error_reply
,
resp
else
:
...
...
@@ -332,6 +340,9 @@ class FTP:
if
rest
is
not
None
:
self
.
sendcmd
(
"REST
%
s"
%
rest
)
resp
=
self
.
sendcmd
(
cmd
)
# See above.
if
resp
[
0
]
==
'2'
:
resp
=
self
.
getresp
()
if
resp
[
0
]
!=
'1'
:
raise
error_reply
,
resp
conn
,
sockaddr
=
sock
.
accept
()
...
...
Misc/NEWS
Dosyayı görüntüle @
36cbc08f
...
...
@@ -98,6 +98,9 @@ Core and builtins
Library
-------
- Patch #1359217: Process 2xx response in an ftplib transfer
that precedes an 1xx response.
- Patch #1355023: support whence argument for GzipFile.seek.
- Patch #1065257: Support passing open files as body in
...
...
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