After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 567489 - Several gtk.Widget.do_* methods give wrong errors if called with wrong parameters.
Several gtk.Widget.do_* methods give wrong errors if called with wrong parame...
Status: RESOLVED FIXED
Product: pygtk
Classification: Bindings
Component: general
2.13.x
Other All
: Normal normal
: ---
Assigned To: Nobody's working on this now (help wanted and appreciated)
Python bindings maintainers
Depends on:
Blocks:
 
 
Reported: 2009-01-12 13:06 UTC by Pietro Battiston
Modified: 2009-07-16 10:35 UTC
See Also:
GNOME target: ---
GNOME version: 2.23/2.24



Description Pietro Battiston 2009-01-12 13:06:38 UTC
Please describe the problem:
Several methods of the form do_* of gtk.Widget (they are "virtual", if I understood correctly) give misleading errors if called with wrong parameters.


Steps to reproduce:
>>> import gtk
>>> gtk.Label().do_size_request()
Traceback (most recent call last):
  • File "<stdin>", line 1 in <module>
TypeError: GtkWidget.size_request() takes exactly 2 arguments (0 given)


Actual results:
I get an error which error message is wrong:
1) because size_request takes only 1 argument, the instance
2) because size_request is not the function I called
3) because I did give an argument

I'm not sure of what exactly is happening (is it a single bug or two combined?) because unfortunately I wasn't able to find documentation about those methods.

Expected results:
I'd expect (if I correctly guess documentation):

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: GtkWidget.do_size_request() takes exactly 2 arguments (1 given)

Does this happen every time?
yes

Other information:
It's not peculiar to this method: also see do_expose_event, do_set_name... lots of do_*, I'd guess (but for instance not gtk.CellRendererText().do_get_size(), which prints:

TypeError: GtkCellRenderer.do_get_size() takes at least 2 arguments (0 given)

, and while I still don't get "(0 given)" part, the first is correct).
Comment 1 Pietro Battiston 2009-07-16 10:03:21 UTC
The problem itself is fixed.

The wrong number of parameters reported has to do with non-bounded methods, see Bug 588762.
Comment 2 Pietro Battiston 2009-07-16 10:35:31 UTC
Forgot to add: fixed in 1.14.*.
Marking as fixed