Commit 847c51a1 authored by Fred Drake's avatar Fred Drake

Slightly better conformance to the Python C style guide.

parent af876d77
...@@ -250,7 +250,8 @@ sets all items of a list (actually, any mutable sequence) to a given ...@@ -250,7 +250,8 @@ sets all items of a list (actually, any mutable sequence) to a given
item: item:
\begin{verbatim} \begin{verbatim}
int set_all(PyObject *target, PyObject *item) int
set_all(PyObject *target, PyObject *item)
{ {
int i, n; int i, n;
...@@ -293,7 +294,8 @@ sum of the items in a list of integers; once using ...@@ -293,7 +294,8 @@ sum of the items in a list of integers; once using
\cfunction{PySequence_GetItem()}\ttindex{PySequence_GetItem()}. \cfunction{PySequence_GetItem()}\ttindex{PySequence_GetItem()}.
\begin{verbatim} \begin{verbatim}
long sum_list(PyObject *list) long
sum_list(PyObject *list)
{ {
int i, n; int i, n;
long total = 0; long total = 0;
...@@ -313,7 +315,8 @@ long sum_list(PyObject *list) ...@@ -313,7 +315,8 @@ long sum_list(PyObject *list)
\ttindex{sum_list()} \ttindex{sum_list()}
\begin{verbatim} \begin{verbatim}
long sum_sequence(PyObject *sequence) long
sum_sequence(PyObject *sequence)
{ {
int i, n; int i, n;
long total = 0; long total = 0;
...@@ -432,7 +435,8 @@ def incr_item(dict, key): ...@@ -432,7 +435,8 @@ def incr_item(dict, key):
Here is the corresponding C code, in all its glory: Here is the corresponding C code, in all its glory:
\begin{verbatim} \begin{verbatim}
int incr_item(PyObject *dict, PyObject *key) int
incr_item(PyObject *dict, PyObject *key)
{ {
/* Objects all initialized to NULL for Py_XDECREF */ /* Objects all initialized to NULL for Py_XDECREF */
PyObject *item = NULL, *const_one = NULL, *incremented_item = NULL; PyObject *item = NULL, *const_one = NULL, *incremented_item = NULL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment