Can someone that has installed gtk+ 1.3.7 and pygtk-1.99 test
this little script and see if it segfaults? I'm still
unsure if this is a local problem or a bug.

import sys
# edit this!!!
sys.path.insert(0, "/home/tom/gtk2/lib/python2.0/site-packages")
import gtk

class VClass:
    def __init__(self):
        pass

class MWin(gtk.GtkWindow, VClass):
    def __init__(self):
        gtk.GtkWindow.__init__(self, gtk.WINDOW_TOPLEVEL)
        VClass.__dict__['__init__'](self)
        print "Prepare to segfault"
        a = self.b
        print "You'll never get here!"

w = MWin()
-- 
Tom Cato Amundsen <[EMAIL PROTECTED]>
GNU Solfege - free eartraining, http://www.gnu.org/software/solfege/
_______________________________________________
pygtk mailing list   [EMAIL PROTECTED]
http://www.daa.com.au/mailman/listinfo/pygtk

Reply via email to