Skip to content

Commit ee87e7f

Browse files
Update Objects/longobject.c
Co-authored-by: Victor Stinner <[email protected]>
1 parent 7ec9116 commit ee87e7f

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
@@ -6175,7 +6175,7 @@ static PyObject *
61756175
int_bit_length_impl(PyObject *self)
61766176
/*[clinic end generated code: output=fc1977c9353d6a59 input=e4eb7a587e849a32]*/
61776177
{
6178-
uint64_t nbits =_PyLong_NumBits(self);
6178+
uint64_t nbits = _PyLong_NumBits(self);
61796179
assert(!PyErr_Occurred());
61806180
return PyLong_FromUInt64(nbits);
61816181
}

0 commit comments

Comments
 (0)