Skip to content

Commit

Permalink
Revert change
Browse files Browse the repository at this point in the history
  • Loading branch information
srinivasreddy committed Jan 22, 2025
1 parent ed9be47 commit ba70518
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Objects/longobject.c
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ PyLong_FromUnsignedLongLong(unsigned long long ival)
PyObject *
PyLong_FromSize_t(size_t ival)
{
PYLONG_FROM_SIGNED(size_t, ival);
PYLONG_FROM_UINT(size_t, ival);
}

/* Create a new int object from a C double */
Expand Down

0 comments on commit ba70518

Please sign in to comment.