|
|
|
|
|
by musingsole
1080 days ago
|
|
The Handlers implement behavior, sure. But from the perspective of the `app` object, the handler function objects are state. You can tell, because `app` is an instance of the Flask class and the Handlers are added to the instance by way of a function call. So, Handlers are functions that "handle something", but they are also part of the app object's state, not its behavior. |
|