add_url_rule() has logic that says that if the user has not included OPTIONS in their methods, flask will automatically provide an implementation.
Unfortunately, this logic is only triggered if the method string is OPTIONS in all upper case. So if you've included lower case "options" in your methods you will still end up with the flask-provided options functionality. I think it should be a case-insensitive comparison since all the rest of the routing is all case-insensitive. Thoughts? -- You received this message because you are subscribed to the Google Groups "pocoo-libs" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/pocoo-libs. For more options, visit https://groups.google.com/d/optout.
