Changes between Initial Version and Version 1 of Ticket #29664, comment 2


Ignore:
Timestamp:
Aug 13, 2018, 6:49:25 AM (6 years ago)
Author:
Ramiro Morales

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #29664, comment 2

    initial v1  
    11I'm afraid catching `TypeError` around the view callable execution is a too coarse net to have. what if the view (be it either a traditional function-based view, or a correctly invoked class based view via it's `.as_view()` method, etc.) result in a legitimate `TypeError`? Wouldn't the useful traceback that cold help the developer diagnose the issue be replaced by the new one that reports `"Check if as_view() method called properly"`?
    22
    3 In the end there a needs to be placed between handholding a developer which face this kind of problems, and the expectation of them reading the relevan documentation, i.e.
     3In the end there a line that needs to be placed between handholding a developer which face this kind of problems, and the expectation of them reading the relevant documentation, i.e.
    44
    55https://docs.djangoproject.com/en/dev/topics/class-based-views/#simple-usage-in-your-urlconf
Back to Top