Re: Fwd: Fwd: [PyKDE] Qt objects subclasses and __dict__ copies

2006-03-22 Thread Andreas Pakulat
On 22.03.06 04:38:52, Daniele Varrazzo wrote: On 3/22/06, Phil Thompson [EMAIL PROTECTED] wrote: On Tuesday 21 March 2006 10:32 pm, Daniele Varrazzo wrote: On a related topic, Edward Loper reported: Original Message Subject: Introspection of qt classes It

Re: Fwd: Fwd: [PyKDE] Qt objects subclasses and __dict__ copies

2006-03-21 Thread Phil Thompson
On Tuesday 21 March 2006 10:32 pm, Daniele Varrazzo wrote: On a related topic, Edward Loper reported: Original Message Subject: Introspection of qt classes It appears that all classes in the Python qt module lie about what module they come from: import qt

Re: Fwd: Fwd: [PyKDE] Qt objects subclasses and __dict__ copies

2006-03-21 Thread Daniele Varrazzo
On 3/22/06, Phil Thompson [EMAIL PROTECTED] wrote: On Tuesday 21 March 2006 10:32 pm, Daniele Varrazzo wrote: On a related topic, Edward Loper reported: Original Message Subject: Introspection of qt classes It appears that all classes in the Python qt module lie

Re: Fwd: Fwd: [PyKDE] Qt objects subclasses and __dict__ copies

2006-03-21 Thread Tina Isaksen
Daniele Varrazzo wrote: What version? AFAIK this was fixed with SIP 4.2 over a year ago. Whichever version is included in the debian package python-qt3 (3.13-4), which is the most recent stable version available for debian: http://packages.debian.org/stable/python/python-qt3 Debian

[PyKDE] Qt objects subclasses and __dict__ copies

2006-03-20 Thread Daniele Varrazzo
Hello, i am fixing the documentation pages generated by Epydoc v. 3.0alpha when it deals with PyQt subclasses. Currently such pages are bloated because QObject subclasses receive a copy of the entire superclass in the dict. For example: from qt import * class MyWidget(QWidget): ... pass