Home | History | Annotate | Download | only in gslib

Lines Matching refs:FilePart

15 """FilePart implementation for representing part of a file."""
22 class FilePart(file):
32 """Initializes the FilePart.
38 the first byte of the FilePart.
39 length: The total number of bytes in the FilePart.
75 raise NotImplementedError('flush is not implemented in FilePart.')
78 raise NotImplementedError('fileno is not implemented in FilePart.')
81 raise NotImplementedError('isatty is not implemented in FilePart.')
84 raise NotImplementedError('next is not implemented in FilePart.')
87 raise NotImplementedError('readline is not implemented in FilePart.')
90 raise NotImplementedError('readlines is not implemented in FilePart.')
93 raise NotImplementedError('xreadlines is not implemented in FilePart.')
96 raise NotImplementedError('truncate is not implemented in FilePart.')
99 raise NotImplementedError('write is not implemented in FilePart.')
102 raise NotImplementedError('writelines is not implemented in FilePart.')