overloading a function

Michael 'Mickey' Lauer mickey at tm.informatik.uni-frankfurt.de
Sun Mar 10 16:23:34 EST 2002


Actually you're getting the most flexibility if you're using
variable and/or keyword argument lists.

def foo( *args, **kwargs ):
   ...

Yours,

:M:





More information about the Python-list mailing list