What is the type of traceback objects in Python?
Asked Answered
R

1

24
import sys

try:
    raise Exception('foobar')
except:
    info = sys.exc_info()

print(type(e[2])) # <class 'traceback'>
help(traceback) # NameError: name 'traceback' is not defined

What exactly is the type of the traceback objects that Python uses for exception reporting?

The docs on sys.exc_info mention the Reference Manual, but while I've found plenty of information on how to manipulate traceback instances, I want to be able to access the type (class) itself.

Rotter answered 26/7, 2017 at 21:36 Comment(4)
Just because there is a class wiht the __name__ == 'traceback' doesn't mean that in the global namespace, traceback refers to that class.Trautman
What are you even planning to do with this type? Having access to the type object doesn't get you much.Rembert
You're already accessing the type with type(e[2]), by the way.Rembert
Type annotations and curiosity.Rotter
C
35

traceback object is an instance of TracebackType present under types module.

types.TracebackType

The type of traceback objects such as found in sys.exc_info()[2].

>>> from types import TracebackType    
>>> isinstance(info[2], TracebackType)
True    
>>> TracebackType
<class 'traceback'>

As pointed out by @user2357112 the name TracebackType is basically an alias to the internal traceback type and is set by raising an exception in types module. The actual traceback type can be found in CPython code.

Cowrie answered 26/7, 2017 at 21:40 Comment(3)
It should be noted that this isn't the "true" name of the type - there's no "true" name - and it's not the place where the type is defined. types.py just raises an exception to get the traceback and sets TracebackType = type(tb).Rembert
@Rembert Updated.Cowrie
Available in Python >= 3.10Bolero

© 2022 - 2024 — McMap. All rights reserved.