1def spam(a, b, c):
2    print u"Args:", a, b, c
3
4def eggs():
5    """
6    >>> eggs()
7    Args: 1 2 3
8    Args: buckle my shoe
9    """
10    spam(*(1,2,3))
11    spam(*[u"buckle",u"my",u"shoe"])
12