On Tue, Sep 20, 2011 at 9:00 AM, Jim D. <[email protected]> wrote: > https://code.djangoproject.com/ticket/16245
I've looked at the patch and it seems good to me. I have a suggestion: Rather than (receiver, err, traceback), why not (receiver, exc_info) where exc_info is the triple returned by sys.exc_info()? There's no harm in changing the meaning of the 2nd tuple element if people are opting into the change. Similarly, rather than append_traceback, why not call it exc_info=True? This parallels the logging module's use of the kwarg: http://docs.python.org/library/logging.html#logging.Logger.debug -- You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-developers?hl=en.
