The traceback is not stored in the exception. Within an except clause, you can retrieve it using sys.exc_info(). See also the traceback module for a few useful tools.
>>> import sys, traceback
>>> def raise_exception():
... try:
... raise Exception
... except Exception:
... ex_type, ex, tb = sys.exc_info()
... traceback.print_tb(tb)
... finally:
... del tb
...
>>> raise_exception()
File "<stdin>", line 3, in raise_exception
Or, in your case (since you can't modify the try/except block):
>>> def view_traceback():
... ex_type, ex, tb = sys.exc_info()
... traceback.print_tb(tb)
... del tb
...
>>> try:
... raise Exception
... except Exception:
... view_traceback()
...
File "<stdin>", line 2, in <module>
To elaborate, sys.exc_info returns the exception, exception type, and traceback for whatever exception is currently being handled.
But as your edit indicates, you're trying to get the traceback that would have been printed if your exception had not been handled, after it has already been handled. That's a much harder question. "Normal" exceptions don't store traceback information, perhaps because keeping exceptions lightweight allows for faster execution when an exception does occur. (Also, as ecatmur observes, storing tracebacks in local variables creates circular references.) And unfortunately, sys.exc_info returns (None, None, None) when no exception is being handled. Other related sys attribues don't help either. sys.exc_traceback is deprecated and undefined when no exception is being handled; sys.last_traceback seems perfect, but I believe is only defined in interactive sessions.
If you can control how the exception is raised, you might be able to use inspect and a custom exception to store some of the information. But I'm not even sure how that would work.
I'll add that catching and returning an exception is kind of an unusual thing to do; I would suggest refactoring. Or in any case, you should return the result of sys.exc_info() instead of a bare exception.