Python 2.7 でこの特定の例外 (およびこの例外のみ) をキャッチしようとしていますが、例外クラスに関するドキュメントが見つからないようです。ありますか?
[Errno 10054] An existing connection was forcibly closed by the remote host
これまでの私のコード:
try:
# Deleting filename
self.ftp.delete(filename)
return True
except (error_reply, error_perm, error_temp):
return False
except # ?? What goes here for Errno 10054 ??
reconnect()
retry_action()