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
Update Include/cpython/longobject.h
Co-authored-by: Victor Stinner <vstinner@python.org>
  • Loading branch information
skirpichev and vstinner authored Mar 11, 2024
commit 97776b403147a3ad421150d6117d14f1f97c4af2
2 changes: 1 addition & 1 deletion Include/cpython/longobject.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ PyAPI_FUNC(Py_ssize_t) PyUnstable_Long_CompactValue(const PyLongObject* op);

/* PyLong_Sign. Retrieve the sign of the integer value (0, -1 or +1) in a
variable sign. Return 0 on success, else -1 with an exception set. */
PyAPI_FUNC(int) PyLong_Sign(PyObject *v, int* sign);
PyAPI_FUNC(int) PyLong_Sign(PyObject *v, int *sign);

PyAPI_FUNC(int) _PyLong_Sign(PyObject *v);

Expand Down