Re: Heap Memory

2006-11-17 Thread Fredrik Lundh
Gregory Piñero wrote: > How does Python use memory on a 64 bit OS? Is there a lot more > available to it by default? as we've already said a couple of hundred times in this thread, Python uses *all* the memory it can get from the operating system. no more, no less. (the link I posted yesterd

Re: Heap Memory

2006-11-17 Thread Gregory Piñero
On 11/17/06, Dennis Lee Bieber <[EMAIL PROTECTED]> wrote: > The default configuration for WinXP is 2GB shared OS, and 2GB > process... I believe there is some registry setting that can change that > to 1GB/3GB. I did some research and it looks like it does apply to XP (http://support.micro

Re: Heap Memory

2006-11-16 Thread Thinker
Gregory Pi鎑ro wrote: > This computer it was running on has 2GB of RAM and 6GB of virtual > memory so I really doubt I had used up all of that memory. I didn't > watch it the whole time so I can't be sure though. Any ideas what > could have been going on there? > > -Greg > What is your OS? Mayb

Re: Heap Memory

2006-11-16 Thread Gregory Piñero
On 11/16/06, Thinker <[EMAIL PROTECTED]> wrote: > What is your OS? Maybe you should show out the memory usage of your python > process. In FreeBSD, you should set evironment variable > 'MALLOC_OPTIONS=P' to > print out usage of malloc()。Maybe you can find a way, in your system, > to print out usage

Re: Heap Memory

2006-11-16 Thread Marc 'BlackJack' Rintsch
In <[EMAIL PROTECTED]>, Gregory Piñero wrote: > This computer it was running on has 2GB of RAM and 6GB of virtual > memory so I really doubt I had used up all of that memory. On 32 bit systems the per process limit is usually 2 GiB, no matter how much physical and virtual memory you have. And wi

Re: Heap Memory

2006-11-16 Thread Fredrik Lundh
Gregory Piñero wrote: > This computer it was running on has 2GB of RAM and 6GB of virtual > memory so I really doubt I had used up all of that memory. I didn't > watch it the whole time so I can't be sure though. Any ideas what > could have been going on there? bogus configuration? http:/

Re: Heap Memory

2006-11-16 Thread Gregory Piñero
On 11/16/06, Fredrik Lundh <[EMAIL PROTECTED]> wrote: > what are you guys talking about? there are no artificial memory > limitations in Python; a Python process simply uses all the memory it > can get from the operating system. I wish I could easily reproduce one of these errors I'm thinking of.

Re: Heap Memory

2006-11-16 Thread Fredrik Lundh
Gregory Piñero wrote: >> I have a question. How can we increase heap memory or total memory Python >> interpreter >> will use in order to avoid memory problems ? > > I've wondered the same thing myself. Even if it turns out it's just > not possible I hope

Re: Heap Memory

2006-11-16 Thread Gregory Piñero
On 11/16/06, Bugra Cakir <[EMAIL PROTECTED]> wrote: > Hi my name is Bugra Cakir, > > I have a question. How can we increase heap memory or total memory Python > interpreter > will use in order to avoid memory problems ? I've wondered the same thing myself. Even if

Heap Memory

2006-11-16 Thread Bugra Cakir
Hi my name is Bugra Cakir, I have a question. How can we increase heap memory or total memory Python interpreter will use in order to avoid memory problems ? -- http://mail.python.org/mailman/listinfo/python-list