Commit 59f11be5 authored by Raymond Hettinger's avatar Raymond Hettinger

Fix minor formatting nits and remove unnecessary comment.

parent 774918b5
......@@ -64,7 +64,7 @@ typedef struct {
Py_ssize_t rightindex; /* in range(BLOCKLEN) */
size_t state; /* incremented whenever the indices move */
Py_ssize_t maxlen;
PyObject *weakreflist; /* List of weak references */
PyObject *weakreflist;
} dequeobject;
static PyTypeObject deque_type;
......@@ -1274,7 +1274,6 @@ static PySequenceMethods deque_as_sequence = {
(objobjproc)deque_contains, /* sq_contains */
(binaryfunc)deque_inplace_concat, /* sq_inplace_concat */
0, /* sq_inplace_repeat */
};
/* deque object ********************************************************/
......
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