Re: program loaded in memory

2012-10-22 Thread Grant Edwards
On 2012-10-22, Steven D'Aprano steve+comp.lang.pyt...@pearwood.info wrote: On Mon, 22 Oct 2012 02:02:27 +0200, Anatoli Hristov wrote: Hello, I need an advice about a small script I run 24/24 7/7. It's a script converted to EXE using py2exe and this script takes - grows 30kb RAM on each

program loaded in memory

2012-10-21 Thread Anatoli Hristov
Hello, I need an advice about a small script I run 24/24 7/7. It's a script converted to EXE using py2exe and this script takes - grows 30kb RAM on each loop which means that for 10hours it grows up with 180mb memory. is there something I can do ? From the ini file I'm loading only the URL and

Re: program loaded in memory

2012-10-21 Thread Dave Angel
On 10/21/2012 08:02 PM, Anatoli Hristov wrote: Hello, I need an advice about a small script I run 24/24 7/7. It's a script converted to EXE using py2exe and this script takes - grows 30kb RAM on each loop which means that for 10hours it grows up with 180mb memory. is there something I can

Re: program loaded in memory

2012-10-21 Thread Anatoli Hristov
Yes sorry, the name var(interval) is loaded from the ini file and also the Url. The reason is that the ini file will be configured from someone else. Example of the file URL = www # define your url interval = 1 # minutes for sync I see in the task manager each time it downloads the file that it

Re: program loaded in memory

2012-10-21 Thread Dave Angel
On 10/21/2012 08:31 PM, Anatoli Hristov wrote: Yes sorry, the name var(interval) is loaded from the ini file and also the Url. The reason is that the ini file will be configured from someone else. Example of the file URL = www # define your url interval = 1 # minutes for sync I see in