Return the current position of this file.
(self)
| 1699 | return await self._read_size_or_line(size=size) |
| 1700 | |
| 1701 | def tell(self) -> int: |
| 1702 | """Return the current position of this file.""" |
| 1703 | return self._position |
| 1704 | |
| 1705 | async def seek(self, pos: int, whence: int = _SEEK_SET) -> int: |
| 1706 | """Set the current position of this file. |
no outgoing calls