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