Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Not static
  • Loading branch information
zooba committed Feb 2, 2024
commit c30e65a550ceb3ee4e112ef5bb70e3c91b3ffa53
2 changes: 1 addition & 1 deletion Objects/longobject.c
Original file line number Diff line number Diff line change
Expand Up @@ -1080,7 +1080,7 @@ _fits_in_n_bits(Py_ssize_t v, Py_ssize_t n)
return v_extended == 0 || v_extended == -1;
}

static int
int
PyLong_CopyBits(PyObject* vv, void* buffer, size_t n, int endianness)
{
PyLongObject *v;
Expand Down