]> granicus.if.org Git - python/commit
Issue #18408: Fix call_exc_trace(): if the traceback is NULL, use None when
authorVictor Stinner <vstinner@wyplay.com>
Wed, 10 Jul 2013 11:57:55 +0000 (13:57 +0200)
committerVictor Stinner <vstinner@wyplay.com>
Wed, 10 Jul 2013 11:57:55 +0000 (13:57 +0200)
commitaaa8ed8b84c3c3fdf799e5c6aa538fbb54d6cb41
tree41dd62a9ceaaae835b26ade71d16ab19277e9619
parent19361a2046c2f4006decf0e35265821dda2e78e7
Issue #18408: Fix call_exc_trace(): if the traceback is NULL, use None when
building the tuple (type, value, traceback) passed to the callback.

PyTuple_Pack() does crash if an argument is NULL.
Python/ceval.c