Changes between Initial Version and Version 4 of Ticket #21564


Ignore:
Timestamp:
Dec 6, 2013, 11:53:15 AM (11 years ago)
Author:
Tim Graham
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #21564

    • Property Type UncategorizedBug
    • Property Has patch set
    • Property Triage Stage UnreviewedReady for checkin
  • Ticket #21564 – Description

    initial v4  
    11The current method in django/views/generic/base.py is:
     2{{{
    23     def http_method_not_allowed(self, request, *args, **kwargs):                         
    34         logger.warning('Method Not Allowed (%s): %s', request.method, request.path,     
     
    89         )                                                                               
    910         return http.HttpResponseNotAllowed(self._allowed_methods())                     
    10 
     11}}}
    1112The 'extra' dictionary should reference the locally scoped 'request' object instead of the class scoped member.
    1213
Back to Top