Changes between Initial Version and Version 1 of Ticket #14, comment 6
- Timestamp:
- 2015-03-02 21:13:29 (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #14, comment 6
initial v1 5 5 That has a type error; `args.inputfile` is a file object, not a string. 6 6 7 How that I think about it, the behaviour should be the same for all non-seekable files, which includes devices. A non-seekable file will give an `IOError` with `errno.ESPIPE` (on Unix) or `errno.EBADF` (on Windows) from the attempt to seek.7 Now that I think about it, the behaviour should be the same for all non-seekable files, which includes devices. A non-seekable file will give an `IOError` with `errno.ESPIPE` (on Unix) or `errno.EBADF` (on Windows) from the attempt to seek.