Use this application as default for all module-level shortcuts.
(self)
| 1121 | return self.wsgi(environ, start_response) |
| 1122 | |
| 1123 | def __enter__(self): |
| 1124 | """ Use this application as default for all module-level shortcuts. """ |
| 1125 | default_app.push(self) |
| 1126 | return self |
| 1127 | |
| 1128 | def __exit__(self, exc_type, exc_value, traceback): |
| 1129 | default_app.pop() |