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?