Re: DCOP memory leak?

2007-01-31 Thread [EMAIL PROTECTED]
On 31 jan, 01:03, Larry Bates [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] wrote: Hello, I'm writing a python script for Amarok, I communicate with Amarok using DCOP. Now, I have to call DCOP very often and I noticed that every time I make a DCOP call my program keeps growing in memory

Re: DCOP memory leak?

2007-01-31 Thread David Boddie
On Jan 31, 6:46 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: The code I posted is not my actual program and was only to demonstrate my problem. The complete program I'm writing uses QT and so the loop is replaced by a Timer event. I tried out the suggestion. I had already tried the del dcop

Re: DCOP memory leak?

2007-01-31 Thread [EMAIL PROTECTED]
On 31 jan, 19:51, David Boddie [EMAIL PROTECTED] wrote: On Jan 31, 6:46 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: The code I posted is not my actual program and was only to demonstrate my problem. The complete program I'm writing uses QT and so the loop is replaced by a Timer event.

DCOP memory leak?

2007-01-30 Thread [EMAIL PROTECTED]
Hello, I'm writing a python script for Amarok, I communicate with Amarok using DCOP. Now, I have to call DCOP very often and I noticed that every time I make a DCOP call my program keeps growing in memory size. To make sure it was DCOP i wrote the small program below: from dcopext import

Re: DCOP memory leak?

2007-01-30 Thread jean-michel bain-cornu
Now, I have to call DCOP very often and I noticed that every time I make a DCOP call my program keeps growing in memory size. To make sure it was DCOP i wrote the small program below: from dcopext import DCOPClient, DCOPApp while 0==0: dcop=DCOPClient() dcop.attach()

Re: DCOP memory leak?

2007-01-30 Thread Larry Bates
[EMAIL PROTECTED] wrote: Hello, I'm writing a python script for Amarok, I communicate with Amarok using DCOP. Now, I have to call DCOP very often and I noticed that every time I make a DCOP call my program keeps growing in memory size. To make sure it was DCOP i wrote the small program