Equals :meth:`route` with a ``DELETE`` method parameter.
(self, path=None, method='DELETE', **options)
| 834 | return self.route(path, method, **options) |
| 835 | |
| 836 | def delete(self, path=None, method='DELETE', **options): |
| 837 | """ Equals :meth:`route` with a ``DELETE`` method parameter. """ |
| 838 | return self.route(path, method, **options) |
| 839 | |
| 840 | def error(self, code=500): |
| 841 | """ Decorator: Register an output handler for a HTTP error code""" |