Well, I *think* it's pygtk 0.6.2. In any case it's in the pygtk version
included with gnome-python-1.0.4.
gtk.py contains a bug in the definition of
GtkSpinButton.get_adjustment(). 'sel._o' should be 'self._o' on line
2090.
Also, GtkAdjustment.set_all() causes an exception when invoked:
File "/usr/local/lib/python1.5/site-packages/gtk.py", line 198, in set_all
page_size)
TypeError: gtk_adjustment_set_all requires exactly 1 argument; 7 given
Here's the code in gtkmodule.c, at line 3698, which generates the
error message:
if (!PyArg_ParseTuple(args, "O!:gtk_adjustment_set_all", &PyGtk_Type,
&obj, &value, &lower, &upper, &step_increment,
&page_increment, &page_size))
Looks like the format string for PyArg_ParseTuple() is missing a few
entries.
--
Mitch Chapman
[EMAIL PROTECTED]
To unsubscribe: echo "unsubscribe" | mail [EMAIL PROTECTED]