Changes between Version 54 and Version 55 of BetterErrorMessages


Ignore:
Timestamp:
Feb 24, 2014, 2:44:06 PM (10 years ago)
Author:
ANUBHAV JOSHI
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BetterErrorMessages

    v54 v55  
    2929== django.core ==
    3030
    31  The 404 error page served when django.core.urlresolvers.resolve() fails does not contain the exception stack trace, which makes finding the failing call unnecessarily difficult.
     31The 404 error page served when django.core.urlresolvers.resolve() fails does not contain the exception stack trace, which makes finding the failing call unnecessarily difficult.
    3232
    3333 * Ticket #22055 -- 404 page does not display stack trace when Resolver404 is raised from a view.
     
    123123== django.template ==
    124124
    125  * See [http://groups.google.com/group/django-developers/browse_thread/thread/42aff5c291a69041/d006eb5292b8aac3 this thread on the django-developers list] for discussion of suppression of TypeError in the template engine.
    126 
    127125 When resolving a template variable that calls an object method/property. If that method/property has errors we get a {{{VariableDoesNotExist}}} exception without what errors happened, which might confuse the user.
    128126 See #16383 for more details.
     127
     128* See [http://groups.google.com/group/django-developers/browse_thread/thread/42aff5c291a69041/d006eb5292b8aac3 this thread on the django-developers list] for discussion of suppression of TypeError in the template engine.
    129129
    130130 Looking at these might be useful: #6907 and #11421.
Back to Top