From c0573bcdaa5f92149b28d594c9aed0940f7c58af Mon Sep 17 00:00:00 2001 From: Irit Katriel Date: Fri, 18 Jun 2021 20:15:28 +0100 Subject: [PATCH] bpo-39947: revert incorrect change to a comment --- Include/cpython/object.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Include/cpython/object.h b/Include/cpython/object.h index 84c60e55d5c9df..9361fd2cbf87db 100644 --- a/Include/cpython/object.h +++ b/Include/cpython/object.h @@ -508,8 +508,7 @@ passed as second argument to Py_TRASHCAN_BEGIN(). PyAPI_FUNC(void) _PyTrash_deposit_object(PyObject*); PyAPI_FUNC(void) _PyTrash_destroy_chain(void); -/* This is the old private API, invoked by the macros before 3.9. - Kept for binary compatibility of extensions using the stable ABI. */ +/* The new thread-safe private API, invoked by the macros below. */ PyAPI_FUNC(void) _PyTrash_thread_deposit_object(PyObject*); PyAPI_FUNC(void) _PyTrash_thread_destroy_chain(void);