FutureWarningFutureWarning
A warning about behavior that will change in a future version.
IsADirectoryErrorA file operation was attempted on a path that is a directory.
You tried to open, read, or write to a path that is a directory, not a file. For example, calling open('/some/directory') or writing to a directory path.
Check if the path is a directory with os.path.isdir(). Use the correct file path instead. If listing directory contents, use os.listdir() or pathlib.Path.iterdir().
FutureWarningA warning about behavior that will change in a future version.
StopIterationRaised by the next() function to indicate that there are no further items in an iterator.
ProcessLookupErrorThe specified process does not exist.
OSErrorA system-level error occurred during an I/O operation.
ConnectionRefusedErrorThe connection was refused because no server is listening on the target address.
BufferErrorAn operation on a buffer object failed.