GNOME Bugzilla – Bug 554064
uniniti
Last modified: 2008-09-27 19:38:13 UTC
Steps to reproduce: Consider the following code: import pygtk pygtk.require("2.0") import gtk class A(gtk.Dialog): def __init__(self, *args, **kwargs): print self.parent super(A, self).__init__(*args, **kwargs) if __name__ == '__main__': A() gtk.main() This causes a segmentation fault when ran (the application doesn't crash if you swap the 'print' statement with 'super'). Stack trace: Program received signal SIGSEGV, Segmentation fault.
+ Trace 207450
Thread 3084617920 (LWP 8342)
Other information:
Not a full duplicate, but the cause is the same. *** This bug has been marked as a duplicate of 96658 ***