FloatingPointErrorFloatingPointError
A floating point operation failed. Rarely seen unless fpectl is enabled.
BufferErrorAn operation on a buffer object failed.
A buffer-related operation failed. This typically occurs when trying to resize or modify a buffer that has active views/exports, or when buffer protocol operations encounter incompatible formats.
Release all memoryview objects and buffer exports before modifying the underlying buffer. Ensure buffer formats are compatible when performing operations. Create a copy of the data if you need to modify it while views exist.
FloatingPointErrorA floating point operation failed. Rarely seen unless fpectl is enabled.
TypeErrorAn operation or function was applied to an object of an inappropriate type.
MemoryErrorThe Python interpreter ran out of available memory.
SyntaxErrorPython encountered invalid syntax that cannot be parsed.
FileNotFoundErrorThe specified file or directory does not exist.
ModuleNotFoundErrorPython could not find the specified module to import.