[POS-commit] r3925 - kiwi/trunk/kiwi/ui
Johan Dahlin
jdahlin at async.com.br
Fri Jul 14 10:45:11 BRT 2006
Author: jdahlin
Date: Fri Jul 14 10:45:10 2006
New Revision: 3925
Modified:
kiwi/trunk/kiwi/ui/views.py
Log:
discourage useage of *args
Modified: kiwi/trunk/kiwi/ui/views.py
==============================================================================
--- kiwi/trunk/kiwi/ui/views.py (original)
+++ kiwi/trunk/kiwi/ui/views.py Fri Jul 14 10:45:10 2006
@@ -93,7 +93,7 @@
Offers autoconnection of widget signals based on function names.
You simply need to define your controller method in the format::
- def on_widget_name__signal_name(self, widget, *args):
+ def on_widget_name__signal_name(self, widget):
In other words, start the method by "on_", followed by the
widget name, followed by two underscores ("__"), followed by the
More information about the POS-commit
mailing list