Reading the CherryPy tutorial I run into this
class HelloWorld(object):
def index(self):
return "Hello World!"
index.exposed = True
So was does it mean? is exposed a variable in the local scope of the method index? If so, can I the value of expose change? I think it has something to do with python's MetaObject protocol to expose a class definition as an object itself.