> I read this code example in the faq about caputering key strokes. > I do not understand the meaning of *args. It looks like a c pointer ;-) > I guess it is something else, but I could not find anything in the python docs.
It's variable arguments, like va_args in C. Check section 4.7.3 (Arbitrary Argument Lists), in the python tutorial: http://www.python.org/doc/2.2.2/tut/node6.html#SECTION006730000000000000000 -- Johan Dahlin <[EMAIL PROTECTED]> Async Open Source _______________________________________________ pygtk mailing list [EMAIL PROTECTED] http://www.daa.com.au/mailman/listinfo/pygtk Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/
