summaryrefslogtreecommitdiffstats
path: root/Objects/listobject.c
diff options
context:
space:
mode:
Diffstat (limited to 'Objects/listobject.c')
-rw-r--r--Objects/listobject.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/Objects/listobject.c b/Objects/listobject.c
index 547bdf0..ea8310f 100644
--- a/Objects/listobject.c
+++ b/Objects/listobject.c
@@ -366,10 +366,7 @@ list_repr(PyListObject *v)
goto error;
}
- if (Py_EnterRecursiveCall(" while getting the repr of a list"))
- goto error;
s = PyObject_Repr(v->ob_item[i]);
- Py_LeaveRecursiveCall();
if (s == NULL)
goto error;