MCPcopy Index your code
hub / github.com/python/cpython / ftperrors

Function ftperrors

Lib/urllib/request.py:1757–1763  ·  view source on GitHub ↗

Return the set of errors raised by the FTP class.

()

Source from the content-addressed store, hash-verified

1755
1756_ftperrors = None
1757def 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
1766def noheaders():

Callers 2

endtransferMethod · 0.85
real_closeMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…