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
2230bcfe
Kaydet (Commit)
2230bcfe
authored
Ock 22, 2008
tarafından
Gregory P. Smith
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
docstring and comment updates suggested by Giampaolo Rodola'
üst
2dec48d1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
ftplib.py
Lib/ftplib.py
+3
-3
No files found.
Lib/ftplib.py
Dosyayı görüntüle @
2230bcfe
...
...
@@ -313,7 +313,7 @@ class FTP:
expected size may be None if it could not be determined.
Optional `rest' argument can be a string that is sent as the
argument to a REST
ART
command. This is essentially a server
argument to a REST command. This is essentially a server
marker used to tell the server to skip over any data up to the
given marker.
"""
...
...
@@ -403,7 +403,7 @@ class FTP:
"""Retrieve data in line mode. A new port is created for you.
Args:
cmd: A RETR
or LIST
command.
cmd: A RETR
, LIST, NLST, or MLSD
command.
callback: An optional single parameter callable that is called
for each line with the trailing CRLF stripped.
[default: print_line()]
...
...
@@ -539,7 +539,7 @@ class FTP:
def
size
(
self
,
filename
):
'''Retrieve the size of a file.'''
#
Note that the RFC doesn't say anything about 'SIZE'
#
The SIZE command is defined in RFC-3659
resp
=
self
.
sendcmd
(
'SIZE '
+
filename
)
if
resp
[:
3
]
==
'213'
:
s
=
resp
[
3
:]
.
strip
()
...
...
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