Skip to content

Commit db5dae1

Browse files
authored
Update Include/cpython/object.h
1 parent 4bf2a1e commit db5dae1

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

Include/cpython/object.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,6 @@ PyAPI_FUNC(int) _Py_ReachedRecursionLimitWithMargin(PyThreadState *tstate, int m
494494
#define Py_TRASHCAN_BEGIN(op, dealloc) \
495495
do { \
496496
PyThreadState *tstate = PyThreadState_Get(); \
497-
/* TODO(picnixz): remove cast to detect incorrect macro usages */ \
498497
if (_Py_ReachedRecursionLimitWithMargin(tstate, 2) && Py_TYPE(op)->tp_dealloc == (destructor)dealloc) { \
499498
_PyTrash_thread_deposit_object(tstate, (PyObject *)op); \
500499
break; \

0 commit comments

Comments
 (0)