I try to port my pygtk code to gtk3. I get this error:
TypeError: pack_start() takes exactly 5 argument(s) (2 given)
It seams that the default arguments have been removed.
Does gtk3 (accessed from python) not support default arguments?
Since the app is not big, I ask myself if I should port to gtk3 or pyside ...
Removing the default arguments looks like a pointless "job creation programm" for programmers...
I could not find a good porting guide (pygtk to python-gtk3). Only this:
Code like this is ugly:
box.pack_start(widget, True, True, 0)
I know how to search+replace .... but I don't want to.