using mmap on large (> 2 Gig) files
Hi Anyone ever done this? It looks like Python2.4 won't take a length arg > 2 Gig since its not seen as an int. Mathew -- http://mail.python.org/mailman/listinfo/python-list
Re: using mmap on large (> 2 Gig) files
Well, compiling Python 2.5 on Solaris 10 on an x86 is no walk in the park. pyconfig.h seems to think SIZEOF_LONG is 4 and I SEGV during my build, even after modifying the Makefile and pyconfig.h. Mathew Martin v. Löwis wrote: > [EMAIL PROTECTED] schrieb: > > Anyone ever done this? It looks like P