ConnectionAbortedErrorConnectionAbortedError
The connection was aborted by the local machine.
FloatingPointErrorA floating point operation failed. Rarely seen unless fpectl is enabled.
A floating-point operation produced an invalid result. This error is very rare in practice; it only occurs when the deprecated fpectl module is enabled to trap IEEE 754 floating-point exceptions.
This is extremely rare. If encountered, check for invalid floating-point operations (division by zero, invalid values). Use math.isnan() and math.isinf() to validate results. Use the decimal module for precise calculations.
ConnectionAbortedErrorThe connection was aborted by the local machine.
UnboundLocalErrorA local variable was referenced before it was assigned a value.
IsADirectoryErrorA file operation was attempted on a path that is a directory.
AssertionErrorAn assert statement failed because the condition evaluated to False.
FileNotFoundErrorThe specified file or directory does not exist.
IOErrorAn I/O operation failed. IOError is an alias for OSError in Python 3.