Re: [pygtk] positional and keyword parameters

2008-07-09 Thread Jan Michael C. Alonzo
varun_shrivastava [EMAIL PROTECTED] writes: hi whats the difference between positional and keyword parameter Hello! You can find more info at http://docs.python.org/tut/node6.html#SECTION00670 HTH. Regards, Jan -- Take heed: you do not find what you do not seek.

[pygtk] positional and keyword parameters

2007-06-22 Thread varun_shrivastava
hi whats the difference between positional and keyword parameter bye -- View this message in context: http://www.nabble.com/positional-and-keyword-parameters-tf3963509.html#a11248497 Sent from the Gtk+ - Python mailing list archive at Nabble.com.

Re: [pygtk] positional and keyword parameters

2007-06-22 Thread Gian Mario Tagliaretti
2007/6/22, varun_shrivastava [EMAIL PROTECTED]: whats the difference between positional and keyword parameter This is a python general question, it has nothing to do with pygtk itself, anyway: def func(arg1, arg2, arg3=something, arg4=someotherthings): pass arg1 and arg2 are positional