Re: Manipulating large blobs in Python

2005-04-21 Thread Fredrik Lundh
Tim Stone wrote: I'm working on a module that will manipulate large blobs. I'm using a C dll to allocate big blocks of memory, using PyMem_Malloc, which is working quite well up until I try to manipulate a blob that exhausts Python's heap. how large is that? I'm guessing that to increase the he

Manipulating large blobs in Python

2005-04-21 Thread Tim Stone
I'm working on a module that will manipulate large blobs. I'm using a C dll to allocate big blocks of memory, using PyMem_Malloc, which is working quite well up until I try to manipulate a blob that exhausts Python's heap. I'm guessing that to increase the heapsize, I'm going to have to recom