Each instance of :class:'Bottle' is a WSGI application.
(self, environ, start_response)
| 839 | return [tob(err)] |
| 840 | |
| 841 | def __call__(self, environ, start_response): |
| 842 | ''' Each instance of :class:'Bottle' is a WSGI application. ''' |
| 843 | return self.wsgi(environ, start_response) |
| 844 | |
| 845 | |
| 846 |