We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d33810 commit 8295659Copy full SHA for 8295659
1 file changed
Include/internal/pycore_object.h
@@ -266,12 +266,6 @@ _Py_REF_IS_MERGED(Py_ssize_t ob_ref_shared)
266
return (ob_ref_shared & _Py_REF_SHARED_FLAG_MASK) == _Py_REF_MERGED;
267
}
268
269
-static inline int
270
-_Py_REF_IS_QUEUED(Py_ssize_t ob_ref_shared)
271
-{
272
- return (ob_ref_shared & _Py_REF_SHARED_FLAG_MASK) == _Py_REF_QUEUED;
273
-}
274
-
275
// Merge the local and shared reference count fields and add `extra` to the
276
// refcount when merging.
277
Py_ssize_t _Py_ExplicitMergeRefcount(PyObject *op, Py_ssize_t extra);
0 commit comments