Re: ANN: Pyrex 0.9.6.3

2007-10-18 Thread David Tremouilles
Hello, Was about to report the same problem with setup.py. Regards, David 2007/10/18, [EMAIL PROTECTED] <[EMAIL PROTECTED]>: > On Oct 17, 4:12 am, Greg Ewing <[EMAIL PROTECTED]> wrote: > > Pyrex 0.9.6.3 is now available: > > > >http://www.cosc.canterbury.ac.nz/~greg/python/Pyrex/ > > > > M

Re: Cross-platform GUI development

2007-10-14 Thread David Tremouilles
"crappy", "waaay better" I will not feed the troll... Pygtk on mac just do the work for me on a more than satisfying way. David 2007/10/13, Diez B. Roggisch <[EMAIL PROTECTED]>: > David Tremouilles schrieb: > > No issue with pygtk on mac! > > Act

Re: Cross-platform GUI development

2007-10-13 Thread David Tremouilles
<[EMAIL PROTECTED]>: > On 2007-10-13, David Tremouilles <[EMAIL PROTECTED]> wrote: > > > I would recommend pyGTK http://www.pygtk.org/ > > Native GTK on OSX is still in its infancy. For early adopters only at > this point. See > > http://www.oreillynet.com/ar

Re: Cross-platform GUI development

2007-10-13 Thread David Tremouilles
Hello, I would recommend pyGTK http://www.pygtk.org/ - your app does look the same on all platform (like for Tkinter) (This argurment apply if the same user would like to run the same app on different platform and thus do not want to see something different on each platform...) - easy to install

Re: Need help to find origin of a memory leakage

2007-10-07 Thread David Tremouilles
the corrected example for the records. Davic 2007/10/4, David Tremouilles <[EMAIL PROTECTED]>: > hello, > > I'm struggling with a memory leakage of my app for quite some > time. Could somebody help? > > I join a demo program in attachment. > The problem is that

Re: Need help to understand garbage collection

2007-10-07 Thread David Tremouilles
Thanks Gabriel! I get it now. With your help I was able to focus on the real problem. Here is the correctly working example for the record: import gc class Test(object): def __init__(self): pass gc.collect() original_objects_id = [id(x) for x in gc.get_objects()] #create object a a

Need help to understand garbage collection

2007-10-06 Thread David Tremouilles
I would need help to understand how garbage collection work and how to "trace" objects... In the example below an object is created and deleted. Why in the second part of the example I do not see any object removed: import gc class Test(object): def __init__(self): pass gc.collect()

help on understanding garbage collection

2007-10-06 Thread David Tremouilles
Hello, I would need help to understand how garbage collection work and how to "trace" objects... An example is joined where and object is created and deleted. Why in the second part of the example I do not see any object removed: " Removed objects: 0 [] --

Need help to find origin of a memory leakage

2007-10-04 Thread David Tremouilles
hello, I'm struggling with a memory leakage of my app for quite some time. Could somebody help? I join a demo program in attachment. The problem is that the memory consumption keeps on increasing while opening and closing tabs. In the demo attached a click on "button" will open a new tab. If, f

Re: Python and GUI

2007-05-21 Thread David Tremouilles
Hello, My 2 cents contribution: To me all toolkits offer nice features. It's just a matter of choice depending on your needs. I've personally chosen pyGTK and I use it successfully on Linux/windows/MacOsX for my home grown softs. The reasons of my choice: - It looks the same on all platform (actu