李昂 d9349b7812 !61 Support seek() and tell() for FILEIO
* fix FILEIO.seek()
* return ftell in FILEIO.seek()
* fix test
* support seek() and tell() for FILEIO
2022-07-18 05:29:43 +00:00

4 lines
78 B
Python

f = open('test/assets/test.jpg', 'rb')
len = f.seek(0, 2)
print(len)
f.close()