Skip to content

Commit bc5f4dc

Browse files
author
Yuki Kobayashi
committed
Fix outdated comment in Include/cpython/object.h
Updated the comment to follow the change 147cd05
1 parent 553cdc6 commit bc5f4dc

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Include/cpython/object.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -469,12 +469,11 @@ passed as second argument to Py_TRASHCAN_BEGIN().
469469
PyAPI_FUNC(int) _PyTrash_begin(PyThreadState *tstate, PyObject *op);
470470
PyAPI_FUNC(void) _PyTrash_end(PyThreadState *tstate);
471471

472+
/* Python 3.13 private API, invoked by the Py_TRASHCAN_BEGIN(). */
472473
PyAPI_FUNC(void) _PyTrash_thread_deposit_object(PyThreadState *tstate, PyObject *op);
473474
PyAPI_FUNC(void) _PyTrash_thread_destroy_chain(PyThreadState *tstate);
474475

475476

476-
/* Python 3.10 private API, invoked by the Py_TRASHCAN_BEGIN(). */
477-
478477
/* To avoid raising recursion errors during dealloc trigger trashcan before we reach
479478
* recursion limit. To avoid trashing, we don't attempt to empty the trashcan until
480479
* we have headroom above the trigger limit */

0 commit comments

Comments
 (0)