Skip to content

Commit 03248c7

Browse files
vstinnerpicnixz
andauthored
Apply suggestions from code review
Co-authored-by: Bénédikt Tran <[email protected]>
1 parent eaebef3 commit 03248c7

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Objects/longobject.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6874,15 +6874,17 @@ PyLongWriter_Create(int negative, Py_ssize_t ndigits, void **digits)
68746874
}
68756875

68766876

6877-
void PyLongWriter_Discard(PyLongWriter *writer)
6877+
void
6878+
PyLongWriter_Discard(PyLongWriter *writer)
68786879
{
68796880
PyLongObject *obj = (PyLongObject *)writer;
68806881
assert(Py_REFCNT(obj) == 1);
68816882
Py_DECREF(obj);
68826883
}
68836884

68846885

6885-
PyObject* PyLongWriter_Finish(PyLongWriter *writer)
6886+
PyObject*
6887+
PyLongWriter_Finish(PyLongWriter *writer)
68866888
{
68876889
PyLongObject *obj = (PyLongObject *)writer;
68886890
assert(Py_REFCNT(obj) == 1);

0 commit comments

Comments
 (0)