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
21974798
Kaydet (Commit)
21974798
authored
Kas 06, 1992
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Added all_errors, list of all possible exceptions.
üst
c68a4018
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
ftplib.py
Lib/ftplib.py
+7
-1
No files found.
Lib/ftplib.py
Dosyayı görüntüle @
21974798
...
...
@@ -36,13 +36,19 @@ import string
FTP_PORT
=
21
# Exception raised
s
when an error or invalid response is received
# Exception raised when an error or invalid response is received
error_reply
=
'ftplib.error_reply'
# unexpected [123]xx reply
error_temp
=
'ftplib.error_temp'
# 4xx errors
error_perm
=
'ftplib.error_perm'
# 5xx errors
error_proto
=
'ftplib.error_proto'
# response does not begin with [1-5]
# All exceptions (hopefully) that may be raised here and that aren't
# (always) programming errors on our side
all_errors
=
(
error_reply
,
error_temp
,
error_perm
,
error_proto
,
\
socket
.
error
,
IOError
)
# Line terminators (we always output CRLF, but accept any of CRLF, CR, LF)
CRLF
=
'
\r\n
'
...
...
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