Each instance of :class:'Bottle' is a WSGI application.
(self, environ, start_response)
| 981 | return [tob(err)] |
| 982 | |
| 983 | def __call__(self, environ, start_response): |
| 984 | ''' Each instance of :class:'Bottle' is a WSGI application. ''' |
| 985 | return self.wsgi(environ, start_response) |
| 986 | |
| 987 | |
| 988 |