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 c18073c commit ee95803Copy full SHA for ee95803
Objects/object.c
@@ -2934,7 +2934,7 @@ Py_ReprLeave(PyObject *obj)
2934
* an object. It is important that we never store 0 (NULL).
2935
* It is also important to not make the object appear immortal,
2936
* or it might be untracked by the cycle GC. */
2937
-uintptr_t
+static uintptr_t
2938
pointer_to_safe_refcount(void *ptr)
2939
{
2940
uintptr_t full = (uintptr_t)ptr;
@@ -2950,7 +2950,7 @@ pointer_to_safe_refcount(void *ptr)
2950
#endif
2951
}
2952
2953
-void *
+static void *
2954
safe_refcount_to_pointer(uintptr_t refcnt)
2955
2956
#if defined(Py_GIL_DISABLED)
0 commit comments