Please unregister this mail-address out of mailing-list.

2008-06-05 Thread Hank @ITGroup
Dear Python Staff, I am writing this letter to unsubscribe this mail-address from python mail-list. One problem is that this python community is so active that I always lost myself to find my business emails. So, I want to quit this mail-address from you, and want to set up a specific mail-box

Re: "Help needed - I don't understand how Python manages memory"

2008-04-20 Thread Hank @ITGroup
Steve Holden wrote: > > You are suffering from a pathological condition yourself: the desire > to optimize performance in an area where you do not have any problems. > I would suggest you just enjoy using Python and then start to ask > these questions again when you have a real issue that's stop

Re: "Help needed - I don't understand how Python manages memory"

2008-04-20 Thread Hank @ITGroup
Christian Heimes wrote: > Gabriel Genellina schrieb: > >> Apart from what everyone has already said, consider that FreqDist may import >> other modules, store global state, create other objects... whatever. >> Pure python code should not have any memory leaks (if there are, it's a bug >> in th

Re: "Help needed - I don't understand how Python manages memory"

2008-04-20 Thread Hank @ITGroup
Apology for the previous offensive title~~ :) Thanks, Rintsch, Arnaud and Daniel, for replying so soon. I redid the experiment. What following is the record - ``starting python``# == Windows Task Manager: Python.exe *4,076 *K memory-usage == >>> st1='abcdefg'*99

???Python Memory Management S***s???

2008-04-20 Thread Hank @ITGroup
Hi, people! Greetings~ These days I have been running a text processing program, written by python, of cause. In order to evaluate the memory operation, I used the codes below: """ > string1 = ['abcde']*99# this took up an obvious memory space... > del string1