Return the set of errors raised by the FTP class.
()
| 1755 | |
| 1756 | _ftperrors = None |
| 1757 | def ftperrors(): |
| 1758 | """Return the set of errors raised by the FTP class.""" |
| 1759 | global _ftperrors |
| 1760 | if _ftperrors is None: |
| 1761 | import ftplib |
| 1762 | _ftperrors = ftplib.all_errors |
| 1763 | return _ftperrors |
| 1764 | |
| 1765 | _noheaders = None |
| 1766 | def noheaders(): |
no outgoing calls
no test coverage detected
searching dependent graphs…