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.

作者 saa
收信人 saa
日期 2008-12-17.08:40:03
SpamBayes Score 0.00094488036
Marked as misclassified
Message-id <1229503209.88.0.900633557014.issue4681@psf.upfronthosting.co.za>
In-reply-to
内容
In trying to use the mmap offset to allow me to work with a 12GB file, I 
encountered the fact that the new offset parameter was a ssize_t, which 
is only 32 bits on my platform (OS X).  The mmap offset in C is defined 
to be an off_t 
(http://opengroup.org/onlinepubs/007908775/xsh/mmap.html), which is 64 
bits on my platform.  The attached patch attempts to fix the non-Windows 
code to have an off_t offset parameter and allows my code to access all 
12 GB of my file.  As a warning, this is the first time I've even looked 
at the Python source, and wouldn't even consider myself a Python coder; 
I just use Python every few months.  Review the patch carefully.
历史
日期 用户 动作 参数
2008-12-17 08:40:10saa修改recipients: + saa
2008-12-17 08:40:09saa修改messageid: <1229503209.88.0.900633557014.issue4681@psf.upfronthosting.co.za>
2008-12-17 08:40:08saa链接issue4681 messages
2008-12-17 08:40:06saa创建