Raised when trying to do a kind of operation (e.g. copying) which is not supported on a special file (e.g. a named pipe)
| 79 | """Raised when source and destination are the same file.""" |
| 80 | |
| 81 | class SpecialFileError(OSError): |
| 82 | """Raised when trying to do a kind of operation (e.g. copying) which is |
| 83 | not supported on a special file (e.g. a named pipe)""" |
| 84 | |
| 85 | |
| 86 | class ReadError(OSError): |
no outgoing calls
no test coverage detected
searching dependent graphs…