Merge pull request #390 from jfinkels/patch-1

Added PATCH method to the list of HTTP method functions for MethodView
This commit is contained in:
Armin Ronacher 2012-01-24 14:01:27 -08:00
commit 476f8d57a2

View file

@ -12,7 +12,7 @@ from .globals import request
http_method_funcs = frozenset(['get', 'post', 'head', 'options',
'delete', 'put', 'trace'])
'delete', 'put', 'trace', 'patch'])
class View(object):