I thought I could use named parameters after variable-length positional parameters in a function call, but I get a syntax error when importing a python class I'm writing with the following "get" method, for example:

class Foo(object):
    def __init__(self):
        print "You have created a Foo."

    def get(self,*args,raw=False,vars=None):
        print len(args)
        print raw
        print vars

The error looks like:

def get(self,*args,raw=False,vars=None):
                     ^
SyntaxError: invalid syntax

I'd like to be able to call the method several ways:

f = Foo()
f.get(arg1,arg2)
f.get(arg1,raw=True)
f.get(arg1,arg2,raw=True,vars=something)

...etc.

I've RTFM as much as I can, but it doesn't quite click why this won't work. Thanks in advance for your help.

-j

link|improve this question

40% accept rate
feedback

2 Answers

up vote 7 down vote accepted

It does work, but only in Python 3. See PEP 3102. From glancing over the "what's new" documents, it seems that there is no 2.x backport, so you're out of luck. You'll have to accept any keyword arguments (**kwargs) and manually parse it (you can use d.get(k, default) to either get d[k] or default if that's not there).

link|improve this answer
Thanks both to you and Imran! Your answer with Imran's code block and docstring suggestion answered the question perfectly. – jkmacc May 9 '11 at 18:56
feedback

Python's syntax doesn't allow variable args in function and keyword arguments with default value at the same time. If you must have keyword arguments along with arbitrary number of positional arguments, you need to allow arbitrary number of keyword arguments as well.

This is a common pattern to provide default values for keyword arguments, as well as allowing any number of positional arguments:

def foo(*args, **kwargs):
   raw = kwargs.pop('raw', False)
   vars = kwargs.pop('vars', None)

If you don't use the extra keyword arguments at all, you have nothing to worry about. This makes the function a bit less self-documenting, which you can make up with a properly written docstring.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.