Skip to content

Commit 9947a4e

Browse files
committed
1 parent 3305d9b commit 9947a4e

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

Objects/longobject.c

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6741,19 +6741,23 @@ PyUnstable_Long_CompactValue(const PyLongObject* op) {
67416741
}
67426742

67436743

6744-
PyObject* PyLong_FromInt32(int32_t value) {
6744+
PyObject* PyLong_FromInt32(int32_t value)
6745+
{
67456746
PYLONG_FROM_INT(uint32_t, int32_t, value);
67466747
}
67476748

6748-
PyObject* PyLong_FromUInt32(uint32_t value) {
6749+
PyObject* PyLong_FromUInt32(uint32_t value)
6750+
{
67496751
PYLONG_FROM_UINT(uint32_t, value);
67506752
}
67516753

6752-
PyObject* PyLong_FromInt64(int64_t value) {
6754+
PyObject* PyLong_FromInt64(int64_t value)
6755+
{
67536756
PYLONG_FROM_INT(uint64_t, int64_t, value);
67546757
}
67556758

6756-
PyObject* PyLong_FromUInt64(uint64_t value) {
6759+
PyObject* PyLong_FromUInt64(uint64_t value)
6760+
{
67576761
PYLONG_FROM_UINT(uint64_t, value);
67586762
}
67596763

0 commit comments

Comments
 (0)