Each instance of :class:'Bottle' is a WSGI application.
(self, environ, start_response)
| 1117 | return [tob(err)] |
| 1118 | |
| 1119 | def __call__(self, environ, start_response): |
| 1120 | """ Each instance of :class:'Bottle' is a WSGI application. """ |
| 1121 | return self.wsgi(environ, start_response) |
| 1122 | |
| 1123 | def __enter__(self): |
| 1124 | """ Use this application as default for all module-level shortcuts. """ |