In my Django app, I'm getting a 404 Page Not Found response that looks like it's being caused by some logic in one of my custom template tags -- but I don't know which one.
Using Django Debug Toolbar's Request Vars panel, I can see the view causing the 404 is go_back.utils._register_wrapped_view -- which is how I know it's coming from one of my go_back.utils template tags.
Unfortunately, because template tags need to be decorated and thus show up as _registered_wrapped_view, I can't tell which tag it is, much less where in the tag code the problem happens. (The tag code is a special utility which works with urls and calls resolve in several places so it's not obvious.)
Thus I can't use the normal import pdb; pdb.set_trace() approach because I don't know where to set the trace.
So how can I get pdb to break when the 404 happens so I can see the stack trace leading to that point?