Passing on variable arguments
Ralf Juengling
juenglin at informatik.uni-freiburg.de
Fri May 3 03:00:51 EDT 2002
More information about the Python-list mailing list
Fri May 3 03:00:51 EDT 2002
- Previous message (by thread): Passing on variable arguments
- Next message (by thread): Passing on variable arguments
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Hi,
how do I pass on a variable number of arguments. For instance:
class A:
def m(self, *args):
pass
class B(A):
def m(self, *args):
# do sth with *args
# pass them on to superclass method
B.m(self, ????)
Regards,
Ralf
- Previous message (by thread): Passing on variable arguments
- Next message (by thread): Passing on variable arguments
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list