In the reference of PyGTK http://www.moeraki.com/pygtkreference/pygtk2reference/index.html
it is stated that certain attributes are read/write attributes.
However, trying to do something like:
box.border = 5
doesn't work. But:
box.set_border_width(5)works.
Why can't I simply use the first construct ?
TIA,
Ionutz
_______________________________________________ pygtk mailing list [EMAIL PROTECTED] http://www.daa.com.au/mailman/listinfo/pygtk Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/
