diff options
author | Dennis Sweeney <36520290+sweeneyde@users.noreply.github.com> | 2021-10-14 14:56:33 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-14 14:56:33 (GMT) |
commit | 3b3d30e8f78271a488965c9cd11136e1aa890757 (patch) | |
tree | 34670d2b9ba58a187d5b777fd77523720056e334 /Include/internal/pycore_long.h | |
parent | c96d1546b11b4c282a7e21737cb1f5d16349656d (diff) | |
download | cpython-3b3d30e8f78271a488965c9cd11136e1aa890757.zip cpython-3b3d30e8f78271a488965c9cd11136e1aa890757.tar.gz cpython-3b3d30e8f78271a488965c9cd11136e1aa890757.tar.bz2 |
bpo-45367: Specialize BINARY_MULTIPLY (GH-28727)
Diffstat (limited to 'Include/internal/pycore_long.h')
-rw-r--r-- | Include/internal/pycore_long.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/internal/pycore_long.h b/Include/internal/pycore_long.h index 7336c31..8edc902 100644 --- a/Include/internal/pycore_long.h +++ b/Include/internal/pycore_long.h @@ -35,6 +35,7 @@ static inline PyObject* _PyLong_GetOne(void) { return __PyLong_GetSmallInt_internal(1); } PyObject *_PyLong_Add(PyLongObject *left, PyLongObject *right); +PyObject *_PyLong_Multiply(PyLongObject *left, PyLongObject *right); #ifdef __cplusplus } |