This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author pitrou
Recipients pitrou, sable
Date 2011-02-11.13:53:46
SpamBayes Score 0.061250824
Marked as misclassified No
Message-id <1297432426.64.0.525206451636.issue11184@psf.upfronthosting.co.za>
In-reply-to
Content
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
History
Date User Action Args
2011-02-11 13:53:46pitrousetrecipients: + pitrou, sable
2011-02-11 13:53:46pitrousetmessageid: <1297432426.64.0.525206451636.issue11184@psf.upfronthosting.co.za>
2011-02-11 13:53:46pitroulinkissue11184 messages
2011-02-11 13:53:46pitroucreate