Skip to content

Commit 56f4133

Browse files
committed
review comments
1 parent 0764241 commit 56f4133

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Objects/longobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3614,7 +3614,7 @@ long_richcompare(PyObject *self, PyObject *other, int op)
36143614
static void
36153615
long_dealloc(PyObject *self)
36163616
{
3617-
#ifdef Py_LIMITED_API
3617+
#if SIZEOF_VOID_P <= 4 /* same condition as in refcount.h */
36183618
#ifndef Py_GIL_DISABLED
36193619
/* This should never get called, but we also don't want to SEGV if
36203620
* we accidentally decref small Ints out of existence. Instead,

0 commit comments

Comments
 (0)