summaryrefslogtreecommitdiffstats
path: root/Objects/frameobject.c
diff options
context:
space:
mode:
Diffstat (limited to 'Objects/frameobject.c')
-rw-r--r--Objects/frameobject.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/Objects/frameobject.c b/Objects/frameobject.c
index c8cf71b..4ac1ab0 100644
--- a/Objects/frameobject.c
+++ b/Objects/frameobject.c
@@ -606,14 +606,6 @@ int _PyFrame_Init()
builtin_object = PyString_InternFromString("__builtins__");
if (builtin_object == NULL)
return 0;
- /*
- Traceback objects are not created the normal way (through calling the
- type), so PyType_Ready has to be called here.
- */
- if (PyType_Ready(&PyTraceBack_Type)) {
- Py_DECREF(builtin_object);
- return 0;
- }
return 1;
}