vote up 2 vote down star

I've got a class function that needs to "pass through" a particular keyword argument:

def createOrOpenTable(self, tableName, schema, asType=Table):
    if self.tableExists(tableName):
        return self.openTable(tableName, asType=asType)
    else:
        return self.createTable(self, tableName, schema, asType=asType)

When I call it, I get an error like this:

TypeError: createTable() got multiple values for keyword argument 'asType'

Is there any way to "pass through" such a keyword argument?

I've thought of several answers, but none of them are optimal. From worst to best:

  • I could change the keyword name on one or more of the functions, but I want to use the same keyword for all three functions, since the parameter carries the same meaning.

  • I could pass the asType parameter by position instead of by keyword, but if I add other keyword parameters to openTable or createTable, I'd have to remember to change the calls. I'd rather it automatically adapt, as it would if I could use the keyword form.

  • I could use the **args form here instead, to get a dictionary of keyword parameters rather than using a default parameter, but that seems like using a sledgehammer to swat a fly (because of the extra lines of code needed to properly parse it).

Is there a better solution?

flag

3 Answers

vote up 7 vote down check

You're doing it right... Just take out the self in the second function call :)

  return self.createTable(self, tableName, schema, asType=asType)

should be:

  return self.createTable(tableName, schema, asType=asType)
link|flag
D'oh! As is probably obvious, I'm still new to Python. Thanks for pointing out the problem. – Head Geek Jun 19 at 14:50
No problem :) While Python is, on the whole, quite nice, there are few of these little "gotchas" which will burn you badly when you first hit them. The other one you will hit if you haven't already is defining a method without a 'self' argument... Your program will die with an incredibly helpful "incorrect number of arguments" error. – David Wolever Jun 19 at 16:29
Yes, I hit that early on. Fortunately, I caught on to that one quickly. – Head Geek Jun 20 at 2:23
vote up 3 vote down

I have to say, that I first thought of a more complicated problem. But the answer of David Wolever is absolutely correct. It is just the duplicate self here, that creates the problem. This way, the positional parameters get out of line and asType is given a value as possitional parameter (once) and as keyword-parameter (second time!).

A much more interesting problem is, what to do, when you want to enhance the called routine (createTable in the example) without everytime enhancing the intermediate function. Here, the **args solution makes the trick:

For example:

def def createOrOpenTable(self, tableName, schema, **args):
    if self.tableExists(tableName):
        return self.openTable(tableName, **args)
    else:
        return self.createTable(self, tableName, schema, **args)

By this way, it is possible to enhance the signature of createTable and openTable without having to change createOrOpenTable any more.

When create and openTable can have different keyword-parameters, then of course both routines must be defined as follows:

def createTable(self, tableName, schema, asType=None, **others):
   ...

The others parameter eats up any keyword parameters unknown to the method -- it is also not needed to evaluate it.

link|flag
vote up 2 vote down

I would have posted a comment to Juergen's post, but I need to write a code example. Here's a little bit more generic version:

def def createOrOpenTable(self, tableName, schema, *args, **argd):
    if self.tableExists(tableName):
        return self.openTable(tableName, *args, **argd)
    else:
        return self.createTable(self, tableName, schema, *args, **argd)

This will allow positional arguments to also be effective (which is important if you truly want this to be a "pass-through."

link|flag
Hi Jason, thanks for the more generic solution! I did not think about it, because in my practice, it only occured yet, that additional optional parameters (which are in fact keyword-params) are needed -- no possitional parameters. Off course it is possible to have additional possitional parameters, but most of the time, you will have your prime interface fixed -- and only optional parameters will pop up in the future. – Juergen Jun 19 at 15:18
That's true. I was just pointing this out for completeness's sake. :-) – Jason Baker Jun 19 at 18:57

Your Answer

Get an OpenID
or

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