Message 128387 - Python tracker
Hmm, interesting. Can you post the results of the two following snippets:
>>> f = open('foo', 'wb')
>>> f.seek(2**32)
# should be 4294967296
>>> f = open('foo', 'wb')
>>> f.truncate(2**32)
# should be 4294967296
Hmm, interesting. Can you post the results of the two following snippets:
>>> f = open('foo', 'wb')
>>> f.seek(2**32)
# should be 4294967296
>>> f = open('foo', 'wb')
>>> f.truncate(2**32)
# should be 4294967296