Skip to content

Commit 8a3d00f

Browse files
committed
tests!
1 parent 5058e53 commit 8a3d00f

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
@@ -3617,7 +3617,7 @@ _long_is_small_int(PyObject *op)
36173617
{
36183618
PyLongObject *long_object = (PyLongObject *)op;
36193619

3620-
return (int)(long_object->long_value.lv_tag | IMMORTALITY_BIT_MASK);
3620+
return (int)(long_object->long_value.lv_tag & IMMORTALITY_BIT_MASK);
36213621
}
36223622

36233623
static void

0 commit comments

Comments
 (0)