vote up 1 vote down star

This is a snippet from Google AppEngine tutorial.

application = webapp.WSGIApplication([('/', MainPage)], debug=True)

I'm not quite sure what debug=True does inside the constructor call. Does it create a local variable with name debug, assign True to it, and pass it to constructor, or is this a way to set a class instance member variable's value in constructor?

flag

3 Answers

vote up 11 vote down check

Python functions accept keyword arguments. If you define a function like so:

def my_func(a, b='abc', c='def'):
    print a, b, c

You can call it like this:

my_func('hello', c='world')

And the result will be:

hello abc world

You can also support dynamic keyword arguments, using special syntax:

def my_other_func(a, *b, **c):
    print a, b, c
  • *b means that the b variable will take all non-named arguments after a, as a tuple object.
  • **c means that the c variable will take all named arguments, as a dict object.

If you call the function like this:

my_other_func('hello', 'world', 'what a', state='fine', what='day')

You will get:

hello ('world', 'what a') {'state': 'fine', 'what': 'day'}
link|flag
Thanks for the quick response!!! This is apparently a better way of overriding a default argument value than how c/c++ does, where I will have to also pass b='abc' in your example. – Kei Jun 21 at 18:24
Indeed, that is one of the uses of named arguments =) – Blixt Jun 21 at 18:29
Compare/Take a look also at Ada language: also Ada had named arguments – daitangio Jun 23 at 12:44
vote up 3 vote down

It's using named arguments.

link|flag
vote up 4 vote down

Neither -- rather, webapp.WSGIApplication takes an optional argument named debug, and this code is passing the value True for that parameter.

The reference page for WSGIApplication is here and it clearly shows the optional debug argument and the fact that it defaults to False unless explicitly passed in.

As the page further makes clear, passing debug as True means that helpful debugging information is shown to the browser if and when an exception occurs while handling the request.

How exactly that effect is obtained (in particular, whether it implies the existence of an attribute on the instance of WSGIApplication, or how that hypothetical attribute might be named) is an internal, undocumented implementation detail, which we're not supposed to worry about (of course, you can study the sources of WSGIApplication in the SDK if you do worry, or just want to learn more about one possible implementation of these specs!-).

link|flag

Your Answer

Get an OpenID
or

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