Re: [PyQt] SystemError with a temporary variable when accessing a non-existing attribute

2008-07-22 Thread Phil Thompson
On Fri, 11 Jul 2008 20:45:24 -0700, "Erick Tryzelaar" <[EMAIL PROTECTED]> wrote: > Good evening, I'm getting an interesting error with sip and pointers. > Here's my trimmed down code: > > > #ifndef FOO_H > #define FOO_H > > #include > > c

Re: [PyQt] SystemError with a temporary variable when accessing a non-existing attribute

2008-07-14 Thread Erick Tryzelaar
On Mon, Jul 14, 2008 at 8:06 AM, Phil Thompson <[EMAIL PROTECTED]> wrote: > On Fri, 11 Jul 2008 20:45:24 -0700, "Erick Tryzelaar" > <[EMAIL PROTECTED]> wrote: > Have you tried it with the current SIP snapshot? > > Phil Yep, just tried it out and it's still throwing the SystemError. Are you not get

Re: [PyQt] SystemError with a temporary variable when accessing a non-existing attribute

2008-07-14 Thread Phil Thompson
On Fri, 11 Jul 2008 20:45:24 -0700, "Erick Tryzelaar" <[EMAIL PROTECTED]> wrote: > Good evening, I'm getting an interesting error with sip and pointers. > Here's my trimmed down code: > > > #ifndef FOO_H > #define FOO_H > > #include > > c

[PyQt] SystemError with a temporary variable when accessing a non-existing attribute

2008-07-11 Thread Erick Tryzelaar
Good evening, I'm getting an interesting error with sip and pointers. Here's my trimmed down code: #ifndef FOO_H #define FOO_H #include class Foo { public: Foo() {} virtual ~Foo() { qDebug() << "Foo::~Foo"; } }; class Bar: public