File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -250,7 +250,8 @@ \subsubsection{Reference Count Details \label{refcountDetails}}
250250item:
251251
252252\begin {verbatim }
253- int set_all(PyObject *target, PyObject *item)
253+ int
254+ set_all(PyObject *target, PyObject *item)
254255{
255256 int i, n;
256257
@@ -293,7 +294,8 @@ \subsubsection{Reference Count Details \label{refcountDetails}}
293294\cfunction {PySequence_GetItem()}\ttindex {PySequence_GetItem()}.
294295
295296\begin {verbatim }
296- long sum_list(PyObject *list)
297+ long
298+ sum_list(PyObject *list)
297299{
298300 int i, n;
299301 long total = 0;
@@ -313,7 +315,8 @@ \subsubsection{Reference Count Details \label{refcountDetails}}
313315\ttindex {sum_list()}
314316
315317\begin {verbatim }
316- long sum_sequence(PyObject *sequence)
318+ long
319+ sum_sequence(PyObject *sequence)
317320{
318321 int i, n;
319322 long total = 0;
@@ -432,7 +435,8 @@ \section{Exceptions \label{exceptions}}
432435Here is the corresponding C code, in all its glory:
433436
434437\begin {verbatim }
435- int incr_item(PyObject *dict, PyObject *key)
438+ int
439+ incr_item(PyObject *dict, PyObject *key)
436440{
437441 /* Objects all initialized to NULL for Py_XDECREF */
438442 PyObject *item = NULL, *const_one = NULL, *incremented_item = NULL;
You can’t perform that action at this time.
0 commit comments