Equals :meth:`route` with a ``PATCH`` method parameter.
(self, path=None, method='PATCH', **options)
| 934 | return self.route(path, method, **options) |
| 935 | |
| 936 | def patch(self, path=None, method='PATCH', **options): |
| 937 | """ Equals :meth:`route` with a ``PATCH`` method parameter. """ |
| 938 | return self.route(path, method, **options) |
| 939 | |
| 940 | def error(self, code=500, callback=None): |
| 941 | """ Register an output handler for a HTTP error code. Can |