Posted on Oct 27, 2012 by
Swift Kangaroo
Add PATCH to WSGIApplication.allowed_methods
- webapp2.py.patch 410
Comment #1
Posted on Apr 11, 2013 by Grumpy BirdI also tested this approach and seems to work, would be awesome to have it include in the next release
Comment #2
Posted on Apr 15, 2013 by Happy RhinoYes. Pretty please :)
Comment #3
Posted on Aug 2, 2013 by Happy BirdPlease add this for all the BackboneJS developers!
Comment #4
Posted on Aug 2, 2013 by Happy OxUntil the patch gets applied, the easiest workaround is to subclass webapp.WSGIApplication
.
class WSGIApplication(webapp.WSGIApplication):
allowed_methods = frozenset(('GET', 'POST', 'HEAD', 'OPTIONS', 'PUT',
'DELETE', 'TRACE', 'PATCH'))
Comment #5
Posted on Aug 2, 2013 by Happy RhinoOr monkey patch an instance
Comment #6
Posted on Aug 2, 2013 by Happy BirdThank you gentlemen! That works for me...
Comment #7
Posted on Sep 25, 2013 by Happy HippoPATCH, please.
Status: New
Labels:
Type-Patch