Equals :meth:`route` with a ``DELETE`` method parameter.
(self, path=None, method='DELETE', **options)
| 697 | return self.route(path, method, **options) |
| 698 | |
| 699 | def delete(self, path=None, method='DELETE', **options): |
| 700 | """ Equals :meth:`route` with a ``DELETE`` method parameter. """ |
| 701 | return self.route(path, method, **options) |
| 702 | |
| 703 | def error(self, code=500): |
| 704 | """ Decorator: Register an output handler for a HTTP error code""" |
no test coverage detected