Return the virtual position in file.
(self)
| 145 | self.__file.seek(offset * 4) |
| 146 | |
| 147 | def tell(self): |
| 148 | 'Return the virtual position in file.' |
| 149 | return self.__file.tell() / 4 |
| 150 | |
| 151 | def close(self): |
| 152 | 'Close the File_Crypt object.' |
no outgoing calls
no test coverage detected