Estoy aprendiendo pygtk y en un ejemplo del tutorial que estoy siguiendo me da el siguiente error:
Traceback (most recent call last):
File "E:/Python26/helloworld2.py", line 78, in <module>
hello = HelloWorld2()
File "E:/Python26/helloworld2.py", line 39, in __init__
self.box1 = gtk.HBox(gtk.FALSE, 0)
TypeError: could not convert parameter 'homogeneous' of type 'gboolean'
La línea 39 es la siguiente:
Código Python:
Ver originalself.box1 = gtk.HBox(gtk.FALSE, 0)
Alguien tiene idea que puede ser?.
Saludos!.